Version: 2020.3
言語: 日本語
public Texture image ;

説明

アイコン画像

using UnityEngine;

public class ExampleScript : MonoBehaviour { public Texture icon;

void OnGUI() { if (!icon) { Debug.LogError("Add a texture on the inspector first"); return; } GUI.Button(new Rect(0, 0, 100, 20), new GUIContent(icon)); } }