Final release 1.1.4 examples finished.

This commit is contained in:
photonstorm
2014-02-05 16:55:02 +00:00
parent 02b75b9e23
commit e7a9b96d27
26 changed files with 2338 additions and 936 deletions
+2 -2
View File
@@ -266,7 +266,7 @@ Phaser.AnimationManager.prototype = {
*
* @method Phaser.AnimationManager#getAnimation
* @param {string} name - The name of the animation to be returned, e.g. "fire".
* @return {Phaser.Animation|boolean} The Animation instance, if found, otherwise false.
* @return {Phaser.Animation} The Animation instance, if found, otherwise null.
*/
getAnimation: function (name) {
@@ -278,7 +278,7 @@ Phaser.AnimationManager.prototype = {
}
}
return false;
return null;
},