src/cycle/update.js in entityjs-0.4.1 vs src/cycle/update.js in entityjs-0.4.2
- old
+ new
@@ -21,11 +21,11 @@
.defaults({
updatable:true
})
.defines(function(){
- var l = re.c('update').l;
+ var l = re.update.l;
return {
updateFirst:function(){
@@ -76,12 +76,12 @@
}
};
}())
-.init(function(c){
- c.l.push(this);
+.init(function(){
+ re.update.l.push(this);
})
-.dispose(function(c){
+.dispose(function(){
- c.l.splice(c.l.indexOf(this), 1);
+ re.update.l.splice(re.update.l.indexOf(this), 1);
});
\ No newline at end of file