mx3d 2024.6.4 → 2024.6.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/index.d.ts +1078 -23
- package/mx3d.min.js +1 -1
- package/package.json +1 -1
- package/components/AlarmFlashing.d.ts +0 -12
- package/components/App.d.ts +0 -39
- package/components/Builder.d.ts +0 -73
- package/components/Capacity.d.ts +0 -11
- package/components/Environment.d.ts +0 -31
- package/components/HeatMap.d.ts +0 -14
- package/components/Icon.d.ts +0 -33
- package/components/IconFromMesh.d.ts +0 -29
- package/components/Line.d.ts +0 -14
- package/components/LineFromMesh.d.ts +0 -13
- package/components/StatusType.d.ts +0 -5
- package/components/UI.d.ts +0 -10
- package/earths/3dTile.d.ts +0 -0
- package/earths/TileLoader.d.ts +0 -6
- package/effects/Cloud.d.ts +0 -42
- package/effects/Effect.d.ts +0 -13
- package/effects/IEffect.d.ts +0 -4
- package/effects/Rain.d.ts +0 -34
- package/effects/Thunder.d.ts +0 -31
- package/events/DefaultEvent.d.ts +0 -14
- package/events/EventType.d.ts +0 -9
- package/events/FPSCameraEvent.d.ts +0 -18
- package/events/IEvent.d.ts +0 -7
- package/hub/HubService.d.ts +0 -5
- package/lights/Directional.d.ts +0 -8
- package/lights/Hemispheric.d.ts +0 -7
- package/lights/ILightObject.d.ts +0 -11
- package/lights/LightObject.d.ts +0 -16
- package/lights/LightType.d.ts +0 -8
- package/lights/Point.d.ts +0 -8
- package/lights/Spot.d.ts +0 -11
- package/loaders/MJGLLoader.d.ts +0 -4
- package/loaders/Mx3dLoader.d.ts +0 -4
- package/mapboxgl/BabylonLayer.d.ts +0 -0
- package/mapboxgl/Earth.d.ts +0 -0
- package/mapboxgl/Parse3dtile.d.ts +0 -0
- package/models/BaseModel.d.ts +0 -15
- package/models/BuildingObject.d.ts +0 -7
- package/models/CabinetObject.d.ts +0 -13
- package/models/CampusObject.d.ts +0 -8
- package/models/ConduitObject.d.ts +0 -17
- package/models/CornerObject.d.ts +0 -45
- package/models/DefaultObject.d.ts +0 -61
- package/models/DoorObject.d.ts +0 -7
- package/models/FloorObject.d.ts +0 -12
- package/models/IBase.d.ts +0 -23
- package/models/IObject.d.ts +0 -15
- package/models/IRegion.d.ts +0 -49
- package/models/LeakWaterObject.d.ts +0 -12
- package/models/ObjectType.d.ts +0 -17
- package/models/OptimizedWallObject.d.ts +0 -7
- package/models/Project.d.ts +0 -30
- package/models/RackModel.d.ts +0 -12
- package/models/RackObject.d.ts +0 -61
- package/models/StoreyObject.d.ts +0 -10
- package/models/UI3DTextObject.d.ts +0 -14
- package/models/VirtualBoxObject.d.ts +0 -13
- package/models/WallObject.d.ts +0 -12
- package/models/WindowObject.d.ts +0 -7
- package/runtime/index.d.ts +0 -52
- package/tools/ArrayEx.d.ts +0 -3
- package/tools/BaseNode.d.ts +0 -5
- package/tools/CameraController.d.ts +0 -26
- package/tools/Dictionary.d.ts +0 -13
- package/tools/GUID.d.ts +0 -3
- package/tools/RES.d.ts +0 -3
- package/tools/Resources.d.ts +0 -26
- package/tools/Sight.d.ts +0 -15
- package/tools/ToolTips.d.ts +0 -14
- package/tools/Tools.d.ts +0 -21
- package/tools/axios.d.ts +0 -2
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
## mx3djs
|
|
2
|
+
|
|
3
|
+
> 我搭世界场景操作 API 集合。
|
|
4
|
+
|
|
5
|
+
## 概述
|
|
6
|
+
|
|
7
|
+
mx3djs 可以快速将我搭世界场景嵌入自定义 web 程序中。并提供操作场景、模型的 js 方法,为用户提供简单、高效的二次开发环境。mx3djs 支持以 html 页面直接引用、nodejs + js、nodejs + typescript 等进行开发。
|
|
8
|
+
|
|
9
|
+
查看[快速开始](/started/quickstart.md)了解详情。
|
|
10
|
+
|
|
11
|
+
## 特性
|
|
12
|
+
|
|
13
|
+
- 简单 针对行业话功能化制定 API,只需提供 JSON 数据即可生成对应功能效果
|
|
14
|
+
- 高效 底层采用最高效、高兼容性 WEBGL 引擎,为用户提供流畅、酷炫 3D 项目
|
|
15
|
+
|
|
16
|
+
## 示例
|
|
17
|
+
|
|
18
|
+
可以查看 [案例广场](https://www.wodashijie.com/caseSquare) 来了解更多在使用 mx3djs 创建的 WEB 3D 项目。
|
|
19
|
+
|
|
20
|
+
## 相关网站
|
|
21
|
+
|
|
22
|
+
在[我搭世界](https://www.wodashijie.com)里可以创建 3D 场景。
|
|
23
|
+
|
|
24
|
+
在[官网](https://www.gzmaijing.com)里可以查看公司信息.
|