close
cocos run or compile
出現 error
UnicodeEncodeError: 'cp950' codec can't encode character u'\u7f16' in position 82: illegal multibyte sequence
問題點出在 cp950 編碼好像 python 無法支援
強制更改 引擎 內的python code
D:\cocos2d-x-3.17\tools\cocos2d-console\bin\MultiLanguage.py
line 86 改為如下, 原理是強制使用 英文 以及 utf-8 編碼 , 目前可解決
#if self.encoding is None:
self.encoding = 'utf-8'
sys_lang = 'en'
文章標籤
全站熱搜
留言列表