E_ElecCompetition/Electrical_inspectionCompet.../Assets/Script/Interactive objects/tizimanager.cs

26 lines
433 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class tizimanager : MonoBehaviour
{
public tizi_count tizi_Count;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
private void OnTriggerExit(Collider other)
{
tizi_Count.first = true;
}
}