Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

14 řádky
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. }