add DOTween / add start settings

This commit is contained in:
2023-05-30 19:38:36 +05:00
parent c72f285eeb
commit 592f334258
385 changed files with 69946 additions and 27 deletions
+14
View File
@@ -0,0 +1,14 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DetectionSetup
{
public bool isValidate;
public float minFaceHeight { get; private set; }
public void SetMinFaceHeight(float minValue)
{
minFaceHeight = minValue;
isValidate = true;
}
}