前提・実現したいこと
unityでアクションゲームを使っています
一秒待つというものを作りたいです
該当のソースコード
unity
1ソースコード
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class objectB : MonoBehaviour
{
public Text textUI;
// Start is called before the first frame update void Start() { textUI.text = ""; } // Update is called once per frame void Update() { } void GameoverMessage() { textUI.text = "落ちた"; }
}
試したこと
threed sleepなどがあるそうですがすべてを止めたくはありません
補足情報(FW/ツールのバージョンなど)
3.24f1
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/19 07:26