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
The LateUpdate is not called. I think there is some copy and paste bug in EventCallerContainerExtension.cs.
135 this.BindUnityExtension(lateUpdateable, binding.value);
136 this.BindUnityExtension(fixedUpdateable, binding.value);
shall be
135 this.BindUnityExtension(lateUpdateable, instance);
136 this.BindUnityExtension(fixedUpdateable, instance);
The text was updated successfully, but these errors were encountered:
The LateUpdate is not called. I think there is some copy and paste bug in EventCallerContainerExtension.cs.
135 this.BindUnityExtension(lateUpdateable, binding.value);
136 this.BindUnityExtension(fixedUpdateable, binding.value);
shall be
135 this.BindUnityExtension(lateUpdateable, instance);
136 this.BindUnityExtension(fixedUpdateable, instance);
The text was updated successfully, but these errors were encountered: