Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

23 lines
336B

  1. using System;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. class ActionShow : Action
  5. {
  6. public ActionShow()
  7. : base()
  8. {
  9. }
  10. public override Action clone()
  11. {
  12. return new ActionShow();
  13. }
  14. public override void start()
  15. {
  16. base.start();
  17. renderer.enabled = true;
  18. }
  19. }