Entity world-relative rotation now stays constant while translating manually.

This commit is contained in:
Daan Vanden Bosch 2019-11-04 18:02:30 +01:00
parent db9d15b78a
commit 4a755a884f
2 changed files with 6 additions and 0 deletions

View File

@ -6,6 +6,7 @@ import { SectionModel } from "./SectionModel";
import { Euler, Quaternion, Vector3 } from "three"; import { Euler, Quaternion, Vector3 } from "three";
import { floor_mod } from "../../core/math"; import { floor_mod } from "../../core/math";
// These quaternions are used as temporary variables.
const q1 = new Quaternion(); const q1 = new Quaternion();
const q2 = new Quaternion(); const q2 = new Quaternion();

View File

@ -811,7 +811,12 @@ const translate_entity_horizontally = (() => {
); );
if (section) { if (section) {
const old_rotation = entity.world_rotation.val;
entity.set_section(section); entity.set_section(section);
// Make sure entity's world-relative orientation stays constant when translating manually.
entity.set_world_rotation(old_rotation);
} }
} else { } else {
// If the pointer is not over the ground, we translate the entity across the horizontal // If the pointer is not over the ground, we translate the entity across the horizontal