UIのImageを使った際に、以下のようなエラーが出ることがあります。
error CS0104:'Image' is an ambiguous reference between 'Microsoft.Unity.VisualStudio.Editor.Image' and 'UnityEngine.UI.Image'
VisualStudio.EditorとUnityEngine.UI.Imageのどちらかを使用するか曖昧だということなので、これを明示してあげましょう。
以下のコードを記述します。
1 |
using Image = UnityEngine.UI.Image; |
このように、コードの先頭のほうで明示します。
VisualStudioEditorのバージョンなどにより、まれに起こるエラーなので、上記のコードを1行入れて解決しましょう。