Added defect detector prefab.

This commit is contained in:
Khauvinkh
2024-08-17 21:07:25 +02:00
parent ece1afe008
commit ae76789a51
7 changed files with 534 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
using UnityEngine;
public class AudioAlarm : MonoBehaviour
{
public float Duration;
private bool _isPlaying;
public void PlayAlarm()
{
Debug.Log("Playing alarm");
}
}