mirror of
https://github.com/nothke/quality-control.git
synced 2024-11-10 04:53:41 +00:00
48 lines
1.0 KiB
C#
48 lines
1.0 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.Events;
|
|
|
|
public class StationaryDefectDetector : MonoBehaviour, IResetable
|
|
{
|
|
public List<Product> _knownProducts;
|
|
|
|
public AudioClip goodSound;
|
|
public AudioClip badSound;
|
|
|
|
public void ResetMachine()
|
|
{
|
|
_knownProducts.Clear();
|
|
}
|
|
|
|
private void OnTriggerEnter(Collider other)
|
|
{
|
|
var product = other.GetComponentInParent<Product>();
|
|
|
|
if (product == null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
if (_knownProducts.Contains(product))
|
|
{
|
|
return;
|
|
}
|
|
|
|
_knownProducts.Add(product);
|
|
|
|
NAudio.Play(product.Defect == DefectType.None ? goodSound : badSound, transform.position);
|
|
}
|
|
|
|
private void OnTriggerExit(Collider other)
|
|
{
|
|
if (other.TryGetComponent(out Product product))
|
|
{
|
|
if (_knownProducts.Contains(product))
|
|
{
|
|
_knownProducts.Remove(product);
|
|
}
|
|
}
|
|
}
|
|
}
|