選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

14 行
258 B

  1. using System;
  2. using UnityEngine;
  3. public class EnableOnPlatform : PlatformActive
  4. {
  5. private void Awake()
  6. {
  7. base.gameObject.SetActive(this._enableOn == base.CurrentPlatform);
  8. }
  9. [SerializeField]
  10. private PlatformActive.Platform _enableOn;
  11. }