Added CSS3Filters plugin. Also modified Sprite to contain preUpdate call, so that update can be over-ridden by custom Classes + added an example for this.

This commit is contained in:
Richard Davey
2013-09-11 00:35:21 +01:00
parent e2eddc8b24
commit f885f7b023
5 changed files with 255 additions and 2 deletions
+5
View File
@@ -59,6 +59,11 @@ Phaser.World.prototype = {
do
{
if (currentNode['preUpdate'])
{
currentNode.preUpdate();
}
if (currentNode['update'])
{
currentNode.update();