このページを含むバージョン:
このページを含まないバージョン:
Returns true when in any kind of player is active.(Read Only).
再生モードのとき Unity エディターでは true を返します。
using UnityEngine;class Example : MonoBehaviour { void Start() { if (Application.isPlaying) { print("In player or playmode"); } } }