1

Demo.cs を Standard Assets フォルダーに配置すると、次のエラーが発生します。

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 Assets Folder を配置すると、エラーは解決されますが、別の 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

0

探している UILabel クラスは、おそらく NGUI の一部です。

NGUI をアセット ストアから現在のプロジェクトにインポートすると (既に購入済みであると仮定します)、Unity がそのクラスを見つけます。

于 2013-10-18T05:06:50.800 に答える