mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
Fixed all formatting and linting errors introduced by upgraded eslint and prettier.
This commit is contained in:
parent
344788be55
commit
599cab4b2b
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
|
"endOfLine": "auto",
|
||||||
"printWidth": 100,
|
"printWidth": 100,
|
||||||
"tabWidth": 4,
|
"tabWidth": 4,
|
||||||
"singleQuote": false,
|
"singleQuote": false,
|
||||||
"trailingComma": "all"
|
"trailingComma": "all",
|
||||||
|
"arrowParens": "avoid"
|
||||||
}
|
}
|
@ -81,10 +81,7 @@ class Context {
|
|||||||
|
|
||||||
this.flags >>>= this.flag_bits_left;
|
this.flags >>>= this.flag_bits_left;
|
||||||
const pos = this.output.position;
|
const pos = this.output.position;
|
||||||
this.output
|
this.output.seek_start(this.flag_offset).write_u8(this.flags).seek_start(pos);
|
||||||
.seek_start(this.flag_offset)
|
|
||||||
.write_u8(this.flags)
|
|
||||||
.seek_start(pos);
|
|
||||||
|
|
||||||
this.write_u8(0);
|
this.write_u8(0);
|
||||||
this.write_u8(0);
|
this.write_u8(0);
|
||||||
@ -95,11 +92,10 @@ class Context {
|
|||||||
if (this.flag_bits_left-- === 0) {
|
if (this.flag_bits_left-- === 0) {
|
||||||
// Write out the flags to their position in the file, and store the next flags byte position.
|
// Write out the flags to their position in the file, and store the next flags byte position.
|
||||||
const pos = this.output.position;
|
const pos = this.output.position;
|
||||||
this.output
|
this.output.seek_start(this.flag_offset);
|
||||||
.seek_start(this.flag_offset)
|
this.output.write_u8(this.flags);
|
||||||
.write_u8(this.flags)
|
this.output.seek_start(pos);
|
||||||
.seek_start(pos)
|
this.output.write_u8(0); // Placeholder for the next flags byte.
|
||||||
.write_u8(0); // Placeholder for the next flags byte.
|
|
||||||
this.flag_offset = pos;
|
this.flag_offset = pos;
|
||||||
this.flag_bits_left = 7;
|
this.flag_bits_left = 7;
|
||||||
}
|
}
|
||||||
|
@ -126,11 +126,10 @@ class Context {
|
|||||||
if (!this.flag_bits_left--) {
|
if (!this.flag_bits_left--) {
|
||||||
// Write out the flags to their position in the file, and store the next flags byte position.
|
// Write out the flags to their position in the file, and store the next flags byte position.
|
||||||
const pos = this.dst.position;
|
const pos = this.dst.position;
|
||||||
this.dst
|
this.dst.seek_start(this.flag_offset);
|
||||||
.seek_start(this.flag_offset)
|
this.dst.write_u8(this.flags);
|
||||||
.write_u8(this.flags)
|
this.dst.seek_start(pos);
|
||||||
.seek_start(pos)
|
this.dst.write_u8(0); // Placeholder for the next flags byte.
|
||||||
.write_u8(0); // Placeholder for the next flags byte.
|
|
||||||
this.flag_offset = pos;
|
this.flag_offset = pos;
|
||||||
this.flag_bits_left = 7;
|
this.flag_bits_left = 7;
|
||||||
}
|
}
|
||||||
@ -153,10 +152,9 @@ class Context {
|
|||||||
write_final_flags(): void {
|
write_final_flags(): void {
|
||||||
this.flags >>>= this.flag_bits_left;
|
this.flags >>>= this.flag_bits_left;
|
||||||
const pos = this.dst.position;
|
const pos = this.dst.position;
|
||||||
this.dst
|
this.dst.seek_start(this.flag_offset);
|
||||||
.seek_start(this.flag_offset)
|
this.dst.write_u8(this.flags);
|
||||||
.write_u8(this.flags)
|
this.dst.seek_start(pos);
|
||||||
.seek_start(pos);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
write_eof(): void {
|
write_eof(): void {
|
||||||
|
@ -34,11 +34,7 @@ test_integer_write("write_i32");
|
|||||||
|
|
||||||
test("write, seek backwards then take", () => {
|
test("write, seek backwards then take", () => {
|
||||||
const cursor = new ResizableBufferCursor(new ResizableBuffer(0), Endianness.Little);
|
const cursor = new ResizableBufferCursor(new ResizableBuffer(0), Endianness.Little);
|
||||||
cursor
|
cursor.write_u32(1).write_u32(2).write_u32(3).write_u32(4);
|
||||||
.write_u32(1)
|
|
||||||
.write_u32(2)
|
|
||||||
.write_u32(3)
|
|
||||||
.write_u32(4);
|
|
||||||
|
|
||||||
cursor.seek(-8);
|
cursor.seek(-8);
|
||||||
const new_cursor = cursor.take(8);
|
const new_cursor = cursor.take(8);
|
||||||
|
@ -57,11 +57,7 @@ test_all(
|
|||||||
(cursor, endianness) => {
|
(cursor, endianness) => {
|
||||||
expect(cursor.position).toBe(0);
|
expect(cursor.position).toBe(0);
|
||||||
|
|
||||||
cursor
|
cursor.write_u8(99).write_u8(99).write_u8(99).write_u8(99);
|
||||||
.write_u8(99)
|
|
||||||
.write_u8(99)
|
|
||||||
.write_u8(99)
|
|
||||||
.write_u8(99);
|
|
||||||
cursor.seek(-1);
|
cursor.seek(-1);
|
||||||
|
|
||||||
expect(cursor.size).toBe(cursor.position + cursor.bytes_left);
|
expect(cursor.size).toBe(cursor.position + cursor.bytes_left);
|
||||||
@ -176,11 +172,7 @@ test_all(
|
|||||||
"write, seek backwards then take",
|
"write, seek backwards then take",
|
||||||
() => new Array<number>(16).fill(0),
|
() => new Array<number>(16).fill(0),
|
||||||
cursor => {
|
cursor => {
|
||||||
cursor
|
cursor.write_u32(1).write_u32(2).write_u32(3).write_u32(4);
|
||||||
.write_u32(1)
|
|
||||||
.write_u32(2)
|
|
||||||
.write_u32(3)
|
|
||||||
.write_u32(4);
|
|
||||||
|
|
||||||
cursor.seek(-8);
|
cursor.seek(-8);
|
||||||
const new_cursor = cursor.take(8);
|
const new_cursor = cursor.take(8);
|
||||||
|
@ -113,8 +113,9 @@ export function parse_dat(cursor: Cursor): DatFile {
|
|||||||
} else {
|
} else {
|
||||||
if (entities_size !== total_size - 16) {
|
if (entities_size !== total_size - 16) {
|
||||||
throw Error(
|
throw Error(
|
||||||
`Malformed DAT file. Expected an entities size of ${total_size -
|
`Malformed DAT file. Expected an entities size of ${
|
||||||
16}, got ${entities_size}.`,
|
total_size - 16
|
||||||
|
}, got ${entities_size}.`,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -301,8 +302,9 @@ function parse_events(cursor: Cursor, area_id: number, events: DatEvent[]): void
|
|||||||
|
|
||||||
if (cursor.position !== actions_offset) {
|
if (cursor.position !== actions_offset) {
|
||||||
logger.warn(
|
logger.warn(
|
||||||
`Read ${cursor.position - 16} bytes of event data instead of expected ${actions_offset -
|
`Read ${cursor.position - 16} bytes of event data instead of expected ${
|
||||||
16}.`,
|
actions_offset - 16
|
||||||
|
}.`,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -367,8 +367,9 @@ function parse_files(
|
|||||||
|
|
||||||
if (cursor.position !== start_position + chunk_size) {
|
if (cursor.position !== start_position + chunk_size) {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
`Read ${cursor.position -
|
`Read ${
|
||||||
start_position} file chunk message bytes instead of expected ${chunk_size}.`,
|
cursor.position - start_position
|
||||||
|
} file chunk message bytes instead of expected ${chunk_size}.`,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,4 @@
|
|||||||
import {
|
import { is_list_property, ListChangeType, ListProperty, ListChangeEvent } from "./ListProperty";
|
||||||
is_list_property,
|
|
||||||
ListChangeType,
|
|
||||||
ListProperty,
|
|
||||||
ListChangeEvent,
|
|
||||||
} from "./ListProperty";
|
|
||||||
import { SimpleListProperty } from "./SimpleListProperty";
|
import { SimpleListProperty } from "./SimpleListProperty";
|
||||||
import { MappedListProperty } from "./MappedListProperty";
|
import { MappedListProperty } from "./MappedListProperty";
|
||||||
import { list_property } from "../../index";
|
import { list_property } from "../../index";
|
||||||
|
@ -10,12 +10,10 @@ import {
|
|||||||
Mat4,
|
Mat4,
|
||||||
mat4_multiply,
|
mat4_multiply,
|
||||||
mat4_vec3_multiply_into,
|
mat4_vec3_multiply_into,
|
||||||
Vec2,
|
|
||||||
Vec3,
|
Vec3,
|
||||||
} from "../../math/linear_algebra";
|
} from "../../math/linear_algebra";
|
||||||
|
|
||||||
const DEFAULT_NORMAL = new Vec3(0, 1, 0);
|
const DEFAULT_NORMAL = new Vec3(0, 1, 0);
|
||||||
const DEFAULT_UV = new Vec2(0, 0);
|
|
||||||
const NO_TRANSLATION = new Vec3(0, 0, 0);
|
const NO_TRANSLATION = new Vec3(0, 0, 0);
|
||||||
const NO_ROTATION = new Quat(1, 0, 0, 0);
|
const NO_ROTATION = new Quat(1, 0, 0, 0);
|
||||||
const NO_SCALE = new Vec3(1, 1, 1);
|
const NO_SCALE = new Vec3(1, 1, 1);
|
||||||
@ -71,7 +69,6 @@ class MeshCreator {
|
|||||||
hidden,
|
hidden,
|
||||||
break_child_trace,
|
break_child_trace,
|
||||||
zxy_rotation_order,
|
zxy_rotation_order,
|
||||||
skip,
|
|
||||||
} = object.evaluation_flags;
|
} = object.evaluation_flags;
|
||||||
const { position, rotation, scale } = object;
|
const { position, rotation, scale } = object;
|
||||||
|
|
||||||
|
@ -257,12 +257,10 @@ class GeometryCreator {
|
|||||||
const nb = this.builder.get_normal(b);
|
const nb = this.builder.get_normal(b);
|
||||||
const nc = this.builder.get_normal(c);
|
const nc = this.builder.get_normal(c);
|
||||||
|
|
||||||
// Calculate a surface normal and reverse the vertex winding if at least 2 of the vertex normals point in the opposite direction.
|
// Calculate a surface normal and reverse the vertex winding if at least 2 of the
|
||||||
// This hack fixes the winding for most models.
|
// vertex normals point in the opposite direction. This hack fixes the winding for
|
||||||
const normal = pb
|
// most models.
|
||||||
.clone()
|
const normal = pb.clone().sub(pa).cross(pc.clone().sub(pa));
|
||||||
.sub(pa)
|
|
||||||
.cross(pc.clone().sub(pa));
|
|
||||||
|
|
||||||
if (clockwise) {
|
if (clockwise) {
|
||||||
normal.negate();
|
normal.negate();
|
||||||
|
@ -28,7 +28,7 @@ export class WebgpuGfx implements Gfx<WebgpuMesh, GPUTexture> {
|
|||||||
|
|
||||||
const bind_group = this.device.createBindGroup({
|
const bind_group = this.device.createBindGroup({
|
||||||
layout: this.bind_group_layout,
|
layout: this.bind_group_layout,
|
||||||
bindings: [
|
entries: [
|
||||||
{
|
{
|
||||||
binding: 0,
|
binding: 0,
|
||||||
resource: {
|
resource: {
|
||||||
@ -111,8 +111,8 @@ export class WebgpuGfx implements Gfx<WebgpuMesh, GPUTexture> {
|
|||||||
usage: GPUTextureUsage.COPY_DST | GPUTextureUsage.SAMPLED, // eslint-disable-line no-undef
|
usage: GPUTextureUsage.COPY_DST | GPUTextureUsage.SAMPLED, // eslint-disable-line no-undef
|
||||||
});
|
});
|
||||||
|
|
||||||
const row_pitch = Math.ceil((4 * width) / 256) * 256;
|
const bytes_per_row = Math.ceil((4 * width) / 256) * 256;
|
||||||
const data_size = row_pitch * height;
|
const data_size = bytes_per_row * height;
|
||||||
|
|
||||||
const buffer = this.device.createBuffer({
|
const buffer = this.device.createBuffer({
|
||||||
size: data_size,
|
size: data_size,
|
||||||
@ -130,7 +130,7 @@ export class WebgpuGfx implements Gfx<WebgpuMesh, GPUTexture> {
|
|||||||
|
|
||||||
for (let y = 0; y < height; y++) {
|
for (let y = 0; y < height; y++) {
|
||||||
for (let x = 0; x < width; x++) {
|
for (let x = 0; x < width; x++) {
|
||||||
const idx = 4 * x + row_pitch * y;
|
const idx = 4 * x + bytes_per_row * y;
|
||||||
|
|
||||||
buffer_data[idx] = orig_data[orig_idx];
|
buffer_data[idx] = orig_data[orig_idx];
|
||||||
buffer_data[idx + 1] = orig_data[orig_idx + 1];
|
buffer_data[idx + 1] = orig_data[orig_idx + 1];
|
||||||
@ -148,8 +148,8 @@ export class WebgpuGfx implements Gfx<WebgpuMesh, GPUTexture> {
|
|||||||
command_encoder.copyBufferToTexture(
|
command_encoder.copyBufferToTexture(
|
||||||
{
|
{
|
||||||
buffer,
|
buffer,
|
||||||
rowPitch: row_pitch,
|
bytesPerRow: bytes_per_row,
|
||||||
imageHeight: 0,
|
rowsPerImage: 0,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
texture,
|
texture,
|
||||||
|
@ -65,7 +65,7 @@ export class WebgpuRenderer extends GfxRenderer {
|
|||||||
});
|
});
|
||||||
|
|
||||||
const bind_group_layout = device.createBindGroupLayout({
|
const bind_group_layout = device.createBindGroupLayout({
|
||||||
bindings: [
|
entries: [
|
||||||
{
|
{
|
||||||
binding: 0,
|
binding: 0,
|
||||||
visibility: GPUShaderStage.VERTEX, // eslint-disable-line no-undef
|
visibility: GPUShaderStage.VERTEX, // eslint-disable-line no-undef
|
||||||
|
@ -27,7 +27,7 @@ export class HuntOptimizerView extends ResizableView {
|
|||||||
title: "Optimize",
|
title: "Optimize",
|
||||||
key: "optimize",
|
key: "optimize",
|
||||||
path: "/optimize",
|
path: "/optimize",
|
||||||
create_view: async function() {
|
create_view: async () => {
|
||||||
return new (await import("./OptimizerView")).OptimizerView(
|
return new (await import("./OptimizerView")).OptimizerView(
|
||||||
hunt_optimizer_stores,
|
hunt_optimizer_stores,
|
||||||
);
|
);
|
||||||
@ -37,7 +37,7 @@ export class HuntOptimizerView extends ResizableView {
|
|||||||
title: "Methods",
|
title: "Methods",
|
||||||
key: "methods",
|
key: "methods",
|
||||||
path: "/methods",
|
path: "/methods",
|
||||||
create_view: async function() {
|
create_view: async () => {
|
||||||
return new (await import("./MethodsView")).MethodsView(
|
return new (await import("./MethodsView")).MethodsView(
|
||||||
gui_store,
|
gui_store,
|
||||||
hunt_method_stores,
|
hunt_method_stores,
|
||||||
@ -48,7 +48,7 @@ export class HuntOptimizerView extends ResizableView {
|
|||||||
title: "Help",
|
title: "Help",
|
||||||
key: "help",
|
key: "help",
|
||||||
path: "/help",
|
path: "/help",
|
||||||
create_view: async function() {
|
create_view: async () => {
|
||||||
return new (await import("./HelpView")).HelpView();
|
return new (await import("./HelpView")).HelpView();
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -14,7 +14,7 @@ export class MethodsView extends TabContainer {
|
|||||||
title: "Episode I",
|
title: "Episode I",
|
||||||
key: "episode_1",
|
key: "episode_1",
|
||||||
path: "/methods/episode_1",
|
path: "/methods/episode_1",
|
||||||
create_view: async function() {
|
create_view: async () => {
|
||||||
return new MethodsForEpisodeView(hunt_method_stores, Episode.I);
|
return new MethodsForEpisodeView(hunt_method_stores, Episode.I);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@ -22,7 +22,7 @@ export class MethodsView extends TabContainer {
|
|||||||
title: "Episode II",
|
title: "Episode II",
|
||||||
key: "episode_2",
|
key: "episode_2",
|
||||||
path: "/methods/episode_2",
|
path: "/methods/episode_2",
|
||||||
create_view: async function() {
|
create_view: async () => {
|
||||||
return new MethodsForEpisodeView(hunt_method_stores, Episode.II);
|
return new MethodsForEpisodeView(hunt_method_stores, Episode.II);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@ -30,7 +30,7 @@ export class MethodsView extends TabContainer {
|
|||||||
title: "Episode IV",
|
title: "Episode IV",
|
||||||
key: "episode_4",
|
key: "episode_4",
|
||||||
path: "/methods/episode_4",
|
path: "/methods/episode_4",
|
||||||
create_view: async function() {
|
create_view: async () => {
|
||||||
return new MethodsForEpisodeView(hunt_method_stores, Episode.IV);
|
return new MethodsForEpisodeView(hunt_method_stores, Episode.IV);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -93,7 +93,7 @@ export class LogView extends ResizableView {
|
|||||||
].join(" "),
|
].join(" "),
|
||||||
},
|
},
|
||||||
div({ className: "quest_editor_LogView_message_timestamp" }, time_to_string(time)),
|
div({ className: "quest_editor_LogView_message_timestamp" }, time_to_string(time)),
|
||||||
div({ className: "quest_editor_LogView_message_level" }, "[" + Severity[severity] + "]"),
|
div({ className: "quest_editor_LogView_message_level" }, `[${Severity[severity]}]`),
|
||||||
div({ className: "quest_editor_LogView_message_contents" }, message),
|
div({ className: "quest_editor_LogView_message_contents" }, message),
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -263,7 +263,7 @@ export class QuestEditorView extends ResizableView {
|
|||||||
for (const { name, create } of this.view_map.values()) {
|
for (const { name, create } of this.view_map.values()) {
|
||||||
// registerComponent expects a regular function and not an arrow function. This
|
// registerComponent expects a regular function and not an arrow function. This
|
||||||
// function will be called with new.
|
// function will be called with new.
|
||||||
layout.registerComponent(name, function(container: Container) {
|
layout.registerComponent(name, function (container: Container) {
|
||||||
let view: Widget & Resizable;
|
let view: Widget & Resizable;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
@ -63,8 +63,9 @@ export function entity_dnd_source(
|
|||||||
dragging_details.drag_element.style.zIndex = "500";
|
dragging_details.drag_element.style.zIndex = "500";
|
||||||
dragging_details.drag_element.style.top = "0";
|
dragging_details.drag_element.style.top = "0";
|
||||||
dragging_details.drag_element.style.left = "0";
|
dragging_details.drag_element.style.left = "0";
|
||||||
dragging_details.drag_element.style.transform = `translate(${e.clientX -
|
dragging_details.drag_element.style.transform = `translate(${
|
||||||
grab_point.x}px, ${e.clientY - grab_point.y}px)`;
|
e.clientX - grab_point.x
|
||||||
|
}px, ${e.clientY - grab_point.y}px)`;
|
||||||
document.body.append(dragging_details.drag_element);
|
document.body.append(dragging_details.drag_element);
|
||||||
|
|
||||||
if (e.dataTransfer) {
|
if (e.dataTransfer) {
|
||||||
@ -109,8 +110,9 @@ function dragover(e: DragEvent): void {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (dragging_details) {
|
if (dragging_details) {
|
||||||
dragging_details.drag_element.style.transform = `translate(${e.clientX -
|
dragging_details.drag_element.style.transform = `translate(${e.clientX - grab_point.x}px, ${
|
||||||
grab_point.x}px, ${e.clientY - grab_point.y}px)`;
|
e.clientY - grab_point.y
|
||||||
|
}px)`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@ export class EntityImageRenderer implements Disposable {
|
|||||||
const entity_model = create_entity_type_mesh(entity, geometry, textures);
|
const entity_model = create_entity_type_mesh(entity, geometry, textures);
|
||||||
scene.add(entity_model);
|
scene.add(entity_model);
|
||||||
|
|
||||||
const b_sphere = entity_model.geometry.boundingSphere;
|
const b_sphere = entity_model.geometry.boundingSphere!;
|
||||||
camera.position.copy(camera_position);
|
camera.position.copy(camera_position);
|
||||||
camera.position.multiplyScalar(b_sphere.radius * camera_dist_factor);
|
camera.position.multiplyScalar(b_sphere.radius * camera_dist_factor);
|
||||||
camera.lookAt(b_sphere.center);
|
camera.lookAt(b_sphere.center);
|
||||||
|
@ -175,7 +175,7 @@ class Area3DModelManager {
|
|||||||
render_geom: Object3D,
|
render_geom: Object3D,
|
||||||
): void {
|
): void {
|
||||||
for (const collision_area of collision_geom.children) {
|
for (const collision_area of collision_geom.children) {
|
||||||
(collision_area as Mesh).geometry.boundingBox.getCenter(this.origin);
|
(collision_area as Mesh).geometry.boundingBox!.getCenter(this.origin);
|
||||||
|
|
||||||
this.raycaster.set(this.origin, this.down);
|
this.raycaster.set(this.origin, this.down);
|
||||||
const intersection1 = this.raycaster
|
const intersection1 = this.raycaster
|
||||||
|
@ -1,6 +1,13 @@
|
|||||||
import { reinterpret_i32_as_f32 } from "../../core/primitive_conversion";
|
import { reinterpret_i32_as_f32 } from "../../core/primitive_conversion";
|
||||||
import { Arg, Segment, SegmentType } from "../../core/data_formats/asm/instructions";
|
import { Arg, Segment, SegmentType } from "../../core/data_formats/asm/instructions";
|
||||||
import { AnyType, Kind, OP_VA_END, OP_VA_START, Param, StackInteraction } from "../../core/data_formats/asm/opcodes";
|
import {
|
||||||
|
AnyType,
|
||||||
|
Kind,
|
||||||
|
OP_VA_END,
|
||||||
|
OP_VA_START,
|
||||||
|
Param,
|
||||||
|
StackInteraction,
|
||||||
|
} from "../../core/data_formats/asm/opcodes";
|
||||||
import { LogManager } from "../../core/Logger";
|
import { LogManager } from "../../core/Logger";
|
||||||
import { number_to_hex_string } from "../../core/util";
|
import { number_to_hex_string } from "../../core/util";
|
||||||
|
|
||||||
|
@ -1,4 +1,10 @@
|
|||||||
import { AsmToken, Instruction, InstructionSegment, Segment, SegmentType } from "../../../core/data_formats/asm/instructions";
|
import {
|
||||||
|
AsmToken,
|
||||||
|
Instruction,
|
||||||
|
InstructionSegment,
|
||||||
|
Segment,
|
||||||
|
SegmentType,
|
||||||
|
} from "../../../core/data_formats/asm/instructions";
|
||||||
import { assert } from "../../../core/util";
|
import { assert } from "../../../core/util";
|
||||||
|
|
||||||
export class InstructionPointer {
|
export class InstructionPointer {
|
||||||
|
@ -157,7 +157,7 @@ export class ModelRenderer extends ThreeRenderer implements Disposable {
|
|||||||
);
|
);
|
||||||
|
|
||||||
// Make sure we rotate around the center of the model instead of its origin.
|
// Make sure we rotate around the center of the model instead of its origin.
|
||||||
const bb = geometry.boundingBox;
|
const bb = geometry.boundingBox!;
|
||||||
const height = bb.max.y - bb.min.y;
|
const height = bb.max.y - bb.min.y;
|
||||||
this.mesh.translateY(-height / 2 - bb.min.y);
|
this.mesh.translateY(-height / 2 - bb.min.y);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user