0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

1秒毎に実行する

Posted at
Player
void Start()
    {
        Invoke("Pltime", 1f);
    }

    void Pltime ()
    {
        //1秒毎にやりたいこと
        this.transform.Translate(0.0f, -1.0f, 0.0f); 
        //関数名と何秒毎に実行したいのか
        Invoke("Pltime", 1f);
    }

3秒毎に実行したければ、1fの所を3fにすれば大丈夫です!

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?