We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Children actors should participate in the update loop. This is a regression.
Child actor's update is never called
Add this to the end of Actor.update:
Actor.update
// Update child actors for (var i = 0; i < this.children.length; i++) { this.children[i].update(engine, delta); }
The text was updated successfully, but these errors were encountered:
:( mega sad
Sorry, something went wrong.
[Closes #616] Child actors should be updated
ae0379d
[Closes #616] Child actors should be updated (#617)
94055b0
* [Closes #616] Child actors should be updated * Compile dists * Recompile
kamranayub
No branches or pull requests
Steps to Reproduce
Expected Result
Children actors should participate in the update loop. This is a regression.
Actual Result
Child actor's update is never called
Proposed Changes
Add this to the end of
Actor.update
:The text was updated successfully, but these errors were encountered: