Version: 2017.4

説明

OnMouseUpAsButton はマウスを押した時と同じ GUIElementCollider 上でマウスを離した時のみに呼び出されます。

関連項目: OnMouseUp.

// Loads the level named "SomeLevel" as a response
// to the user clicking on the object

using UnityEngine;

public class ExampleClass : MonoBehaviour { void OnMouseUpAsButton() { Application.LoadLevel("SomeLevel"); } }

この関数はレイヤーが「 Ignore Raycast 」のゲームオブジェクトでは呼び出されません。

This function is called on Colliders marked as Trigger if and only if Physics.queriesHitTriggers is true.

OnMouseUpAsButton can be a co-routine, simply use the yield statement in the function. This event is sent to all scripts attached to the Collider or GUIElement.