summaryrefslogtreecommitdiff
path: root/VRCSDK3Worlds/Assets/MeshBaker/scripts/MB3_DisableHiddenAnimations.cs
diff options
context:
space:
mode:
authortylermurphy534 <tylermurphy534@gmail.com>2022-11-06 15:12:42 -0500
committertylermurphy534 <tylermurphy534@gmail.com>2022-11-06 15:12:42 -0500
commiteb84bb298d2b95aec7b2ae12cbf25ac64f25379a (patch)
treeefd616a157df06ab661c6d56651853431ac6b08b /VRCSDK3Worlds/Assets/MeshBaker/scripts/MB3_DisableHiddenAnimations.cs
downloadunityprojects-eb84bb298d2b95aec7b2ae12cbf25ac64f25379a.tar.gz
unityprojects-eb84bb298d2b95aec7b2ae12cbf25ac64f25379a.tar.bz2
unityprojects-eb84bb298d2b95aec7b2ae12cbf25ac64f25379a.zip
move to self host
Diffstat (limited to 'VRCSDK3Worlds/Assets/MeshBaker/scripts/MB3_DisableHiddenAnimations.cs')
-rw-r--r--VRCSDK3Worlds/Assets/MeshBaker/scripts/MB3_DisableHiddenAnimations.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/VRCSDK3Worlds/Assets/MeshBaker/scripts/MB3_DisableHiddenAnimations.cs b/VRCSDK3Worlds/Assets/MeshBaker/scripts/MB3_DisableHiddenAnimations.cs
new file mode 100644
index 00000000..72853881
--- /dev/null
+++ b/VRCSDK3Worlds/Assets/MeshBaker/scripts/MB3_DisableHiddenAnimations.cs
@@ -0,0 +1,25 @@
+using UnityEngine;
+using System.Collections;
+using System.Collections.Generic;
+
+public class MB3_DisableHiddenAnimations : MonoBehaviour {
+ public List<Animation> animationsToCull = new List<Animation>();
+
+ void Start () {
+ if (GetComponent<SkinnedMeshRenderer> () == null) {
+ Debug.LogError ("The MB3_CullHiddenAnimations script was placed on and object " + name + " which has no SkinnedMeshRenderer attached");
+ }
+ }
+
+ void OnBecameVisible(){
+ for (int i = 0; i < animationsToCull.Count; i++) {
+ if (animationsToCull[i] != null) animationsToCull[i].enabled = true;
+ }
+ }
+
+ void OnBecameInvisible(){
+ for (int i = 0; i < animationsToCull.Count; i++) {
+ if (animationsToCull[i] != null) animationsToCull[i].enabled = false;
+ }
+ }
+}