不再使用溶解功能

HDRP
Yogi 2025-01-10 12:00:50 +08:00
parent 4bccfba407
commit c992e25391
1 changed files with 3 additions and 2 deletions

View File

@ -196,8 +196,9 @@ public class Main : MonoBehaviour
private void SetCarActive(GameObject go, bool isActive) private void SetCarActive(GameObject go, bool isActive)
{ {
Debug.Log($"SetCarActive ({go.name}) ({isActive})"); go.SetActive(isActive);
this.StartCoroutine(SetCarActiveCoroutine(go, isActive, .5f)); // Debug.Log($"SetCarActive ({go.name}) ({isActive})");
// this.StartCoroutine(SetCarActiveCoroutine(go, isActive, .5f));
} }
private IEnumerator SetCarActiveCoroutine(GameObject go, bool isActive, float time) private IEnumerator SetCarActiveCoroutine(GameObject go, bool isActive, float time)