From 27ff7f3cbd6b66f32f7b738fd4aff3f8d6320584 Mon Sep 17 00:00:00 2001 From: ZhangXianQiang <1135831638@qq.com> Date: 星期二, 02 四月 2024 14:53:16 +0800 Subject: [PATCH] feat:添加地图模型 --- src/views/screen/components/screen-map-three/experience/world/world.js | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/src/views/screen/components/screen-map-three/experience/world/world.js b/src/views/screen/components/screen-map-three/experience/world/world.js index 1b2690f..9ec2b12 100644 --- a/src/views/screen/components/screen-map-three/experience/world/world.js +++ b/src/views/screen/components/screen-map-three/experience/world/world.js @@ -1,4 +1,5 @@ import EventEmitter from '../utils/eventEmitter'; +import Enviroment from './enviroment'; import Map from './map'; @@ -7,7 +8,8 @@ super(); this.experience = experience; this.scene = this.experience.scene; - this.Map = new Map(this.experience); + this.enviroment = new Enviroment(this.experience); + this.map = new Map(this.experience); } update() { -- Gitblit v1.8.0