diff options
author | chai <215380520@qq.com> | 2024-04-02 17:19:00 +0800 |
---|---|---|
committer | chai <215380520@qq.com> | 2024-04-02 17:19:00 +0800 |
commit | f29bf0024803264704e31ac78269f9be54b7e904 (patch) | |
tree | 7dba7a956713eeda56cc6a78dcdfc2a7f7f2f48c /ActiveRagdoll/Assets/TABG/Scripts/Utils/Utils.cs | |
parent | ce3211f753719e76051074ed332123b59d7e7a38 (diff) |
*debug
Diffstat (limited to 'ActiveRagdoll/Assets/TABG/Scripts/Utils/Utils.cs')
-rw-r--r-- | ActiveRagdoll/Assets/TABG/Scripts/Utils/Utils.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ActiveRagdoll/Assets/TABG/Scripts/Utils/Utils.cs b/ActiveRagdoll/Assets/TABG/Scripts/Utils/Utils.cs new file mode 100644 index 0000000..746f80e --- /dev/null +++ b/ActiveRagdoll/Assets/TABG/Scripts/Utils/Utils.cs @@ -0,0 +1,18 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +namespace Rigging +{ + + public static class Utils + { + public static bool IsInsidePhysics() + { + return Time.inFixedTimeStep; + } + + + } + +} |