Skip to content
Snippets Groups Projects
Commit f0c2b45d authored by joni's avatar joni
Browse files

Remove duplicate file.

parent 3e67e50a
No related branches found
No related tags found
No related merge requests found
export default class PrimaryActionHandler {
constructor(scene) {
this.cursor = null;
this.handledByCursor = false;
this.handledByTeleport = false;
this.rightTeleporter = null;
this.leftTeleporter = null;
this.scene = scene;
this.registerCursor = this.registerCursor.bind(this);
this.isReady = this.isReady.bind(this);
this.addEventListeners = this.addEventListeners.bind(this);
this.onPrimaryDown = this.onPrimaryDown.bind(this);
this.onPrimaryUp = this.onPrimaryUp.bind(this);
}
registerCursor(cursor) {
this.cursor = cursor;
if (this.isReady()) {
this.addEventListeners();
}
}
isReady() {
return this.cursor; // && this.rightTeleporter && this.leftTeleporter;
}
addEventListeners() {
this.scene.addEventListener("action_primary_down", this.onPrimaryDown);
this.scene.addEventListener("action_primary_up", this.onPrimaryUp);
}
onPrimaryDown(e) {
this.handledByCursor = this.cursor.beginInteraction();
if (this.handledByCursor) return;
// Do teleport things.
console.log(e);
if (e.components["teleport-controls"]) {
console.log("yes");
}
console.log("no");
}
onPrimaryUp(e) {
if (this.handledByCursor) {
this.cursor.endInteraction();
return;
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment