summaryrefslogtreecommitdiff
path: root/ActiveRagdoll/Assets/TABG/Scripts/Utils/Utils.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ActiveRagdoll/Assets/TABG/Scripts/Utils/Utils.cs')
-rw-r--r--ActiveRagdoll/Assets/TABG/Scripts/Utils/Utils.cs18
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;
+ }
+
+
+ }
+
+}