このページを含むバージョン:
このページを含まないバージョン:
iOS プレイヤー
See Also: RuntimePlatform, Platform dependent Compilation..
using UnityEngine;public class Example : MonoBehaviour { void Start() { if (Application.platform == RuntimePlatform.IPhonePlayer) { Debug.Log("Do something special here!"); } } }