Files

15 lines
323 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DetectionSetup
{
public bool isValidate;
public float correctFaceHeight { get; private set; }
public void SetMinFaceHeight(float minValue)
{
correctFaceHeight = minValue;
isValidate = true;
}
}