You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
After importing unity prefabs with animations to altspacevr-kits,
It would be great, if I would be able to trigger my triggers in the associated animation controller through MRE to allow the state engine to change the animation.
A very restricted simple approach could be something like this:
private box: MRE.Actor=null;box=MRE.Actor.CreateFromLibrary(this.context,{resourceId : artifactID,....);// animTrigger of Type AnimationControllerTrigger (I made that up :-))constanimTrigger=box.findAnimationTriggerByName("Door|Close");animTrigger.trigger();
Hi,
After importing unity prefabs with animations to altspacevr-kits,
It would be great, if I would be able to trigger my triggers in the associated animation controller through MRE to allow the state engine to change the animation.
A very restricted simple approach could be something like this: