mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
Entity world-relative rotation now stays constant while translating manually.
This commit is contained in:
parent
db9d15b78a
commit
4a755a884f
@ -6,6 +6,7 @@ import { SectionModel } from "./SectionModel";
|
||||
import { Euler, Quaternion, Vector3 } from "three";
|
||||
import { floor_mod } from "../../core/math";
|
||||
|
||||
// These quaternions are used as temporary variables.
|
||||
const q1 = new Quaternion();
|
||||
const q2 = new Quaternion();
|
||||
|
||||
|
@ -811,7 +811,12 @@ const translate_entity_horizontally = (() => {
|
||||
);
|
||||
|
||||
if (section) {
|
||||
const old_rotation = entity.world_rotation.val;
|
||||
|
||||
entity.set_section(section);
|
||||
|
||||
// Make sure entity's world-relative orientation stays constant when translating manually.
|
||||
entity.set_world_rotation(old_rotation);
|
||||
}
|
||||
} else {
|
||||
// If the pointer is not over the ground, we translate the entity across the horizontal
|
||||
|
Loading…
Reference in New Issue
Block a user