Started race data storage for replay and ghost features.

This commit is contained in:
Thibaut
2012-10-15 17:51:57 +02:00
parent 657f0354de
commit f2f9d49cac
4 changed files with 19 additions and 1 deletions
+11 -1
View File
@@ -532,4 +532,14 @@ bkcore.hexgl.ShipControls.prototype.getShield = function(scale)
this.shield
* (scale == undefined ? 1 : scale)
);
};
};
bkcore.hexgl.ShipControls.prototype.getPosition = function()
{
return this.dummy.position;
}
bkcore.hexgl.ShipControls.prototype.getQuaternion = function()
{
return this.dummy.quaternion;
}