Changes since previous build: Adds a lateUpdate event called after the enterFrame event. This would be called like this:
1 |
Runtime:addEventListener("lateUpdate", functionThatDoesSomething) |
Most (many?) people will never need this, but if you’re wanting to do something after every other object in the scene has been moved/updated, this is where you’d handle that. Here’s a link to the […]