Version: 5.3 (switch to 5.4b)
言語English
  • C#
  • JS

スクリプト言語

好きな言語を選択してください。選択した言語でスクリプトコードが表示されます。

Selectable.targetGraphic

マニュアルに切り替える
public UI.Graphic targetGraphic;

説明

遷移使用されるグラフィック。

using UnityEngine;
using System.Collections;
using UnityEngine.UI; // Required when Using UI elements.

public class ExampleClass : MonoBehaviour { public Image newImage; public Button btnMain;

void SomeFunction () { //Displays the sprite transitions on the image when the transition to Highlighted,pressed or disabled is made. btnMain.targetGraphic = newImage; } }