1

当我将 Demo.cs 放在标准资产文件夹中时,我收到此错误:

Assets/Standard Assets/Demo.cs(130,17): error CS0246: The type or namespace name 'UILabel' could not be found. Are you missing a using directive or an assembly reference?

当我将 Demo.cs 资产文件夹放在上面时,错误得到解决,但我无法从另一个 Demo1.js 调用 Demo.cs 的任何方法

给出错误:
Assets/Scripts/Demo1.js(81,20): BCE0018: The name 'Demo' does not denote a valid type ('not found').

任何解决方案?

4

2 回答 2

1

我无法从 unityscript 访问 NGUI 组件 从以下链接获取解决方案

http://www.tasharen.com/forum/index.php?topic=6.0

于 2013-10-23T06:06:40.410 回答
0

您正在寻找的 UILabel 类可能是 NGUI 的一部分。

将 NGUI 从资产商店导入到您当前的项目中(假设您已经购买了它),Unity 将找到该类。

于 2013-10-18T05:06:50.800 回答