한글패치 관련 짧은 글들

XUnity.AutoTranslator spam prevention 최소화

Snowyegret 2021. 12. 8. 13:14

원글

https://github.com/bbepis/XUnity.AutoTranslator/issues/232

 

Disable 1s spam prevention delay · Issue #232 · bbepis/XUnity.AutoTranslator

Is there a possible way to disable the 1s delay mentioned in https://github.com/bbepis/XUnity.AutoTranslator/tree/master#spam-prevention I'm trying to write and see if a translation endpoint th...

github.com

 

 

 

https://github.com/bbepis/XUnity.AutoTranslator/blob/master/src/XUnity.AutoTranslator.Plugin.Core/AutoTranslationPlugin.cs#L2288

"WaitForTextStabilization" 내부 delay값을 줄이면 된다.

아예 삭제하는건 추가 작업을 해줘야 하므로, 그냥 값을 줄이는게 낫다.

"WaitForTextStabilization"로 검색하면 총 4개가 검색되는데,

뒤에 2개는 delay 변수를 통해 처리하므로 앞 2개의 delay: 부분만 수정해주면 된다.

* 0.9f -> 0.9초, 0.1f -> 0.1초

 

 

수정 후 빌드해서 나온 dll파일들을 사용하자.