Type alias Landings

Landings: Record<string, Vector3>

电梯停靠点定义类型。

type Landings = {
[point: string]: Vector3
};

// 定义每个停靠点的名称与位置。
const landings: Landings = {
F3: new Vector(0, 0, 9),
F2: new Vector(0, 0, 6),
F1: new Vector(0, 0, 0),
B1: new Vector(0, 0, -3),
B2: new Vector(0, 0, -6),
}