Updated EaselJS definitions to v0.7 and TweenJS definitions to v0.5

This commit is contained in:
Chris Smith
2013-11-22 22:41:11 -08:00
parent 47bc87d018
commit 7bca55dd1d
4 changed files with 348 additions and 227 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ var Tween = createjs.Tween;
// source : http://www.createjs.com/Docs/TweenJS/modules/TweenJS.html
// Chainable modules :
target.alpha = 1;
Tween.get(target).wait(500).to({ alpha: 0, visible: false }, 1000).call(onComplete);
Tween.get(target).wait(500, false).to({ alpha: 0, visible: false }, 1000).call(onComplete);
function onComplete() {
//Tween complete
}