animation system fix

beta.r3js.org
-=yb4f310 2017-12-11 12:26:08 +01:00
parent 3ca6ec73fd
commit 31df363c34
3 changed files with 10 additions and 6 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,5 @@
// COMPILE TIME DEFINITIONS (Generated via gulp)
var __DATE__ = "Mon Dec 11 2017 11:04:04 GMT+0100 (CET)";
var __DATE__ = "Mon Dec 11 2017 12:24:11 GMT+0100 (CET)";
// END COMPILE TIME DEFINITIONS
/**
@ -26241,7 +26241,9 @@ GameLib.System.Animation.prototype.detachAnimation = function(mesh) {
}
if (detached) {
mesh.updateInstance();
mesh.updateInstance('position');
mesh.updateInstance('rotation');
mesh.updateInstance('scale');
}
};

View File

@ -530,7 +530,9 @@ GameLib.System.Animation.prototype.detachAnimation = function(mesh) {
}
if (detached) {
mesh.updateInstance();
mesh.updateInstance('position');
mesh.updateInstance('rotation');
mesh.updateInstance('scale');
}
};