mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 23:38:30 +08:00
Fixed bug in computation of inverse rotation of section. The bug manifested while manually translating an entity across a rotated section.
This commit is contained in:
parent
8212348a81
commit
db9d15b78a
@ -1,5 +1,5 @@
|
|||||||
import { AreaVariantModel } from "./AreaVariantModel";
|
import { AreaVariantModel } from "./AreaVariantModel";
|
||||||
import { Euler, Vector3 } from "three";
|
import { Euler, Quaternion, Vector3 } from "three";
|
||||||
|
|
||||||
export class SectionModel {
|
export class SectionModel {
|
||||||
readonly id: number;
|
readonly id: number;
|
||||||
@ -18,7 +18,9 @@ export class SectionModel {
|
|||||||
this.id = id;
|
this.id = id;
|
||||||
this.position = position;
|
this.position = position;
|
||||||
this.rotation = rotation;
|
this.rotation = rotation;
|
||||||
this.inverse_rotation = rotation.clone().reorder("YXZ");
|
this.inverse_rotation = new Euler().setFromQuaternion(
|
||||||
|
new Quaternion().setFromEuler(rotation).inverse(),
|
||||||
|
);
|
||||||
this.area_variant = area_variant;
|
this.area_variant = area_variant;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user