Unity Text组件空格换行问题 企业开发 2022-07-01 14:28 0 阅读 问题 Text组件内容中输入空格,会自动换行。 解决方法 使用\u00A0代替空格 例如: str="你好"+" "; 替换为 str="你好"+"\u00A0" 猜你喜欢