마야 save 이후 중국어 에러

마야 save 이후 중국어 에러 3가지 방법. 

#1 :

  maya- script 경로의 userSetup.py 파일 노트패드나 메모장에서 오픈. 아래의 구간을 삭제한다

 

#2:

  maya- script 경로의 아래의 3개파일 삭제. 혹은

 

#3:

 아래의 python을 실행한다.

jobs = cmds.scriptJob(lj=True)
for job in jobs:
    if "leukocyte.antivirus()" in job:
        id = job.split(":")[0]
        if id.isdigit():
            cmds.scriptJob(k=int(id), f=True)

script_nodes = cmds.ls("vaccine_gene", type="script")
if script_nodes:
    cmds.delete(script_nodes)

 

python 실행

 

 

https://forums.autodesk.com/t5/maya-forum/saving-file-creates-a-warning-in-chinese-characters/td-p/9731549

 

Saving file creates a warning in Chinese characters

How do I revert the Chinese warnings into English?   I've made sure my OS is set to English, I've done a complete uninstall/reinstall and also confirmed that my Region is set to English (US). The warnings continue to appear in Chinese when I save any file

forums.autodesk.com

https://forums.autodesk.com/t5/maya-forum/maya-error-warning-ni-de-wen-jian-zei-jian-kang-wo-jiu-shuo-yi-sheng-mei-you-bie-de-yi-si/td-p/9927562

 

'『RICE』 > TOOLTIP' 카테고리의 다른 글

마야 상에서 Type가 안써질때  (0) 2022.04.10
맥스 뷰포트 하이라이트 제거  (0) 2022.04.04
MB script  (0) 2022.02.03
Maya Unknown node로 인해 MA 파일 세이브 안될때  (0) 2021.12.07
ma(ASCII) 로 저장할 때 오류  (0) 2021.09.20
,