I create the asset bundle that has my model and animations, but after I fetch the asset bundle from the server I can't control the animations by SetTrigger() so I can see the animator in right place in the model but it doesn't work.
GameObject modelBundle = bundle.LoadAsset<GameObject>(jsonModelName);
modelBundleInstantiate = Instantiate(modelBundle);
//.....
_currentAnaimator = modelBundleInstantiate.GetComponentInChildren<Animator>();
_currentAnaimator.SetTrigger("Next"); // NOT WORK when click the button.