Add main mesh fixes
This commit is contained in:
18
Assets/Asset Cleaner/Data/PrevClick.cs
Normal file
18
Assets/Asset Cleaner/Data/PrevClick.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace Asset_Cleaner {
|
||||
public struct PrevClick {
|
||||
const float DoubleClickTime = 0.5f;
|
||||
Object _target;
|
||||
float _timeClicked;
|
||||
|
||||
public PrevClick(Object target) {
|
||||
_target = target;
|
||||
_timeClicked = Time.realtimeSinceStartup;
|
||||
}
|
||||
|
||||
public bool IsDoubleClick(Object o) {
|
||||
return _target == o && Time.realtimeSinceStartup - _timeClicked < DoubleClickTime;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user