選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
このリポジトリはアーカイブされています。 ファイルの閲覧とクローンは可能ですが、プッシュや、課題・プルリクエストのオープンはできません。

23 行
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. }