第一次提交

This commit is contained in:
tangbin
2025-06-14 13:46:24 +08:00
commit 1f3323e115
3765 changed files with 3447853 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
using UnityEngine;
using System.Collections;
public class Delay : MonoBehaviour {
public float delayTime = 1.0f;
// Use this for initialization
void Start () {
gameObject.SetActiveRecursively(false);
Invoke("DelayFunc", delayTime);
}
void DelayFunc()
{
gameObject.SetActiveRecursively(true);
}
}