mirror of
https://github.com/tobspr/shapez.io.git
synced 2024-10-27 20:34:29 +00:00
Merge branch 'master' of https://github.com/tobspr/shapez.io
This commit is contained in:
commit
a2fc246690
@ -40,7 +40,7 @@ export class HUDMassSelector extends BaseHUDPart {
|
|||||||
initialize() {
|
initialize() {
|
||||||
this.deletionMarker = Loader.getSprite("sprites/misc/deletion_marker.png");
|
this.deletionMarker = Loader.getSprite("sprites/misc/deletion_marker.png");
|
||||||
|
|
||||||
this.currentSelectionStart = null;
|
this.currentSelectionStartWorld = null;
|
||||||
this.currentSelectionEnd = null;
|
this.currentSelectionEnd = null;
|
||||||
this.selectedUids = new Set();
|
this.selectedUids = new Set();
|
||||||
|
|
||||||
@ -146,7 +146,7 @@ export class HUDMassSelector extends BaseHUDPart {
|
|||||||
this.selectedUids = new Set();
|
this.selectedUids = new Set();
|
||||||
}
|
}
|
||||||
|
|
||||||
this.currentSelectionStart = pos.copy();
|
this.currentSelectionStartWorld = this.root.camera.screenToWorld(pos.copy());
|
||||||
this.currentSelectionEnd = pos.copy();
|
this.currentSelectionEnd = pos.copy();
|
||||||
return STOP_PROPAGATION;
|
return STOP_PROPAGATION;
|
||||||
}
|
}
|
||||||
@ -156,14 +156,14 @@ export class HUDMassSelector extends BaseHUDPart {
|
|||||||
* @param {Vector} pos
|
* @param {Vector} pos
|
||||||
*/
|
*/
|
||||||
onMouseMove(pos) {
|
onMouseMove(pos) {
|
||||||
if (this.currentSelectionStart) {
|
if (this.currentSelectionStartWorld) {
|
||||||
this.currentSelectionEnd = pos.copy();
|
this.currentSelectionEnd = pos.copy();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
onMouseUp() {
|
onMouseUp() {
|
||||||
if (this.currentSelectionStart) {
|
if (this.currentSelectionStartWorld) {
|
||||||
const worldStart = this.root.camera.screenToWorld(this.currentSelectionStart);
|
const worldStart = this.currentSelectionStartWorld;
|
||||||
const worldEnd = this.root.camera.screenToWorld(this.currentSelectionEnd);
|
const worldEnd = this.root.camera.screenToWorld(this.currentSelectionEnd);
|
||||||
|
|
||||||
const tileStart = worldStart.toTileSpace();
|
const tileStart = worldStart.toTileSpace();
|
||||||
@ -181,7 +181,7 @@ export class HUDMassSelector extends BaseHUDPart {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.currentSelectionStart = null;
|
this.currentSelectionStartWorld = null;
|
||||||
this.currentSelectionEnd = null;
|
this.currentSelectionEnd = null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -197,8 +197,8 @@ export class HUDMassSelector extends BaseHUDPart {
|
|||||||
draw(parameters) {
|
draw(parameters) {
|
||||||
const boundsBorder = 2;
|
const boundsBorder = 2;
|
||||||
|
|
||||||
if (this.currentSelectionStart) {
|
if (this.currentSelectionStartWorld) {
|
||||||
const worldStart = this.root.camera.screenToWorld(this.currentSelectionStart);
|
const worldStart = this.currentSelectionStartWorld;
|
||||||
const worldEnd = this.root.camera.screenToWorld(this.currentSelectionEnd);
|
const worldEnd = this.root.camera.screenToWorld(this.currentSelectionEnd);
|
||||||
|
|
||||||
const realWorldStart = worldStart.min(worldEnd);
|
const realWorldStart = worldStart.min(worldEnd);
|
||||||
|
Loading…
Reference in New Issue
Block a user