Initial Commit

This commit is contained in:
Michael Mainguy 2025-02-15 11:23:41 -06:00
parent a105e28333
commit de108e8a40

View File

@ -319,19 +319,19 @@ export class Ship {
} }
} }
private setupMouse() { private setupMouse() {
this._ship.getScene().onPointerDown = (evt, pickInfo, type) => { this._ship.getScene().onPointerDown = (evt) => {
this._mousePos.x = evt.x; this._mousePos.x = evt.x;
this._mousePos.y = evt.y; this._mousePos.y = evt.y;
this._mouseDown = true; this._mouseDown = true;
} }
this._ship.getScene().onPointerUp = (evt, pickInfo, type) => { this._ship.getScene().onPointerUp = () => {
this._mouseDown = false; this._mouseDown = false;
} }
this._ship.getScene().onPointerMove = (evt, pickInfo, type) => { this._ship.getScene().onPointerMove = () => {
}; };
this._ship.getScene().onPointerMove = (ev, pickInfo, type) => { this._ship.getScene().onPointerMove = (ev) => {
if (!this._mouseDown) {return}; if (!this._mouseDown) {return};
const xInc = this._rightStickVector.x = (ev.x - this._mousePos.x) / 100; const xInc = this._rightStickVector.x = (ev.x - this._mousePos.x) / 100;
const yInc = this._rightStickVector.y = (ev.y - this._mousePos.y) / 100; const yInc = this._rightStickVector.y = (ev.y - this._mousePos.y) / 100;