Map Base
This commit is contained in:
@@ -14,7 +14,7 @@ CubeEntity.prototype.constructor = CubeEntity;
|
||||
|
||||
CubeEntity.prototype.update = function() {
|
||||
OverworldEntity.prototype.update.call(this);
|
||||
var speed = 3.0;
|
||||
var speed = 5.0;
|
||||
var move = Input.axis2D(INPUT_ACTION_LEFT, INPUT_ACTION_RIGHT, INPUT_ACTION_UP, INPUT_ACTION_DOWN);
|
||||
this.position.position.x += move.x * speed * TIME.delta;
|
||||
this.position.position.z += move.y * speed * TIME.delta;
|
||||
|
||||
@@ -15,7 +15,7 @@ OverworldEntity.prototype.update = function() {
|
||||
}
|
||||
|
||||
OverworldEntity.prototype.dispose = function() {
|
||||
// Nothing to dispose
|
||||
Entity.prototype.dispose.call(this);
|
||||
}
|
||||
|
||||
module = OverworldEntity;
|
||||
Reference in New Issue
Block a user