Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
To repozytorium jest zarchiwizowane. Możesz wyświetlać pliki i je sklonować, ale nie możesz do niego przepychać zmian lub otwierać zgłoszeń/Pull Requestów.

10 lat temu
10 lat temu
10 lat temu
10 lat temu
10 lat temu
12345678910111213141516171819202122232425262728293031323334
  1. using System;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace coa4u
  5. {
  6. /// <summary>
  7. /// Instantly shows the hidden target. This action does not require the transparency support in shaders.
  8. /// </summary>
  9. class ActionShow : ActionInstant
  10. {
  11. public ActionShow()
  12. : base()
  13. {
  14. }
  15. public override ActionInstant Clone()
  16. {
  17. return new ActionShow();
  18. }
  19. public override ActionInstant Reverse()
  20. {
  21. return new ActionHide();
  22. }
  23. public override void Start()
  24. {
  25. base.Start();
  26. renderer.enabled = true;
  27. }
  28. }
  29. }