rabidus-test/Assets/DeactivateOnStart.cs

12 lines
205 B
C#
Raw Normal View History

2023-09-18 20:09:22 +03:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DeactivateOnStart : MonoBehaviour
{
2023-10-05 17:56:59 +03:00
private void Awake()
2023-09-18 20:09:22 +03:00
{
gameObject.SetActive(false);
}
}