25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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. }