fix(editor): restore stable map editing behavior
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
import type { Vector3Tuple } from "@/types/three/three";
|
||||
|
||||
export interface MapNode {
|
||||
id?: string;
|
||||
name: string;
|
||||
type: string;
|
||||
position: Vector3Tuple;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
export type TerrainSurfaceKind =
|
||||
type TerrainSurfaceKind =
|
||||
| "grass"
|
||||
| "path"
|
||||
| "water"
|
||||
@@ -6,7 +6,7 @@ export type TerrainSurfaceKind =
|
||||
| "dirt"
|
||||
| "rock";
|
||||
|
||||
export type TerrainSurfaceRgb = readonly [number, number, number];
|
||||
type TerrainSurfaceRgb = readonly [number, number, number];
|
||||
|
||||
export interface TerrainSurfaceBounds {
|
||||
minX: number;
|
||||
|
||||
Reference in New Issue
Block a user