@divinevoxel/vlox 0.0.72 → 0.0.73
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/Contexts/Render/DivineVoxelEngineRender.d.ts +1 -1
- package/Contexts/World/DivineVoxelEngineWorld.d.ts +1 -1
- package/Init/StartConstructor.js +6 -4
- package/Init/StartWorld.d.ts +1 -1
- package/Mesher/Functions/CompactVoxelMesh.d.ts +2 -2
- package/Mesher/Functions/CompactVoxelMesh.js +1 -1
- package/Mesher/Functions/MeshSection.js +20 -8
- package/Mesher/Functions/MeshTexture.d.ts +1 -1
- package/Mesher/Functions/MeshTexture.js +3 -4
- package/Mesher/Geomtry/Primitives/QuadVertexData.d.ts +12 -10
- package/Mesher/Geomtry/Primitives/QuadVertexData.js +49 -56
- package/Mesher/Geomtry/VoxelGeometryBuilder.d.ts +2 -2
- package/Mesher/Geomtry/VoxelGeometryBuilder.js +2 -2
- package/Mesher/Geomtry/VoxelMesh.d.ts +1 -1
- package/Mesher/Geomtry/VoxelMesh.js +2 -2
- package/Mesher/Geomtry/index.d.ts +0 -1
- package/Mesher/Geomtry/index.js +0 -1
- package/Mesher/InitMesher.js +1 -1
- package/Mesher/InitTask.js +4 -22
- package/Mesher/Models/Common/Calc/FaceDataCalc.d.ts +2 -2
- package/Mesher/Models/Common/Calc/FaceDataCalc.js +37 -30
- package/Mesher/Models/Nodes/Custom/Liquid/FlowGradient.d.ts +2 -2
- package/Mesher/Models/Nodes/Custom/Liquid/FlowGradient.js +1 -1
- package/Mesher/Models/Nodes/Custom/Liquid/LiquidGeomtryNode.js +11 -17
- package/Mesher/Models/Nodes/GeometryNode.d.ts +2 -2
- package/Mesher/Models/Nodes/Ruled/BoxVoxelGeometryNode.d.ts +1 -0
- package/Mesher/Models/Nodes/Ruled/BoxVoxelGeometryNode.js +24 -12
- package/Mesher/{Tools → Models/Protocols}/OutlinedVoxelTool.d.ts +1 -1
- package/Mesher/{Tools → Models/Protocols}/OutlinedVoxelTool.js +1 -1
- package/Mesher/Models/RenderedMaterials.d.ts +6 -0
- package/Mesher/{RenderedMaterials.js → Models/RenderedMaterials.js} +2 -2
- package/Mesher/Models/VoxelConstructor.d.ts +3 -3
- package/Mesher/Models/VoxelGeometryBuilderCacheSpace.d.ts +1 -3
- package/Mesher/Models/VoxelGeometryBuilderCacheSpace.js +0 -23
- package/Mesher/{Tools/VoxelMesherDataTool.d.ts → Models/VoxelModelBuilder.d.ts} +4 -5
- package/Mesher/{Tools/VoxelMesherDataTool.js → Models/VoxelModelBuilder.js} +11 -7
- package/Models/Defaults/CubeVoxelGeometry.js +4 -0
- package/Models/Defaults/CubeVoxelModels.js +344 -344
- package/Models/Defaults/LiquidVoxelModel.js +2 -2
- package/Models/Defaults/PanelVoxelModels.js +432 -432
- package/Models/Defaults/StairVoxelModel.js +576 -576
- package/Models/Examples.js +469 -456
- package/Models/Rules/Functions/BuildFinalInputs.js +9 -7
- package/Models/Rules/Functions/BuildGeomtryInputs.js +8 -5
- package/Models/Rules/Functions/BuildRules.js +2 -2
- package/Models/Rules/{VoxelModelManager.d.ts → VoxelModelRuleBuilderRegister.d.ts} +1 -1
- package/Models/Rules/VoxelModelRuleBuilderRegister.js +178 -0
- package/Models/VoxelModel.types.d.ts +14 -5
- package/Renderer/Classes/SectorMesh.d.ts +3 -4
- package/Renderer/Classes/SectorMesh.js +6 -11
- package/Renderer/InitTasks.js +6 -7
- package/Renderer/MeshManager.js +2 -2
- package/Renderer/MeshRegister.js +2 -1
- package/Settings/EngineSettings.d.ts +1 -1
- package/Settings/EngineSettings.js +3 -5
- package/Settings/EngineSettings.types.d.ts +17 -18
- package/Settings/EngineSettings.types.js +16 -15
- package/Tasks/IWG/IWG.d.ts +2 -1
- package/Tasks/IWG/IWG.js +9 -3
- package/Tasks/IWG/Internal/Classes/BuildQueue.d.ts +11 -0
- package/Tasks/IWG/Internal/Classes/BuildQueue.js +49 -0
- package/Tasks/IWG/Internal/Classes/Generator.d.ts +6 -1
- package/Tasks/IWG/Internal/Classes/Generator.js +13 -1
- package/Tasks/IWG/Internal/Classes/IWGTaskBase.js +2 -2
- package/Tasks/IWG/Internal/Functions/runBuildUpdate.js +21 -2
- package/Tasks/IWG/Internal/IWGTasks.d.ts +0 -4
- package/Tasks/IWG/Internal/IWGTasks.js +0 -10
- package/Tasks/IWG/Internal/IWGTools.d.ts +1 -1
- package/Tasks/IWG/Procedures/SaveAllSectors.js +2 -0
- package/Tasks/Update/UpdateTask.d.ts +3 -1
- package/Tasks/Update/UpdateTask.js +28 -2
- package/Tasks/Update/VoxelUpdate.js +6 -0
- package/Tasks/WorldGeneration/WorldGenBrush.js +1 -1
- package/Templates/Cursor/TemplateCursor.d.ts +2 -2
- package/Templates/Cursor/TemplateCursor.js +1 -2
- package/Templates/VoxelTemplates.types.d.ts +1 -1
- package/Textures/Classes/CompiledTexture.d.ts +18 -0
- package/Textures/Classes/CompiledTexture.js +50 -0
- package/Textures/Classes/CompiledTextureAnimation.d.ts +12 -0
- package/Textures/Classes/CompiledTextureAnimation.js +27 -0
- package/Textures/Classes/TextureAnimationTexture.d.ts +10 -0
- package/Textures/Classes/TextureAnimationTexture.js +32 -0
- package/Textures/Functions/BuildTextureData.d.ts +10 -0
- package/Textures/Functions/BuildTextureData.js +205 -0
- package/Textures/Texture.types.d.ts +50 -64
- package/Textures/TextureManager.d.ts +8 -19
- package/Textures/TextureManager.js +28 -166
- package/Tools/Brush/Brush.d.ts +1 -1
- package/Tools/Brush/Brush.js +39 -7
- package/Util/Binary/BinaryArrays.d.ts +6 -0
- package/Util/Binary/BinaryArrays.js +25 -0
- package/Util/Binary/BinaryBuffer.d.ts +29 -0
- package/Util/Binary/BinaryBuffer.js +130 -0
- package/Util/Binary/{BitArray.d.ts → BinaryFunctions.d.ts} +1 -2
- package/Util/Binary/BinaryFunctions.js +11 -0
- package/Voxels/Cursor/DataCursor.interface.d.ts +5 -0
- package/Voxels/Cursor/VoxelCursor.interface.d.ts +1 -1
- package/Voxels/Cursor/VoxelCursor.interface.js +8 -11
- package/Voxels/Data/VoxelPalettesRegister.d.ts +0 -5
- package/Voxels/Data/VoxelPalettesRegister.js +0 -9
- package/Voxels/Data/VoxelTagsRegister.js +7 -7
- package/Voxels/Functions/BuildStateData.js +9 -9
- package/Voxels/Functions/BuildTagAndPaletteData.js +2 -4
- package/Voxels/InitVoxelData.js +12 -13
- package/Voxels/State/Schema/StateSchema.d.ts +1 -1
- package/Voxels/Types/Voxel.types.d.ts +18 -0
- package/Voxels/Types/Voxel.types.js +6 -2
- package/World/Archive/Archive.types.d.ts +38 -34
- package/World/Archive/Functions/ArchiveArea.js +16 -24
- package/World/Archive/Functions/ArchiveSector.js +477 -192
- package/World/Archive/Functions/ImportSector.d.ts +3 -3
- package/World/Archive/Functions/ImportSector.js +202 -141
- package/World/Archive/Functions/Shared.d.ts +6 -0
- package/World/Archive/Functions/Shared.js +75 -0
- package/World/Archive/InitTasks.js +30 -13
- package/World/Cursor/SectionCursor.d.ts +2 -2
- package/World/Cursor/SectionCursor.js +2 -3
- package/World/Cursor/SectorCursor.d.ts +2 -2
- package/World/Cursor/SectorCursor.js +1 -2
- package/World/Cursor/WorldCursor.d.ts +2 -2
- package/World/Cursor/WorldCursor.js +1 -2
- package/World/Cursor/WorldVoxelCursor.js +1 -0
- package/World/InitTasks.d.ts +1 -1
- package/World/Lock/WorldLock.d.ts +1 -1
- package/World/Section/Section.d.ts +12 -16
- package/World/Section/Section.js +62 -20
- package/World/Section/SectionState.d.ts +10 -0
- package/World/Section/SectionState.js +11 -0
- package/World/Sector/Sector.d.ts +14 -6
- package/World/Sector/Sector.js +67 -17
- package/World/Sector/SectorHeightMap.js +2 -2
- package/World/Sector/SectorState.d.ts +14 -6
- package/World/Sector/SectorState.js +28 -15
- package/World/Types/WorldStorage.interface.js +1 -0
- package/World/WorldRegister.d.ts +4 -0
- package/World/WorldRegister.js +15 -3
- package/World/WorldSpaces.d.ts +4 -0
- package/World/WorldSpaces.js +19 -6
- package/package.json +1 -1
- package/Mesher/Functions/CompactMesh.d.ts +0 -2
- package/Mesher/Functions/CompactMesh.js +0 -42
- package/Mesher/Geomtry/GeometryNormals.d.ts +0 -10
- package/Mesher/Geomtry/GeometryNormals.js +0 -52
- package/Mesher/Geomtry/MeshData.types.d.ts +0 -13
- package/Mesher/Geomtry/MeshData.types.js +0 -6
- package/Mesher/Geomtry/Tools/MesherDataTools.d.ts +0 -7
- package/Mesher/Geomtry/Tools/MesherDataTools.js +0 -12
- package/Mesher/Geomtry/Tools/index.d.ts +0 -1
- package/Mesher/Geomtry/Tools/index.js +0 -1
- package/Mesher/RenderedMaterials.d.ts +0 -6
- package/Models/Rules/VoxelModelManager.js +0 -82
- package/Textures/TextureAnimations.d.ts +0 -4
- package/Textures/TextureAnimations.js +0 -35
- package/Textures/TextureArray.d.ts +0 -47
- package/Textures/TextureArray.js +0 -202
- package/Textures/TextureBuilder.d.ts +0 -13
- package/Textures/TextureBuilder.js +0 -120
- package/Textures/TextureRegister.d.ts +0 -9
- package/Textures/TextureRegister.js +0 -28
- package/Tools/DataCursor.interface.d.ts +0 -5
- package/Tools/DataCursor.interface.js +0 -2
- package/Util/Binary/BitArray.js +0 -16
- package/World/Structs/WorldDataStructProperties.d.ts +0 -8
- package/World/Structs/WorldDataStructProperties.js +0 -9
- /package/Mesher/{Tools → Geomtry}/VoxelMeshBVHBuilder.d.ts +0 -0
- /package/Mesher/{Tools → Geomtry}/VoxelMeshBVHBuilder.js +0 -0
- /package/Mesher/Geomtry/{Buffers.d.ts → VoxelMeshBuffers.d.ts} +0 -0
- /package/Mesher/Geomtry/{Buffers.js → VoxelMeshBuffers.js} +0 -0
- /package/Mesher/{Tools → Geomtry}/VoxelMeshVertexStructCursor.d.ts +0 -0
- /package/Mesher/{Tools → Geomtry}/VoxelMeshVertexStructCursor.js +0 -0
- /package/Mesher/{VoxelShaderData.d.ts → Geomtry/VoxelShaderData.d.ts} +0 -0
- /package/Mesher/{VoxelShaderData.js → Geomtry/VoxelShaderData.js} +0 -0
- /package/{World/Storage/WorldStorage.interface.js → Voxels/Cursor/DataCursor.interface.js} +0 -0
- /package/World/{Storage → Types}/WorldStorage.interface.d.ts +0 -0
package/Models/Examples.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export const chainGeometry = {
|
|
2
2
|
id: "dve_chain",
|
|
3
|
+
divisor: [16, 16, 16],
|
|
3
4
|
doNotBuildRules: true,
|
|
4
5
|
arguments: {
|
|
5
6
|
texture: {
|
|
@@ -10,24 +11,24 @@ export const chainGeometry = {
|
|
|
10
11
|
{
|
|
11
12
|
type: "quad",
|
|
12
13
|
points: [
|
|
13
|
-
[5
|
|
14
|
-
[11
|
|
15
|
-
[11
|
|
16
|
-
[5
|
|
14
|
+
[5, 16, 11],
|
|
15
|
+
[11, 16, 5],
|
|
16
|
+
[11, 0, 5],
|
|
17
|
+
[5, 0, 11],
|
|
17
18
|
],
|
|
18
|
-
uv: [0, 0, 6
|
|
19
|
+
uv: [0, 0, 6, 1],
|
|
19
20
|
texture: "@texture",
|
|
20
21
|
doubleSided: true,
|
|
21
22
|
},
|
|
22
23
|
{
|
|
23
24
|
type: "quad",
|
|
24
25
|
points: [
|
|
25
|
-
[11
|
|
26
|
-
[5
|
|
27
|
-
[5
|
|
28
|
-
[11
|
|
26
|
+
[11, 16, 11],
|
|
27
|
+
[5, 16, 5],
|
|
28
|
+
[5, 0, 5],
|
|
29
|
+
[11, 0, 11],
|
|
29
30
|
],
|
|
30
|
-
uv: [0, 0, 6
|
|
31
|
+
uv: [0, 0, 6, 16],
|
|
31
32
|
texture: "@texture",
|
|
32
33
|
doubleSided: true,
|
|
33
34
|
},
|
|
@@ -59,7 +60,7 @@ export const chainModel = {
|
|
|
59
60
|
id: "main",
|
|
60
61
|
geometryId: "dve_chain",
|
|
61
62
|
inputs: {
|
|
62
|
-
|
|
63
|
+
texture: "@texture",
|
|
63
64
|
},
|
|
64
65
|
},
|
|
65
66
|
],
|
|
@@ -67,9 +68,9 @@ export const chainModel = {
|
|
|
67
68
|
{
|
|
68
69
|
id: "main",
|
|
69
70
|
geometryId: "dve_chain",
|
|
70
|
-
rotation: [
|
|
71
|
+
rotation: [90, 0, 0],
|
|
71
72
|
inputs: {
|
|
72
|
-
|
|
73
|
+
texture: "@texture",
|
|
73
74
|
},
|
|
74
75
|
},
|
|
75
76
|
],
|
|
@@ -77,9 +78,9 @@ export const chainModel = {
|
|
|
77
78
|
{
|
|
78
79
|
id: "main",
|
|
79
80
|
geometryId: "dve_chain",
|
|
80
|
-
rotation: [0, 0,
|
|
81
|
+
rotation: [0, 0, 90],
|
|
81
82
|
inputs: {
|
|
82
|
-
|
|
83
|
+
texture: "@texture",
|
|
83
84
|
},
|
|
84
85
|
},
|
|
85
86
|
],
|
|
@@ -87,6 +88,7 @@ export const chainModel = {
|
|
|
87
88
|
};
|
|
88
89
|
export const carpetGeometry = {
|
|
89
90
|
id: "dve_carpet",
|
|
91
|
+
divisor: [16, 16, 16],
|
|
90
92
|
arguments: {
|
|
91
93
|
topBottomTex: {
|
|
92
94
|
type: "texture",
|
|
@@ -100,32 +102,32 @@ export const carpetGeometry = {
|
|
|
100
102
|
type: "box",
|
|
101
103
|
points: [
|
|
102
104
|
[0, 0, 0],
|
|
103
|
-
[
|
|
105
|
+
[16, 1, 16],
|
|
104
106
|
],
|
|
105
107
|
faces: {
|
|
106
108
|
up: {
|
|
107
109
|
texture: "@topBottomTex",
|
|
108
|
-
uv: [0, 0,
|
|
110
|
+
uv: [0, 0, 16, 16],
|
|
109
111
|
},
|
|
110
112
|
down: {
|
|
111
113
|
texture: "@topBottomTex",
|
|
112
|
-
uv: [0, 0,
|
|
114
|
+
uv: [0, 0, 16, 16],
|
|
113
115
|
},
|
|
114
116
|
north: {
|
|
115
117
|
texture: "@sideTex",
|
|
116
|
-
uv: [0, 0,
|
|
118
|
+
uv: [0, 0, 16, 1],
|
|
117
119
|
},
|
|
118
120
|
south: {
|
|
119
121
|
texture: "@sideTex",
|
|
120
|
-
uv: [0, 0,
|
|
122
|
+
uv: [0, 0, 16, 1],
|
|
121
123
|
},
|
|
122
124
|
east: {
|
|
123
125
|
texture: "@sideTex",
|
|
124
|
-
uv: [0, 0,
|
|
126
|
+
uv: [0, 0, 16, 1],
|
|
125
127
|
},
|
|
126
128
|
west: {
|
|
127
129
|
texture: "@sideTex",
|
|
128
|
-
uv: [0, 0,
|
|
130
|
+
uv: [0, 0, 16, 1],
|
|
129
131
|
},
|
|
130
132
|
},
|
|
131
133
|
},
|
|
@@ -150,8 +152,8 @@ export const carpetModel = {
|
|
|
150
152
|
id: "main",
|
|
151
153
|
geometryId: "dve_carpet",
|
|
152
154
|
inputs: {
|
|
153
|
-
|
|
154
|
-
|
|
155
|
+
topBottomTex: "@topBottomTex",
|
|
156
|
+
sideTex: "@sideTex",
|
|
155
157
|
},
|
|
156
158
|
},
|
|
157
159
|
],
|
|
@@ -159,6 +161,7 @@ export const carpetModel = {
|
|
|
159
161
|
};
|
|
160
162
|
export const fencePost = {
|
|
161
163
|
id: "dve_fence_post",
|
|
164
|
+
divisor: [16, 16, 16],
|
|
162
165
|
arguments: {
|
|
163
166
|
upTex: {
|
|
164
167
|
type: "texture",
|
|
@@ -183,33 +186,33 @@ export const fencePost = {
|
|
|
183
186
|
{
|
|
184
187
|
type: "box",
|
|
185
188
|
points: [
|
|
186
|
-
[6
|
|
187
|
-
[10
|
|
189
|
+
[6, 0, 6],
|
|
190
|
+
[10, 16, 10],
|
|
188
191
|
],
|
|
189
192
|
faces: {
|
|
190
193
|
up: {
|
|
191
194
|
texture: "@upTex",
|
|
192
|
-
uv: [6
|
|
195
|
+
uv: [6, 6, 10, 10],
|
|
193
196
|
},
|
|
194
197
|
down: {
|
|
195
198
|
texture: "@downTex",
|
|
196
|
-
uv: [6
|
|
199
|
+
uv: [6, 6, 10, 10],
|
|
197
200
|
},
|
|
198
201
|
north: {
|
|
199
202
|
texture: "@northTex",
|
|
200
|
-
uv: [6
|
|
203
|
+
uv: [6, 0, 10, 16],
|
|
201
204
|
},
|
|
202
205
|
south: {
|
|
203
206
|
texture: "@southTex",
|
|
204
|
-
uv: [6
|
|
207
|
+
uv: [6, 0, 10, 16],
|
|
205
208
|
},
|
|
206
209
|
east: {
|
|
207
210
|
texture: "@eastTex",
|
|
208
|
-
uv: [6
|
|
211
|
+
uv: [6, 0, 10, 16],
|
|
209
212
|
},
|
|
210
213
|
west: {
|
|
211
214
|
texture: "@westTex",
|
|
212
|
-
uv: [6
|
|
215
|
+
uv: [6, 0, 10, 16],
|
|
213
216
|
},
|
|
214
217
|
},
|
|
215
218
|
},
|
|
@@ -217,6 +220,7 @@ export const fencePost = {
|
|
|
217
220
|
};
|
|
218
221
|
export const fenceEastWest = {
|
|
219
222
|
id: "dve_fence_east_west",
|
|
223
|
+
divisor: [16, 16, 16],
|
|
220
224
|
arguments: {
|
|
221
225
|
upTex: {
|
|
222
226
|
type: "texture",
|
|
@@ -241,66 +245,66 @@ export const fenceEastWest = {
|
|
|
241
245
|
{
|
|
242
246
|
type: "box",
|
|
243
247
|
points: [
|
|
244
|
-
[0, 12
|
|
245
|
-
[6
|
|
248
|
+
[0, 12, 7],
|
|
249
|
+
[6, 15, 9],
|
|
246
250
|
],
|
|
247
251
|
faces: {
|
|
248
252
|
up: {
|
|
249
253
|
texture: "@upTex",
|
|
250
|
-
uv: [0, 7
|
|
254
|
+
uv: [0, 7, 7, 9],
|
|
251
255
|
},
|
|
252
256
|
down: {
|
|
253
257
|
texture: "@downTex",
|
|
254
|
-
uv: [0, 7
|
|
258
|
+
uv: [0, 7, 7, 9],
|
|
255
259
|
},
|
|
256
260
|
north: {
|
|
257
261
|
texture: "@northTex",
|
|
258
|
-
uv: [0, 7
|
|
262
|
+
uv: [0, 7, 6, 10],
|
|
259
263
|
},
|
|
260
264
|
south: {
|
|
261
265
|
texture: "@southTex",
|
|
262
|
-
uv: [0, 7
|
|
266
|
+
uv: [0, 7, 6, 10],
|
|
263
267
|
},
|
|
264
268
|
east: {
|
|
265
269
|
texture: "@eastTex",
|
|
266
|
-
uv: [0, 7
|
|
270
|
+
uv: [0, 7, 6, 10],
|
|
267
271
|
},
|
|
268
272
|
west: {
|
|
269
273
|
texture: "@westTex",
|
|
270
|
-
uv: [0, 7
|
|
274
|
+
uv: [0, 7, 6, 10],
|
|
271
275
|
},
|
|
272
276
|
},
|
|
273
277
|
},
|
|
274
278
|
{
|
|
275
279
|
type: "box",
|
|
276
280
|
points: [
|
|
277
|
-
[0, 6
|
|
278
|
-
[6
|
|
281
|
+
[0, 6, 7],
|
|
282
|
+
[6, 9, 9],
|
|
279
283
|
],
|
|
280
284
|
faces: {
|
|
281
285
|
up: {
|
|
282
286
|
texture: "@upTex",
|
|
283
|
-
uv: [0, 7
|
|
287
|
+
uv: [0, 7, 7, 9],
|
|
284
288
|
},
|
|
285
289
|
down: {
|
|
286
290
|
texture: "@downTex",
|
|
287
|
-
uv: [0, 7
|
|
291
|
+
uv: [0, 7, 7, 9],
|
|
288
292
|
},
|
|
289
293
|
north: {
|
|
290
294
|
texture: "@northTex",
|
|
291
|
-
uv: [0, 7
|
|
295
|
+
uv: [0, 7, 6, 10],
|
|
292
296
|
},
|
|
293
297
|
south: {
|
|
294
298
|
texture: "@southTex",
|
|
295
|
-
uv: [0, 7
|
|
299
|
+
uv: [0, 7, 6, 10],
|
|
296
300
|
},
|
|
297
301
|
east: {
|
|
298
302
|
texture: "@eastTex",
|
|
299
|
-
uv: [0, 7
|
|
303
|
+
uv: [0, 7, 6, 10],
|
|
300
304
|
},
|
|
301
305
|
west: {
|
|
302
306
|
texture: "@westTex",
|
|
303
|
-
uv: [0, 7
|
|
307
|
+
uv: [0, 7, 6, 10],
|
|
304
308
|
},
|
|
305
309
|
},
|
|
306
310
|
},
|
|
@@ -308,6 +312,7 @@ export const fenceEastWest = {
|
|
|
308
312
|
};
|
|
309
313
|
export const fenceNorthsouth = {
|
|
310
314
|
id: "dve_fence_north_south",
|
|
315
|
+
divisor: [16, 16, 16],
|
|
311
316
|
arguments: {
|
|
312
317
|
upTex: {
|
|
313
318
|
type: "texture",
|
|
@@ -332,66 +337,66 @@ export const fenceNorthsouth = {
|
|
|
332
337
|
{
|
|
333
338
|
type: "box",
|
|
334
339
|
points: [
|
|
335
|
-
[7
|
|
336
|
-
[9
|
|
340
|
+
[7, 12, 0],
|
|
341
|
+
[9, 15, 6],
|
|
337
342
|
],
|
|
338
343
|
faces: {
|
|
339
344
|
up: {
|
|
340
345
|
texture: "@upTex",
|
|
341
|
-
uv: [7
|
|
346
|
+
uv: [7, 0, 9, 7],
|
|
342
347
|
},
|
|
343
348
|
down: {
|
|
344
349
|
texture: "@downTex",
|
|
345
|
-
uv: [7
|
|
350
|
+
uv: [7, 0, 9, 7],
|
|
346
351
|
},
|
|
347
352
|
north: {
|
|
348
353
|
texture: "@northTex",
|
|
349
|
-
uv: [0, 7
|
|
354
|
+
uv: [0, 7, 6, 10],
|
|
350
355
|
},
|
|
351
356
|
south: {
|
|
352
357
|
texture: "@southTex",
|
|
353
|
-
uv: [0, 7
|
|
358
|
+
uv: [0, 7, 6, 10],
|
|
354
359
|
},
|
|
355
360
|
east: {
|
|
356
361
|
texture: "@eastTex",
|
|
357
|
-
uv: [0, 7
|
|
362
|
+
uv: [0, 7, 6, 10],
|
|
358
363
|
},
|
|
359
364
|
west: {
|
|
360
365
|
texture: "@westTex",
|
|
361
|
-
uv: [0, 7
|
|
366
|
+
uv: [0, 7, 6, 10],
|
|
362
367
|
},
|
|
363
368
|
},
|
|
364
369
|
},
|
|
365
370
|
{
|
|
366
371
|
type: "box",
|
|
367
372
|
points: [
|
|
368
|
-
[7
|
|
369
|
-
[9
|
|
373
|
+
[7, 6, 0],
|
|
374
|
+
[9, 9, 6],
|
|
370
375
|
],
|
|
371
376
|
faces: {
|
|
372
377
|
up: {
|
|
373
378
|
texture: "@upTex",
|
|
374
|
-
uv: [7
|
|
379
|
+
uv: [7, 0, 9, 7],
|
|
375
380
|
},
|
|
376
381
|
down: {
|
|
377
382
|
texture: "@downTex",
|
|
378
|
-
uv: [7
|
|
383
|
+
uv: [7, 0, 9, 7],
|
|
379
384
|
},
|
|
380
385
|
north: {
|
|
381
386
|
texture: "@northTex",
|
|
382
|
-
uv: [0, 7
|
|
387
|
+
uv: [0, 7, 6, 10],
|
|
383
388
|
},
|
|
384
389
|
south: {
|
|
385
390
|
texture: "@southTex",
|
|
386
|
-
uv: [0, 7
|
|
391
|
+
uv: [0, 7, 6, 10],
|
|
387
392
|
},
|
|
388
393
|
east: {
|
|
389
394
|
texture: "@eastTex",
|
|
390
|
-
uv: [0, 7
|
|
395
|
+
uv: [0, 7, 6, 10],
|
|
391
396
|
},
|
|
392
397
|
west: {
|
|
393
398
|
texture: "@westTex",
|
|
394
|
-
uv: [0, 7
|
|
399
|
+
uv: [0, 7, 6, 10],
|
|
395
400
|
},
|
|
396
401
|
},
|
|
397
402
|
},
|
|
@@ -464,12 +469,12 @@ export const fence = {
|
|
|
464
469
|
id: "fence_connection_south",
|
|
465
470
|
geometryId: "dve_fence_north_south",
|
|
466
471
|
inputs: {
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
472
|
+
upTex: "@upTex",
|
|
473
|
+
downTex: "@downTex",
|
|
474
|
+
northTex: "@northTex",
|
|
475
|
+
southTex: "@southTex",
|
|
476
|
+
eastTex: "@eastTex",
|
|
477
|
+
westTex: "@westTex",
|
|
473
478
|
},
|
|
474
479
|
},
|
|
475
480
|
],
|
|
@@ -477,29 +482,29 @@ export const fence = {
|
|
|
477
482
|
{
|
|
478
483
|
id: "fence_connection_north",
|
|
479
484
|
geometryId: "dve_fence_north_south",
|
|
480
|
-
position: [0, 0, 10
|
|
485
|
+
position: [0, 0, 10],
|
|
481
486
|
inputs: {
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
487
|
+
upTex: "@upTex",
|
|
488
|
+
downTex: "@downTex",
|
|
489
|
+
northTex: "@northTex",
|
|
490
|
+
southTex: "@southTex",
|
|
491
|
+
eastTex: "@eastTex",
|
|
492
|
+
westTex: "@westTex",
|
|
488
493
|
},
|
|
489
494
|
},
|
|
490
495
|
],
|
|
491
496
|
"same-east=true": [
|
|
492
497
|
{
|
|
493
498
|
id: "fence_connection_east",
|
|
494
|
-
position: [10
|
|
499
|
+
position: [10, 0, 0],
|
|
495
500
|
geometryId: "dve_fence_east_west",
|
|
496
501
|
inputs: {
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
502
|
+
upTex: "@upTex",
|
|
503
|
+
downTex: "@downTex",
|
|
504
|
+
northTex: "@northTex",
|
|
505
|
+
southTex: "@southTex",
|
|
506
|
+
eastTex: "@eastTex",
|
|
507
|
+
westTex: "@westTex",
|
|
503
508
|
},
|
|
504
509
|
},
|
|
505
510
|
],
|
|
@@ -508,12 +513,12 @@ export const fence = {
|
|
|
508
513
|
id: "fence_connection_west",
|
|
509
514
|
geometryId: "dve_fence_east_west",
|
|
510
515
|
inputs: {
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
516
|
+
upTex: "@upTex",
|
|
517
|
+
downTex: "@downTex",
|
|
518
|
+
northTex: "@northTex",
|
|
519
|
+
southTex: "@southTex",
|
|
520
|
+
eastTex: "@eastTex",
|
|
521
|
+
westTex: "@westTex",
|
|
517
522
|
},
|
|
518
523
|
},
|
|
519
524
|
],
|
|
@@ -524,12 +529,12 @@ export const fence = {
|
|
|
524
529
|
id: "fence_post",
|
|
525
530
|
geometryId: "dve_fence_post",
|
|
526
531
|
inputs: {
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
532
|
+
upTex: "@upTex",
|
|
533
|
+
downTex: "@downTex",
|
|
534
|
+
northTex: "@northTex",
|
|
535
|
+
southTex: "@southTex",
|
|
536
|
+
eastTex: "@eastTex",
|
|
537
|
+
westTex: "@westTex",
|
|
533
538
|
},
|
|
534
539
|
},
|
|
535
540
|
],
|
|
@@ -537,6 +542,7 @@ export const fence = {
|
|
|
537
542
|
};
|
|
538
543
|
export const candlesGeometry1 = {
|
|
539
544
|
id: "dve_candle_state_1",
|
|
545
|
+
divisor: [16, 16, 16],
|
|
540
546
|
doNotBuildRules: true,
|
|
541
547
|
arguments: {
|
|
542
548
|
candleTexture: {
|
|
@@ -547,57 +553,57 @@ export const candlesGeometry1 = {
|
|
|
547
553
|
{
|
|
548
554
|
type: "box",
|
|
549
555
|
points: [
|
|
550
|
-
[7
|
|
551
|
-
[9
|
|
556
|
+
[7, 0, 7],
|
|
557
|
+
[9, 6, 9],
|
|
552
558
|
],
|
|
553
559
|
faces: {
|
|
554
560
|
up: {
|
|
555
561
|
texture: "@candleTexture",
|
|
556
|
-
uv: [10
|
|
562
|
+
uv: [10, 13, 11, 15],
|
|
557
563
|
},
|
|
558
564
|
down: {
|
|
559
565
|
texture: "@candleTexture",
|
|
560
|
-
uv: [9
|
|
566
|
+
uv: [9, 12, 12, 16],
|
|
561
567
|
},
|
|
562
568
|
north: {
|
|
563
569
|
texture: "@candleTexture",
|
|
564
|
-
uv: [0
|
|
570
|
+
uv: [0, 10, 2, 16],
|
|
565
571
|
},
|
|
566
572
|
south: {
|
|
567
573
|
texture: "@candleTexture",
|
|
568
|
-
uv: [3
|
|
574
|
+
uv: [3, 10, 5, 16],
|
|
569
575
|
},
|
|
570
576
|
east: {
|
|
571
577
|
texture: "@candleTexture",
|
|
572
|
-
uv: [6
|
|
578
|
+
uv: [6, 10, 8, 16],
|
|
573
579
|
},
|
|
574
580
|
west: {
|
|
575
581
|
texture: "@candleTexture",
|
|
576
|
-
uv: [0
|
|
582
|
+
uv: [0, 10, 2, 16],
|
|
577
583
|
},
|
|
578
584
|
},
|
|
579
585
|
},
|
|
580
586
|
{
|
|
581
587
|
type: "quad",
|
|
582
588
|
points: [
|
|
583
|
-
[7
|
|
584
|
-
[9
|
|
585
|
-
[9
|
|
586
|
-
[7
|
|
589
|
+
[7, 8, 9],
|
|
590
|
+
[9, 8, 7],
|
|
591
|
+
[9, 6, 7],
|
|
592
|
+
[7, 6, 9],
|
|
587
593
|
],
|
|
588
|
-
uv: [14
|
|
594
|
+
uv: [14, 14, 16, 16],
|
|
589
595
|
texture: "@candleTexture",
|
|
590
596
|
doubleSided: true,
|
|
591
597
|
},
|
|
592
598
|
{
|
|
593
599
|
type: "quad",
|
|
594
600
|
points: [
|
|
595
|
-
[9
|
|
596
|
-
[7
|
|
597
|
-
[7
|
|
598
|
-
[9
|
|
601
|
+
[9, 8, 9],
|
|
602
|
+
[7, 8, 7],
|
|
603
|
+
[7, 6, 7],
|
|
604
|
+
[9, 6, 9],
|
|
599
605
|
],
|
|
600
|
-
uv: [14
|
|
606
|
+
uv: [14, 14, 16, 16],
|
|
601
607
|
texture: "@candleTexture",
|
|
602
608
|
doubleSided: true,
|
|
603
609
|
},
|
|
@@ -606,6 +612,7 @@ export const candlesGeometry1 = {
|
|
|
606
612
|
export const candlesGeometry2 = {
|
|
607
613
|
id: "dve_candle_state_2",
|
|
608
614
|
doNotBuildRules: true,
|
|
615
|
+
divisor: [16, 16, 16],
|
|
609
616
|
arguments: {
|
|
610
617
|
candleTexture: {
|
|
611
618
|
type: "texture",
|
|
@@ -615,57 +622,57 @@ export const candlesGeometry2 = {
|
|
|
615
622
|
{
|
|
616
623
|
type: "box",
|
|
617
624
|
points: [
|
|
618
|
-
[7
|
|
619
|
-
[9
|
|
625
|
+
[7, 0, 7],
|
|
626
|
+
[9, 5, 9],
|
|
620
627
|
],
|
|
621
628
|
faces: {
|
|
622
629
|
up: {
|
|
623
630
|
texture: "@candleTexture",
|
|
624
|
-
uv: [10
|
|
631
|
+
uv: [10, 13, 11, 15],
|
|
625
632
|
},
|
|
626
633
|
down: {
|
|
627
634
|
texture: "@candleTexture",
|
|
628
|
-
uv: [9
|
|
635
|
+
uv: [9, 12, 12, 16],
|
|
629
636
|
},
|
|
630
637
|
north: {
|
|
631
638
|
texture: "@candleTexture",
|
|
632
|
-
uv: [0
|
|
639
|
+
uv: [0, 11, 2, 16],
|
|
633
640
|
},
|
|
634
641
|
south: {
|
|
635
642
|
texture: "@candleTexture",
|
|
636
|
-
uv: [3
|
|
643
|
+
uv: [3, 11, 5, 16],
|
|
637
644
|
},
|
|
638
645
|
east: {
|
|
639
646
|
texture: "@candleTexture",
|
|
640
|
-
uv: [6
|
|
647
|
+
uv: [6, 11, 8, 16],
|
|
641
648
|
},
|
|
642
649
|
west: {
|
|
643
650
|
texture: "@candleTexture",
|
|
644
|
-
uv: [0
|
|
651
|
+
uv: [0, 11, 2, 16],
|
|
645
652
|
},
|
|
646
653
|
},
|
|
647
654
|
},
|
|
648
655
|
{
|
|
649
656
|
type: "quad",
|
|
650
657
|
points: [
|
|
651
|
-
[7
|
|
652
|
-
[9
|
|
653
|
-
[9
|
|
654
|
-
[7
|
|
658
|
+
[7, 7, 9],
|
|
659
|
+
[9, 7, 7],
|
|
660
|
+
[9, 5, 7],
|
|
661
|
+
[7, 5, 9],
|
|
655
662
|
],
|
|
656
|
-
uv: [14
|
|
663
|
+
uv: [14, 14, 16, 16],
|
|
657
664
|
texture: "@candleTexture",
|
|
658
665
|
doubleSided: true,
|
|
659
666
|
},
|
|
660
667
|
{
|
|
661
668
|
type: "quad",
|
|
662
669
|
points: [
|
|
663
|
-
[9
|
|
664
|
-
[7
|
|
665
|
-
[7
|
|
666
|
-
[9
|
|
670
|
+
[9, 7, 9],
|
|
671
|
+
[7, 7, 7],
|
|
672
|
+
[7, 5, 7],
|
|
673
|
+
[9, 5, 9],
|
|
667
674
|
],
|
|
668
|
-
uv: [14
|
|
675
|
+
uv: [14, 14, 16, 16],
|
|
669
676
|
texture: "@candleTexture",
|
|
670
677
|
doubleSided: true,
|
|
671
678
|
},
|
|
@@ -674,6 +681,7 @@ export const candlesGeometry2 = {
|
|
|
674
681
|
export const candlesGeometry3 = {
|
|
675
682
|
id: "dve_candle_state_3",
|
|
676
683
|
doNotBuildRules: true,
|
|
684
|
+
divisor: [16, 16, 16],
|
|
677
685
|
arguments: {
|
|
678
686
|
candleTexture: {
|
|
679
687
|
type: "texture",
|
|
@@ -683,57 +691,57 @@ export const candlesGeometry3 = {
|
|
|
683
691
|
{
|
|
684
692
|
type: "box",
|
|
685
693
|
points: [
|
|
686
|
-
[7
|
|
687
|
-
[9
|
|
694
|
+
[7, 0, 7],
|
|
695
|
+
[9, 4, 9],
|
|
688
696
|
],
|
|
689
697
|
faces: {
|
|
690
698
|
up: {
|
|
691
699
|
texture: "@candleTexture",
|
|
692
|
-
uv: [10
|
|
700
|
+
uv: [10, 13, 11, 15],
|
|
693
701
|
},
|
|
694
702
|
down: {
|
|
695
703
|
texture: "@candleTexture",
|
|
696
|
-
uv: [9
|
|
704
|
+
uv: [9, 12, 12, 16],
|
|
697
705
|
},
|
|
698
706
|
north: {
|
|
699
707
|
texture: "@candleTexture",
|
|
700
|
-
uv: [0
|
|
708
|
+
uv: [0, 12, 2, 16],
|
|
701
709
|
},
|
|
702
710
|
south: {
|
|
703
711
|
texture: "@candleTexture",
|
|
704
|
-
uv: [3
|
|
712
|
+
uv: [3, 12, 5, 16],
|
|
705
713
|
},
|
|
706
714
|
east: {
|
|
707
715
|
texture: "@candleTexture",
|
|
708
|
-
uv: [6
|
|
716
|
+
uv: [6, 12, 8, 16],
|
|
709
717
|
},
|
|
710
718
|
west: {
|
|
711
719
|
texture: "@candleTexture",
|
|
712
|
-
uv: [0
|
|
720
|
+
uv: [0, 12, 2, 16],
|
|
713
721
|
},
|
|
714
722
|
},
|
|
715
723
|
},
|
|
716
724
|
{
|
|
717
725
|
type: "quad",
|
|
718
726
|
points: [
|
|
719
|
-
[7
|
|
720
|
-
[9
|
|
721
|
-
[9
|
|
722
|
-
[7
|
|
727
|
+
[7, 6, 9],
|
|
728
|
+
[9, 6, 7],
|
|
729
|
+
[9, 4, 7],
|
|
730
|
+
[7, 4, 9],
|
|
723
731
|
],
|
|
724
|
-
uv: [14
|
|
732
|
+
uv: [14, 14, 16, 16],
|
|
725
733
|
texture: "@candleTexture",
|
|
726
734
|
doubleSided: true,
|
|
727
735
|
},
|
|
728
736
|
{
|
|
729
737
|
type: "quad",
|
|
730
738
|
points: [
|
|
731
|
-
[9
|
|
732
|
-
[7
|
|
733
|
-
[7
|
|
734
|
-
[9
|
|
739
|
+
[9, 6, 9],
|
|
740
|
+
[7, 6, 7],
|
|
741
|
+
[7, 4, 7],
|
|
742
|
+
[9, 4, 9],
|
|
735
743
|
],
|
|
736
|
-
uv: [14
|
|
744
|
+
uv: [14, 14, 16, 16],
|
|
737
745
|
texture: "@candleTexture",
|
|
738
746
|
doubleSided: true,
|
|
739
747
|
},
|
|
@@ -742,6 +750,7 @@ export const candlesGeometry3 = {
|
|
|
742
750
|
export const candlesGeometry4 = {
|
|
743
751
|
id: "dve_candle_state_4",
|
|
744
752
|
doNotBuildRules: true,
|
|
753
|
+
divisor: [16, 16, 16],
|
|
745
754
|
arguments: {
|
|
746
755
|
candleTexture: {
|
|
747
756
|
type: "texture",
|
|
@@ -751,57 +760,57 @@ export const candlesGeometry4 = {
|
|
|
751
760
|
{
|
|
752
761
|
type: "box",
|
|
753
762
|
points: [
|
|
754
|
-
[7
|
|
755
|
-
[9
|
|
763
|
+
[7, 0, 7],
|
|
764
|
+
[9, 3, 9],
|
|
756
765
|
],
|
|
757
766
|
faces: {
|
|
758
767
|
up: {
|
|
759
768
|
texture: "@candleTexture",
|
|
760
|
-
uv: [10
|
|
769
|
+
uv: [10, 13, 11, 15],
|
|
761
770
|
},
|
|
762
771
|
down: {
|
|
763
772
|
texture: "@candleTexture",
|
|
764
|
-
uv: [9
|
|
773
|
+
uv: [9, 12, 12, 1],
|
|
765
774
|
},
|
|
766
775
|
north: {
|
|
767
776
|
texture: "@candleTexture",
|
|
768
|
-
uv: [0
|
|
777
|
+
uv: [0, 13, 2, 1],
|
|
769
778
|
},
|
|
770
779
|
south: {
|
|
771
780
|
texture: "@candleTexture",
|
|
772
|
-
uv: [3
|
|
781
|
+
uv: [3, 13, 5, 1],
|
|
773
782
|
},
|
|
774
783
|
east: {
|
|
775
784
|
texture: "@candleTexture",
|
|
776
|
-
uv: [6
|
|
785
|
+
uv: [6, 13, 8, 1],
|
|
777
786
|
},
|
|
778
787
|
west: {
|
|
779
788
|
texture: "@candleTexture",
|
|
780
|
-
uv: [0
|
|
789
|
+
uv: [0, 13, 2, 1],
|
|
781
790
|
},
|
|
782
791
|
},
|
|
783
792
|
},
|
|
784
793
|
{
|
|
785
794
|
type: "quad",
|
|
786
795
|
points: [
|
|
787
|
-
[7
|
|
788
|
-
[9
|
|
789
|
-
[9
|
|
790
|
-
[7
|
|
796
|
+
[7, 5, 9],
|
|
797
|
+
[9, 5, 7],
|
|
798
|
+
[9, 3, 7],
|
|
799
|
+
[7, 3, 9],
|
|
791
800
|
],
|
|
792
|
-
uv: [14
|
|
801
|
+
uv: [14, 14, 1, 1],
|
|
793
802
|
texture: "@candleTexture",
|
|
794
803
|
doubleSided: true,
|
|
795
804
|
},
|
|
796
805
|
{
|
|
797
806
|
type: "quad",
|
|
798
807
|
points: [
|
|
799
|
-
[9
|
|
800
|
-
[7
|
|
801
|
-
[7
|
|
802
|
-
[9
|
|
808
|
+
[9, 5, 9],
|
|
809
|
+
[7, 5, 7],
|
|
810
|
+
[7, 3, 7],
|
|
811
|
+
[9, 3, 9],
|
|
803
812
|
],
|
|
804
|
-
uv: [14
|
|
813
|
+
uv: [14, 14, 1, 1],
|
|
805
814
|
texture: "@candleTexture",
|
|
806
815
|
doubleSided: true,
|
|
807
816
|
},
|
|
@@ -809,6 +818,7 @@ export const candlesGeometry4 = {
|
|
|
809
818
|
};
|
|
810
819
|
export const candlesModel = {
|
|
811
820
|
id: "dve_candle",
|
|
821
|
+
divisor: [16, 16, 16],
|
|
812
822
|
arguments: {
|
|
813
823
|
candleTexture: {
|
|
814
824
|
type: "texture",
|
|
@@ -838,21 +848,21 @@ export const candlesModel = {
|
|
|
838
848
|
type: "fx-points",
|
|
839
849
|
effectId: "candle_particles",
|
|
840
850
|
values: {
|
|
841
|
-
"num_candles=0,lit=true": [[8
|
|
851
|
+
"num_candles=0,lit=true": [[8, 8.5, 8]],
|
|
842
852
|
"num_candles=1,lit=true": [
|
|
843
|
-
[8
|
|
844
|
-
[8
|
|
853
|
+
[8 + -2, 8.5, 8],
|
|
854
|
+
[8 + 2, 8.5, 8],
|
|
845
855
|
],
|
|
846
856
|
"num_candles=2,lit=true": [
|
|
847
|
-
[8
|
|
848
|
-
[8
|
|
849
|
-
[8
|
|
857
|
+
[8 + -2, 8.5, 8 + 2],
|
|
858
|
+
[8 + 2, 7.5, 8 + 2],
|
|
859
|
+
[8 + 2, 6.5, 8 + -2],
|
|
850
860
|
],
|
|
851
861
|
"num_candles=3,lit=true": [
|
|
852
|
-
[8
|
|
853
|
-
[8
|
|
854
|
-
[8
|
|
855
|
-
[8
|
|
862
|
+
[8 + -2, 8.5, 8 + 2],
|
|
863
|
+
[8 + 2, 7.5, 8 + 2],
|
|
864
|
+
[8 + 2, 6.5, 8 + -2],
|
|
865
|
+
[8 + -2, 5.5, 8 + -2],
|
|
856
866
|
],
|
|
857
867
|
},
|
|
858
868
|
},
|
|
@@ -878,7 +888,7 @@ export const candlesModel = {
|
|
|
878
888
|
id: "candel_1",
|
|
879
889
|
geometryId: "dve_candle_state_1",
|
|
880
890
|
inputs: {
|
|
881
|
-
|
|
891
|
+
candleTexture: "@candleTexture",
|
|
882
892
|
},
|
|
883
893
|
},
|
|
884
894
|
],
|
|
@@ -886,17 +896,17 @@ export const candlesModel = {
|
|
|
886
896
|
{
|
|
887
897
|
id: "candel_1",
|
|
888
898
|
geometryId: "dve_candle_state_1",
|
|
889
|
-
position: [-2
|
|
899
|
+
position: [-2, 0, 0],
|
|
890
900
|
inputs: {
|
|
891
|
-
|
|
901
|
+
candleTexture: "@candleTexture",
|
|
892
902
|
},
|
|
893
903
|
},
|
|
894
904
|
{
|
|
895
905
|
id: "candel_2",
|
|
896
906
|
geometryId: "dve_candle_state_2",
|
|
897
|
-
position: [2
|
|
907
|
+
position: [2, 0, 0],
|
|
898
908
|
inputs: {
|
|
899
|
-
|
|
909
|
+
candleTexture: "@candleTexture",
|
|
900
910
|
},
|
|
901
911
|
},
|
|
902
912
|
],
|
|
@@ -904,25 +914,25 @@ export const candlesModel = {
|
|
|
904
914
|
{
|
|
905
915
|
id: "candel_1",
|
|
906
916
|
geometryId: "dve_candle_state_1",
|
|
907
|
-
position: [-2
|
|
917
|
+
position: [-2, 0, 2],
|
|
908
918
|
inputs: {
|
|
909
|
-
|
|
919
|
+
candleTexture: "@candleTexture",
|
|
910
920
|
},
|
|
911
921
|
},
|
|
912
922
|
{
|
|
913
923
|
id: "candel_2",
|
|
914
924
|
geometryId: "dve_candle_state_2",
|
|
915
|
-
position: [2
|
|
925
|
+
position: [2, 0, 2],
|
|
916
926
|
inputs: {
|
|
917
|
-
|
|
927
|
+
candleTexture: "@candleTexture",
|
|
918
928
|
},
|
|
919
929
|
},
|
|
920
930
|
{
|
|
921
931
|
id: "candel_3",
|
|
922
932
|
geometryId: "dve_candle_state_3",
|
|
923
|
-
position: [2
|
|
933
|
+
position: [2, 0, -2],
|
|
924
934
|
inputs: {
|
|
925
|
-
|
|
935
|
+
candleTexture: "@candleTexture",
|
|
926
936
|
},
|
|
927
937
|
},
|
|
928
938
|
],
|
|
@@ -930,33 +940,33 @@ export const candlesModel = {
|
|
|
930
940
|
{
|
|
931
941
|
id: "candel_1",
|
|
932
942
|
geometryId: "dve_candle_state_1",
|
|
933
|
-
position: [-2
|
|
943
|
+
position: [-2, 0, 2],
|
|
934
944
|
inputs: {
|
|
935
|
-
|
|
945
|
+
candleTexture: "@candleTexture",
|
|
936
946
|
},
|
|
937
947
|
},
|
|
938
948
|
{
|
|
939
949
|
id: "candel_2",
|
|
940
950
|
geometryId: "dve_candle_state_2",
|
|
941
|
-
position: [2
|
|
951
|
+
position: [2, 0, 2],
|
|
942
952
|
inputs: {
|
|
943
|
-
|
|
953
|
+
candleTexture: "@candleTexture",
|
|
944
954
|
},
|
|
945
955
|
},
|
|
946
956
|
{
|
|
947
957
|
id: "candel_3",
|
|
948
958
|
geometryId: "dve_candle_state_3",
|
|
949
|
-
position: [2
|
|
959
|
+
position: [2, 0, -2],
|
|
950
960
|
inputs: {
|
|
951
|
-
|
|
961
|
+
candleTexture: "@candleTexture",
|
|
952
962
|
},
|
|
953
963
|
},
|
|
954
964
|
{
|
|
955
965
|
id: "candel_4",
|
|
956
966
|
geometryId: "dve_candle_state_4",
|
|
957
|
-
position: [-2
|
|
967
|
+
position: [-2, 0, -2],
|
|
958
968
|
inputs: {
|
|
959
|
-
|
|
969
|
+
candleTexture: "@candleTexture",
|
|
960
970
|
},
|
|
961
971
|
},
|
|
962
972
|
],
|
|
@@ -965,7 +975,7 @@ export const candlesModel = {
|
|
|
965
975
|
id: "candel_1",
|
|
966
976
|
geometryId: "dve_candle_state_1",
|
|
967
977
|
inputs: {
|
|
968
|
-
|
|
978
|
+
candleTexture: "@candleLitTexture",
|
|
969
979
|
},
|
|
970
980
|
},
|
|
971
981
|
],
|
|
@@ -973,17 +983,17 @@ export const candlesModel = {
|
|
|
973
983
|
{
|
|
974
984
|
id: "candel_1",
|
|
975
985
|
geometryId: "dve_candle_state_1",
|
|
976
|
-
position: [-2
|
|
986
|
+
position: [-2, 0, 0],
|
|
977
987
|
inputs: {
|
|
978
|
-
|
|
988
|
+
candleTexture: "@candleLitTexture",
|
|
979
989
|
},
|
|
980
990
|
},
|
|
981
991
|
{
|
|
982
992
|
id: "candel_2",
|
|
983
993
|
geometryId: "dve_candle_state_2",
|
|
984
|
-
position: [2
|
|
994
|
+
position: [2, 0, 0],
|
|
985
995
|
inputs: {
|
|
986
|
-
|
|
996
|
+
candleTexture: "@candleLitTexture",
|
|
987
997
|
},
|
|
988
998
|
},
|
|
989
999
|
],
|
|
@@ -991,25 +1001,25 @@ export const candlesModel = {
|
|
|
991
1001
|
{
|
|
992
1002
|
id: "candel_1",
|
|
993
1003
|
geometryId: "dve_candle_state_1",
|
|
994
|
-
position: [-2
|
|
1004
|
+
position: [-2, 0, 2],
|
|
995
1005
|
inputs: {
|
|
996
|
-
|
|
1006
|
+
candleTexture: "@candleLitTexture",
|
|
997
1007
|
},
|
|
998
1008
|
},
|
|
999
1009
|
{
|
|
1000
1010
|
id: "candel_2",
|
|
1001
1011
|
geometryId: "dve_candle_state_2",
|
|
1002
|
-
position: [2
|
|
1012
|
+
position: [2, 0, 2],
|
|
1003
1013
|
inputs: {
|
|
1004
|
-
|
|
1014
|
+
candleTexture: "@candleLitTexture",
|
|
1005
1015
|
},
|
|
1006
1016
|
},
|
|
1007
1017
|
{
|
|
1008
1018
|
id: "candel_3",
|
|
1009
1019
|
geometryId: "dve_candle_state_3",
|
|
1010
|
-
position: [2
|
|
1020
|
+
position: [2, 0, -2],
|
|
1011
1021
|
inputs: {
|
|
1012
|
-
|
|
1022
|
+
candleTexture: "@candleLitTexture",
|
|
1013
1023
|
},
|
|
1014
1024
|
},
|
|
1015
1025
|
],
|
|
@@ -1017,33 +1027,33 @@ export const candlesModel = {
|
|
|
1017
1027
|
{
|
|
1018
1028
|
id: "candel_1",
|
|
1019
1029
|
geometryId: "dve_candle_state_1",
|
|
1020
|
-
position: [-2
|
|
1030
|
+
position: [-2, 0, 2],
|
|
1021
1031
|
inputs: {
|
|
1022
|
-
|
|
1032
|
+
candleTexture: "@candleLitTexture",
|
|
1023
1033
|
},
|
|
1024
1034
|
},
|
|
1025
1035
|
{
|
|
1026
1036
|
id: "candel_2",
|
|
1027
1037
|
geometryId: "dve_candle_state_2",
|
|
1028
|
-
position: [2
|
|
1038
|
+
position: [2, 0, 2],
|
|
1029
1039
|
inputs: {
|
|
1030
|
-
|
|
1040
|
+
candleTexture: "@candleLitTexture",
|
|
1031
1041
|
},
|
|
1032
1042
|
},
|
|
1033
1043
|
{
|
|
1034
1044
|
id: "candel_3",
|
|
1035
1045
|
geometryId: "dve_candle_state_3",
|
|
1036
|
-
position: [2
|
|
1046
|
+
position: [2, 0, -2],
|
|
1037
1047
|
inputs: {
|
|
1038
|
-
|
|
1048
|
+
candleTexture: "@candleLitTexture",
|
|
1039
1049
|
},
|
|
1040
1050
|
},
|
|
1041
1051
|
{
|
|
1042
1052
|
id: "candel_4",
|
|
1043
1053
|
geometryId: "dve_candle_state_4",
|
|
1044
|
-
position: [-2
|
|
1054
|
+
position: [-2, 0, -2],
|
|
1045
1055
|
inputs: {
|
|
1046
|
-
|
|
1056
|
+
candleTexture: "@candleLitTexture",
|
|
1047
1057
|
},
|
|
1048
1058
|
},
|
|
1049
1059
|
],
|
|
@@ -1051,6 +1061,7 @@ export const candlesModel = {
|
|
|
1051
1061
|
};
|
|
1052
1062
|
export const leverGeometryBase = {
|
|
1053
1063
|
id: "dve_lever_model_base",
|
|
1064
|
+
divisor: [16, 16, 16],
|
|
1054
1065
|
arguments: {
|
|
1055
1066
|
texture: {
|
|
1056
1067
|
type: "texture",
|
|
@@ -1060,33 +1071,33 @@ export const leverGeometryBase = {
|
|
|
1060
1071
|
{
|
|
1061
1072
|
type: "box",
|
|
1062
1073
|
points: [
|
|
1063
|
-
[4
|
|
1064
|
-
[12
|
|
1074
|
+
[4, 0, 4],
|
|
1075
|
+
[12, 3, 12],
|
|
1065
1076
|
],
|
|
1066
1077
|
faces: {
|
|
1067
1078
|
up: {
|
|
1068
1079
|
texture: "@texture",
|
|
1069
|
-
uv: [4
|
|
1080
|
+
uv: [4, 4, 12, 12],
|
|
1070
1081
|
},
|
|
1071
1082
|
down: {
|
|
1072
1083
|
texture: "@texture",
|
|
1073
|
-
uv: [5
|
|
1084
|
+
uv: [5, 4, 10, 12],
|
|
1074
1085
|
},
|
|
1075
1086
|
north: {
|
|
1076
1087
|
texture: "@texture",
|
|
1077
|
-
uv: [5
|
|
1088
|
+
uv: [5, 0, 10, 3],
|
|
1078
1089
|
},
|
|
1079
1090
|
south: {
|
|
1080
1091
|
texture: "@texture",
|
|
1081
|
-
uv: [5
|
|
1092
|
+
uv: [5, 0, 10, 3],
|
|
1082
1093
|
},
|
|
1083
1094
|
east: {
|
|
1084
1095
|
texture: "@texture",
|
|
1085
|
-
uv: [4
|
|
1096
|
+
uv: [4, 0, 12, 3],
|
|
1086
1097
|
},
|
|
1087
1098
|
west: {
|
|
1088
1099
|
texture: "@texture",
|
|
1089
|
-
uv: [4
|
|
1100
|
+
uv: [4, 0, 12, 3],
|
|
1090
1101
|
},
|
|
1091
1102
|
},
|
|
1092
1103
|
},
|
|
@@ -1094,6 +1105,7 @@ export const leverGeometryBase = {
|
|
|
1094
1105
|
};
|
|
1095
1106
|
export const leverGeometryDown = {
|
|
1096
1107
|
id: "dve_lever_model",
|
|
1108
|
+
divisor: [16, 16, 16],
|
|
1097
1109
|
doNotBuildRules: true,
|
|
1098
1110
|
arguments: {
|
|
1099
1111
|
texture: {
|
|
@@ -1104,33 +1116,33 @@ export const leverGeometryDown = {
|
|
|
1104
1116
|
{
|
|
1105
1117
|
type: "box",
|
|
1106
1118
|
points: [
|
|
1107
|
-
[7
|
|
1108
|
-
[9
|
|
1119
|
+
[7, 0, 7],
|
|
1120
|
+
[9, 14, 9],
|
|
1109
1121
|
],
|
|
1110
1122
|
faces: {
|
|
1111
1123
|
up: {
|
|
1112
1124
|
texture: "@texture",
|
|
1113
|
-
uv: [7
|
|
1125
|
+
uv: [7, 0, 9, 14],
|
|
1114
1126
|
},
|
|
1115
1127
|
down: {
|
|
1116
1128
|
texture: "@texture",
|
|
1117
|
-
uv: [7
|
|
1129
|
+
uv: [7, 0, 9, 14],
|
|
1118
1130
|
},
|
|
1119
1131
|
north: {
|
|
1120
1132
|
texture: "@texture",
|
|
1121
|
-
uv: [7
|
|
1133
|
+
uv: [7, 0, 9, 14],
|
|
1122
1134
|
},
|
|
1123
1135
|
south: {
|
|
1124
1136
|
texture: "@texture",
|
|
1125
|
-
uv: [7
|
|
1137
|
+
uv: [7, 0, 9, 14],
|
|
1126
1138
|
},
|
|
1127
1139
|
east: {
|
|
1128
1140
|
texture: "@texture",
|
|
1129
|
-
uv: [7
|
|
1141
|
+
uv: [7, 0, 9, 14],
|
|
1130
1142
|
},
|
|
1131
1143
|
west: {
|
|
1132
1144
|
texture: "@texture",
|
|
1133
|
-
uv: [7
|
|
1145
|
+
uv: [7, 0, 9, 14],
|
|
1134
1146
|
},
|
|
1135
1147
|
},
|
|
1136
1148
|
},
|
|
@@ -1139,6 +1151,7 @@ export const leverGeometryDown = {
|
|
|
1139
1151
|
export const leverGeometry = [leverGeometryBase, leverGeometryDown];
|
|
1140
1152
|
export const leverModel = {
|
|
1141
1153
|
id: "dve_lever",
|
|
1154
|
+
divisor: [16, 16, 16],
|
|
1142
1155
|
arguments: {
|
|
1143
1156
|
baseTexture: {
|
|
1144
1157
|
type: "texture",
|
|
@@ -1187,16 +1200,16 @@ export const leverModel = {
|
|
|
1187
1200
|
id: "lever_base",
|
|
1188
1201
|
geometryId: "dve_lever_model_base",
|
|
1189
1202
|
inputs: {
|
|
1190
|
-
|
|
1203
|
+
texture: "@baseTexture",
|
|
1191
1204
|
},
|
|
1192
1205
|
},
|
|
1193
1206
|
{
|
|
1194
1207
|
id: "lever",
|
|
1195
1208
|
geometryId: "dve_lever_model",
|
|
1196
|
-
position: [0, -
|
|
1209
|
+
position: [0, -8, -3],
|
|
1197
1210
|
rotation: [-45, 0, 0],
|
|
1198
1211
|
inputs: {
|
|
1199
|
-
|
|
1212
|
+
texture: "@leverTexture",
|
|
1200
1213
|
},
|
|
1201
1214
|
},
|
|
1202
1215
|
],
|
|
@@ -1205,16 +1218,16 @@ export const leverModel = {
|
|
|
1205
1218
|
id: "lever_base",
|
|
1206
1219
|
geometryId: "dve_lever_model_base",
|
|
1207
1220
|
inputs: {
|
|
1208
|
-
|
|
1221
|
+
texture: "@baseTexture",
|
|
1209
1222
|
},
|
|
1210
1223
|
},
|
|
1211
1224
|
{
|
|
1212
1225
|
id: "lever",
|
|
1213
1226
|
geometryId: "dve_lever_model",
|
|
1214
|
-
position: [0, -
|
|
1227
|
+
position: [0, -8, 3],
|
|
1215
1228
|
rotation: [45, 0, 0],
|
|
1216
1229
|
inputs: {
|
|
1217
|
-
|
|
1230
|
+
texture: "@leverTexture",
|
|
1218
1231
|
},
|
|
1219
1232
|
},
|
|
1220
1233
|
],
|
|
@@ -1223,16 +1236,16 @@ export const leverModel = {
|
|
|
1223
1236
|
id: "lever_base",
|
|
1224
1237
|
geometryId: "dve_lever_model_base",
|
|
1225
1238
|
inputs: {
|
|
1226
|
-
|
|
1239
|
+
texture: "@baseTexture",
|
|
1227
1240
|
},
|
|
1228
1241
|
},
|
|
1229
1242
|
{
|
|
1230
1243
|
id: "lever",
|
|
1231
1244
|
geometryId: "dve_lever_model",
|
|
1232
|
-
position: [0,
|
|
1245
|
+
position: [0, -.8, 3],
|
|
1233
1246
|
rotation: [45, 0, 0],
|
|
1234
1247
|
inputs: {
|
|
1235
|
-
|
|
1248
|
+
texture: "@leverTexture",
|
|
1236
1249
|
},
|
|
1237
1250
|
},
|
|
1238
1251
|
],
|
|
@@ -1241,16 +1254,16 @@ export const leverModel = {
|
|
|
1241
1254
|
id: "lever_base",
|
|
1242
1255
|
geometryId: "dve_lever_model_base",
|
|
1243
1256
|
inputs: {
|
|
1244
|
-
|
|
1257
|
+
texture: "@baseTexture",
|
|
1245
1258
|
},
|
|
1246
1259
|
},
|
|
1247
1260
|
{
|
|
1248
1261
|
id: "lever",
|
|
1249
1262
|
geometryId: "dve_lever_model",
|
|
1250
|
-
position: [0,
|
|
1263
|
+
position: [0, -.8, -3],
|
|
1251
1264
|
rotation: [-45, 0, 0],
|
|
1252
1265
|
inputs: {
|
|
1253
|
-
|
|
1266
|
+
texture: "@leverTexture",
|
|
1254
1267
|
},
|
|
1255
1268
|
},
|
|
1256
1269
|
],
|
|
@@ -1259,16 +1272,16 @@ export const leverModel = {
|
|
|
1259
1272
|
id: "lever_base",
|
|
1260
1273
|
geometryId: "dve_lever_model_base",
|
|
1261
1274
|
inputs: {
|
|
1262
|
-
|
|
1275
|
+
texture: "@baseTexture",
|
|
1263
1276
|
},
|
|
1264
1277
|
},
|
|
1265
1278
|
{
|
|
1266
1279
|
id: "lever",
|
|
1267
1280
|
geometryId: "dve_lever_model",
|
|
1268
|
-
position: [-
|
|
1281
|
+
position: [-3, -8, 0],
|
|
1269
1282
|
rotation: [0, 0, 45],
|
|
1270
1283
|
inputs: {
|
|
1271
|
-
|
|
1284
|
+
texture: "@leverTexture",
|
|
1272
1285
|
},
|
|
1273
1286
|
},
|
|
1274
1287
|
],
|
|
@@ -1277,16 +1290,16 @@ export const leverModel = {
|
|
|
1277
1290
|
id: "lever_base",
|
|
1278
1291
|
geometryId: "dve_lever_model_base",
|
|
1279
1292
|
inputs: {
|
|
1280
|
-
|
|
1293
|
+
texture: "@baseTexture",
|
|
1281
1294
|
},
|
|
1282
1295
|
},
|
|
1283
1296
|
{
|
|
1284
1297
|
id: "lever",
|
|
1285
1298
|
geometryId: "dve_lever_model",
|
|
1286
|
-
position: [
|
|
1299
|
+
position: [3, -8, 0],
|
|
1287
1300
|
rotation: [0, 0, -45],
|
|
1288
1301
|
inputs: {
|
|
1289
|
-
|
|
1302
|
+
texture: "@leverTexture",
|
|
1290
1303
|
},
|
|
1291
1304
|
},
|
|
1292
1305
|
],
|
|
@@ -1295,16 +1308,16 @@ export const leverModel = {
|
|
|
1295
1308
|
id: "lever_base",
|
|
1296
1309
|
geometryId: "dve_lever_model_base",
|
|
1297
1310
|
inputs: {
|
|
1298
|
-
|
|
1311
|
+
texture: "@baseTexture",
|
|
1299
1312
|
},
|
|
1300
1313
|
},
|
|
1301
1314
|
{
|
|
1302
1315
|
id: "lever",
|
|
1303
1316
|
geometryId: "dve_lever_model",
|
|
1304
|
-
position: [
|
|
1317
|
+
position: [3, -8, 0],
|
|
1305
1318
|
rotation: [0, 0, -45],
|
|
1306
1319
|
inputs: {
|
|
1307
|
-
|
|
1320
|
+
texture: "@leverTexture",
|
|
1308
1321
|
},
|
|
1309
1322
|
},
|
|
1310
1323
|
],
|
|
@@ -1313,16 +1326,16 @@ export const leverModel = {
|
|
|
1313
1326
|
id: "lever_base",
|
|
1314
1327
|
geometryId: "dve_lever_model_base",
|
|
1315
1328
|
inputs: {
|
|
1316
|
-
|
|
1329
|
+
texture: "@baseTexture",
|
|
1317
1330
|
},
|
|
1318
1331
|
},
|
|
1319
1332
|
{
|
|
1320
1333
|
id: "lever",
|
|
1321
1334
|
geometryId: "dve_lever_model",
|
|
1322
|
-
position: [-
|
|
1335
|
+
position: [-3, -8, 0],
|
|
1323
1336
|
rotation: [0, 0, 45],
|
|
1324
1337
|
inputs: {
|
|
1325
|
-
|
|
1338
|
+
texture: "@leverTexture",
|
|
1326
1339
|
},
|
|
1327
1340
|
},
|
|
1328
1341
|
],
|
|
@@ -1331,21 +1344,21 @@ export const leverModel = {
|
|
|
1331
1344
|
{
|
|
1332
1345
|
id: "lever_base",
|
|
1333
1346
|
rotation: [0, 0, 180],
|
|
1334
|
-
rotationPivot: [
|
|
1347
|
+
rotationPivot: [8, 8, 8],
|
|
1335
1348
|
geometryId: "dve_lever_model_base",
|
|
1336
1349
|
inputs: {
|
|
1337
|
-
|
|
1350
|
+
texture: "@baseTexture",
|
|
1338
1351
|
},
|
|
1339
1352
|
},
|
|
1340
1353
|
{
|
|
1341
1354
|
id: "lever",
|
|
1342
1355
|
geometryId: "dve_lever_model",
|
|
1343
1356
|
rotation: [45, 0, 0],
|
|
1344
|
-
position: [0, 2
|
|
1345
|
-
rotationPivot: [
|
|
1357
|
+
position: [0, 2, -3],
|
|
1358
|
+
rotationPivot: [8, 8, 8],
|
|
1346
1359
|
flip: [0, 1, 0],
|
|
1347
1360
|
inputs: {
|
|
1348
|
-
|
|
1361
|
+
texture: "@leverTexture",
|
|
1349
1362
|
},
|
|
1350
1363
|
},
|
|
1351
1364
|
],
|
|
@@ -1353,21 +1366,21 @@ export const leverModel = {
|
|
|
1353
1366
|
{
|
|
1354
1367
|
id: "lever_base",
|
|
1355
1368
|
rotation: [0, 0, 180],
|
|
1356
|
-
rotationPivot: [
|
|
1369
|
+
rotationPivot: [8, 8, 8],
|
|
1357
1370
|
geometryId: "dve_lever_model_base",
|
|
1358
1371
|
inputs: {
|
|
1359
|
-
|
|
1372
|
+
texture: "@baseTexture",
|
|
1360
1373
|
},
|
|
1361
1374
|
},
|
|
1362
1375
|
{
|
|
1363
1376
|
id: "lever",
|
|
1364
1377
|
geometryId: "dve_lever_model",
|
|
1365
1378
|
rotation: [-45, 0, 0],
|
|
1366
|
-
position: [0, 2
|
|
1367
|
-
rotationPivot: [
|
|
1379
|
+
position: [0, 2, 3],
|
|
1380
|
+
rotationPivot: [8, 8, 8],
|
|
1368
1381
|
flip: [0, 1, 0],
|
|
1369
1382
|
inputs: {
|
|
1370
|
-
|
|
1383
|
+
texture: "@leverTexture",
|
|
1371
1384
|
},
|
|
1372
1385
|
},
|
|
1373
1386
|
],
|
|
@@ -1375,21 +1388,21 @@ export const leverModel = {
|
|
|
1375
1388
|
{
|
|
1376
1389
|
id: "lever_base",
|
|
1377
1390
|
rotation: [0, 0, 180],
|
|
1378
|
-
rotationPivot: [
|
|
1391
|
+
rotationPivot: [8, 8, 8],
|
|
1379
1392
|
geometryId: "dve_lever_model_base",
|
|
1380
1393
|
inputs: {
|
|
1381
|
-
|
|
1394
|
+
texture: "@baseTexture",
|
|
1382
1395
|
},
|
|
1383
1396
|
},
|
|
1384
1397
|
{
|
|
1385
1398
|
id: "lever",
|
|
1386
1399
|
geometryId: "dve_lever_model",
|
|
1387
1400
|
rotation: [-45, 0, 0],
|
|
1388
|
-
position: [0, 2
|
|
1389
|
-
rotationPivot: [
|
|
1401
|
+
position: [0, 2, 3],
|
|
1402
|
+
rotationPivot: [8, 8, 8],
|
|
1390
1403
|
flip: [0, 1, 0],
|
|
1391
1404
|
inputs: {
|
|
1392
|
-
|
|
1405
|
+
texture: "@leverTexture",
|
|
1393
1406
|
},
|
|
1394
1407
|
},
|
|
1395
1408
|
],
|
|
@@ -1397,21 +1410,21 @@ export const leverModel = {
|
|
|
1397
1410
|
{
|
|
1398
1411
|
id: "lever_base",
|
|
1399
1412
|
rotation: [0, 0, 180],
|
|
1400
|
-
rotationPivot: [
|
|
1413
|
+
rotationPivot: [8, 8, 8],
|
|
1401
1414
|
geometryId: "dve_lever_model_base",
|
|
1402
1415
|
inputs: {
|
|
1403
|
-
|
|
1416
|
+
texture: "@baseTexture",
|
|
1404
1417
|
},
|
|
1405
1418
|
},
|
|
1406
1419
|
{
|
|
1407
1420
|
id: "lever",
|
|
1408
1421
|
geometryId: "dve_lever_model",
|
|
1409
1422
|
rotation: [45, 0, 0],
|
|
1410
|
-
position: [0, 2
|
|
1411
|
-
rotationPivot: [
|
|
1423
|
+
position: [0, 2, -3],
|
|
1424
|
+
rotationPivot: [8, 8, 8],
|
|
1412
1425
|
flip: [0, 1, 0],
|
|
1413
1426
|
inputs: {
|
|
1414
|
-
|
|
1427
|
+
texture: "@leverTexture",
|
|
1415
1428
|
},
|
|
1416
1429
|
},
|
|
1417
1430
|
],
|
|
@@ -1419,21 +1432,21 @@ export const leverModel = {
|
|
|
1419
1432
|
{
|
|
1420
1433
|
id: "lever_base",
|
|
1421
1434
|
rotation: [0, 0, 180],
|
|
1422
|
-
rotationPivot: [
|
|
1435
|
+
rotationPivot: [8, 8, 8],
|
|
1423
1436
|
geometryId: "dve_lever_model_base",
|
|
1424
1437
|
inputs: {
|
|
1425
|
-
|
|
1438
|
+
texture: "@baseTexture",
|
|
1426
1439
|
},
|
|
1427
1440
|
},
|
|
1428
1441
|
{
|
|
1429
1442
|
id: "lever",
|
|
1430
1443
|
geometryId: "dve_lever_model",
|
|
1431
1444
|
rotation: [0, 0, -45],
|
|
1432
|
-
position: [-
|
|
1433
|
-
rotationPivot: [
|
|
1445
|
+
position: [-3, 2, -0],
|
|
1446
|
+
rotationPivot: [8, 8, 8],
|
|
1434
1447
|
flip: [0, 1, 0],
|
|
1435
1448
|
inputs: {
|
|
1436
|
-
|
|
1449
|
+
texture: "@leverTexture",
|
|
1437
1450
|
},
|
|
1438
1451
|
},
|
|
1439
1452
|
],
|
|
@@ -1441,21 +1454,21 @@ export const leverModel = {
|
|
|
1441
1454
|
{
|
|
1442
1455
|
id: "lever_base",
|
|
1443
1456
|
rotation: [0, 0, 180],
|
|
1444
|
-
rotationPivot: [
|
|
1457
|
+
rotationPivot: [8, 8, 8],
|
|
1445
1458
|
geometryId: "dve_lever_model_base",
|
|
1446
1459
|
inputs: {
|
|
1447
|
-
|
|
1460
|
+
texture: "@baseTexture",
|
|
1448
1461
|
},
|
|
1449
1462
|
},
|
|
1450
1463
|
{
|
|
1451
1464
|
id: "lever",
|
|
1452
1465
|
geometryId: "dve_lever_model",
|
|
1453
1466
|
rotation: [0, 0, 45],
|
|
1454
|
-
position: [
|
|
1455
|
-
rotationPivot: [
|
|
1467
|
+
position: [3, 2, -0],
|
|
1468
|
+
rotationPivot: [8, 8, 8],
|
|
1456
1469
|
flip: [0, 1, 0],
|
|
1457
1470
|
inputs: {
|
|
1458
|
-
|
|
1471
|
+
texture: "@leverTexture",
|
|
1459
1472
|
},
|
|
1460
1473
|
},
|
|
1461
1474
|
],
|
|
@@ -1463,21 +1476,21 @@ export const leverModel = {
|
|
|
1463
1476
|
{
|
|
1464
1477
|
id: "lever_base",
|
|
1465
1478
|
rotation: [0, 0, 180],
|
|
1466
|
-
rotationPivot: [
|
|
1479
|
+
rotationPivot: [8, 8, 8],
|
|
1467
1480
|
geometryId: "dve_lever_model_base",
|
|
1468
1481
|
inputs: {
|
|
1469
|
-
|
|
1482
|
+
texture: "@baseTexture",
|
|
1470
1483
|
},
|
|
1471
1484
|
},
|
|
1472
1485
|
{
|
|
1473
1486
|
id: "lever",
|
|
1474
1487
|
geometryId: "dve_lever_model",
|
|
1475
1488
|
rotation: [0, 0, 45],
|
|
1476
|
-
position: [
|
|
1477
|
-
rotationPivot: [
|
|
1489
|
+
position: [3, 2, -0],
|
|
1490
|
+
rotationPivot: [8, 8, 8],
|
|
1478
1491
|
flip: [0, 1, 0],
|
|
1479
1492
|
inputs: {
|
|
1480
|
-
|
|
1493
|
+
texture: "@leverTexture",
|
|
1481
1494
|
},
|
|
1482
1495
|
},
|
|
1483
1496
|
],
|
|
@@ -1485,21 +1498,21 @@ export const leverModel = {
|
|
|
1485
1498
|
{
|
|
1486
1499
|
id: "lever_base",
|
|
1487
1500
|
rotation: [0, 0, 180],
|
|
1488
|
-
rotationPivot: [
|
|
1501
|
+
rotationPivot: [8, 8, 8],
|
|
1489
1502
|
geometryId: "dve_lever_model_base",
|
|
1490
1503
|
inputs: {
|
|
1491
|
-
|
|
1504
|
+
texture: "@baseTexture",
|
|
1492
1505
|
},
|
|
1493
1506
|
},
|
|
1494
1507
|
{
|
|
1495
1508
|
id: "lever",
|
|
1496
1509
|
geometryId: "dve_lever_model",
|
|
1497
1510
|
rotation: [0, 0, -45],
|
|
1498
|
-
position: [-
|
|
1499
|
-
rotationPivot: [
|
|
1511
|
+
position: [-3, 2, -0],
|
|
1512
|
+
rotationPivot: [8, 8, 8],
|
|
1500
1513
|
flip: [0, 1, 0],
|
|
1501
1514
|
inputs: {
|
|
1502
|
-
|
|
1515
|
+
texture: "@leverTexture",
|
|
1503
1516
|
},
|
|
1504
1517
|
},
|
|
1505
1518
|
],
|
|
@@ -1509,19 +1522,19 @@ export const leverModel = {
|
|
|
1509
1522
|
id: "lever_base",
|
|
1510
1523
|
geometryId: "dve_lever_model_base",
|
|
1511
1524
|
rotation: [-90, 0, 0],
|
|
1512
|
-
rotationPivot: [
|
|
1525
|
+
rotationPivot: [8, 8, 8],
|
|
1513
1526
|
inputs: {
|
|
1514
|
-
|
|
1527
|
+
texture: "@baseTexture",
|
|
1515
1528
|
},
|
|
1516
1529
|
},
|
|
1517
1530
|
{
|
|
1518
1531
|
id: "lever",
|
|
1519
1532
|
geometryId: "dve_lever_model",
|
|
1520
|
-
position: [0, -5
|
|
1533
|
+
position: [0, -5, 8],
|
|
1521
1534
|
rotation: [-90 - 45, 0, 0],
|
|
1522
|
-
rotationPivot: [
|
|
1535
|
+
rotationPivot: [8, 8, 8],
|
|
1523
1536
|
inputs: {
|
|
1524
|
-
|
|
1537
|
+
texture: "@leverTexture",
|
|
1525
1538
|
},
|
|
1526
1539
|
},
|
|
1527
1540
|
],
|
|
@@ -1530,19 +1543,19 @@ export const leverModel = {
|
|
|
1530
1543
|
id: "lever_base",
|
|
1531
1544
|
geometryId: "dve_lever_model_base",
|
|
1532
1545
|
rotation: [-90, 0, 0],
|
|
1533
|
-
rotationPivot: [
|
|
1546
|
+
rotationPivot: [8, 8, 8],
|
|
1534
1547
|
inputs: {
|
|
1535
|
-
|
|
1548
|
+
texture: "@baseTexture",
|
|
1536
1549
|
},
|
|
1537
1550
|
},
|
|
1538
1551
|
{
|
|
1539
1552
|
id: "lever",
|
|
1540
1553
|
geometryId: "dve_lever_model",
|
|
1541
|
-
position: [0, 5
|
|
1554
|
+
position: [0, 5, 8],
|
|
1542
1555
|
rotation: [-90 + 45, 0, 0],
|
|
1543
|
-
rotationPivot: [
|
|
1556
|
+
rotationPivot: [8, 8, 8],
|
|
1544
1557
|
inputs: {
|
|
1545
|
-
|
|
1558
|
+
texture: "@leverTexture",
|
|
1546
1559
|
},
|
|
1547
1560
|
},
|
|
1548
1561
|
],
|
|
@@ -1551,19 +1564,19 @@ export const leverModel = {
|
|
|
1551
1564
|
id: "lever_base",
|
|
1552
1565
|
geometryId: "dve_lever_model_base",
|
|
1553
1566
|
rotation: [-90, 0, 0],
|
|
1554
|
-
rotationPivot: [
|
|
1567
|
+
rotationPivot: [8, 8, 8],
|
|
1555
1568
|
inputs: {
|
|
1556
|
-
|
|
1569
|
+
texture: "@baseTexture",
|
|
1557
1570
|
},
|
|
1558
1571
|
},
|
|
1559
1572
|
{
|
|
1560
1573
|
id: "lever",
|
|
1561
1574
|
geometryId: "dve_lever_model",
|
|
1562
|
-
position: [0, 5
|
|
1575
|
+
position: [0, 5, 8],
|
|
1563
1576
|
rotation: [-90 + 45, 0, 0],
|
|
1564
|
-
rotationPivot: [
|
|
1577
|
+
rotationPivot: [8, 8, 8],
|
|
1565
1578
|
inputs: {
|
|
1566
|
-
|
|
1579
|
+
texture: "@leverTexture",
|
|
1567
1580
|
},
|
|
1568
1581
|
},
|
|
1569
1582
|
],
|
|
@@ -1572,19 +1585,19 @@ export const leverModel = {
|
|
|
1572
1585
|
id: "lever_base",
|
|
1573
1586
|
geometryId: "dve_lever_model_base",
|
|
1574
1587
|
rotation: [-90, 0, 0],
|
|
1575
|
-
rotationPivot: [
|
|
1588
|
+
rotationPivot: [8, 8, 8],
|
|
1576
1589
|
inputs: {
|
|
1577
|
-
|
|
1590
|
+
texture: "@baseTexture",
|
|
1578
1591
|
},
|
|
1579
1592
|
},
|
|
1580
1593
|
{
|
|
1581
1594
|
id: "lever",
|
|
1582
1595
|
geometryId: "dve_lever_model",
|
|
1583
|
-
position: [0, -5
|
|
1596
|
+
position: [0, -5, 8],
|
|
1584
1597
|
rotation: [-90 - 45, 0, 0],
|
|
1585
|
-
rotationPivot: [
|
|
1598
|
+
rotationPivot: [8, 8, 8],
|
|
1586
1599
|
inputs: {
|
|
1587
|
-
|
|
1600
|
+
texture: "@leverTexture",
|
|
1588
1601
|
},
|
|
1589
1602
|
},
|
|
1590
1603
|
],
|
|
@@ -1593,19 +1606,19 @@ export const leverModel = {
|
|
|
1593
1606
|
id: "lever_base",
|
|
1594
1607
|
geometryId: "dve_lever_model_base",
|
|
1595
1608
|
rotation: [-90, 0, 0],
|
|
1596
|
-
rotationPivot: [
|
|
1609
|
+
rotationPivot: [8, 8, 8],
|
|
1597
1610
|
inputs: {
|
|
1598
|
-
|
|
1611
|
+
texture: "@baseTexture",
|
|
1599
1612
|
},
|
|
1600
1613
|
},
|
|
1601
1614
|
{
|
|
1602
1615
|
id: "lever",
|
|
1603
1616
|
geometryId: "dve_lever_model",
|
|
1604
|
-
position: [-5
|
|
1617
|
+
position: [-5, 0, 8],
|
|
1605
1618
|
rotation: [-90, 45, 0],
|
|
1606
|
-
rotationPivot: [
|
|
1619
|
+
rotationPivot: [8, 8, 8],
|
|
1607
1620
|
inputs: {
|
|
1608
|
-
|
|
1621
|
+
texture: "@leverTexture",
|
|
1609
1622
|
},
|
|
1610
1623
|
},
|
|
1611
1624
|
],
|
|
@@ -1614,19 +1627,19 @@ export const leverModel = {
|
|
|
1614
1627
|
id: "lever_base",
|
|
1615
1628
|
geometryId: "dve_lever_model_base",
|
|
1616
1629
|
rotation: [-90, 0, 0],
|
|
1617
|
-
rotationPivot: [
|
|
1630
|
+
rotationPivot: [8, 8, 8],
|
|
1618
1631
|
inputs: {
|
|
1619
|
-
|
|
1632
|
+
texture: "@baseTexture",
|
|
1620
1633
|
},
|
|
1621
1634
|
},
|
|
1622
1635
|
{
|
|
1623
1636
|
id: "lever",
|
|
1624
1637
|
geometryId: "dve_lever_model",
|
|
1625
|
-
position: [5
|
|
1638
|
+
position: [5, 0, 8],
|
|
1626
1639
|
rotation: [-90, -45, 0],
|
|
1627
|
-
rotationPivot: [
|
|
1640
|
+
rotationPivot: [8, 8, 8],
|
|
1628
1641
|
inputs: {
|
|
1629
|
-
|
|
1642
|
+
texture: "@leverTexture",
|
|
1630
1643
|
},
|
|
1631
1644
|
},
|
|
1632
1645
|
],
|
|
@@ -1635,19 +1648,19 @@ export const leverModel = {
|
|
|
1635
1648
|
id: "lever_base",
|
|
1636
1649
|
geometryId: "dve_lever_model_base",
|
|
1637
1650
|
rotation: [-90, 0, 0],
|
|
1638
|
-
rotationPivot: [
|
|
1651
|
+
rotationPivot: [8, 8, 8],
|
|
1639
1652
|
inputs: {
|
|
1640
|
-
|
|
1653
|
+
texture: "@baseTexture",
|
|
1641
1654
|
},
|
|
1642
1655
|
},
|
|
1643
1656
|
{
|
|
1644
1657
|
id: "lever",
|
|
1645
1658
|
geometryId: "dve_lever_model",
|
|
1646
|
-
position: [-5
|
|
1659
|
+
position: [-5, 0, 8],
|
|
1647
1660
|
rotation: [-90, 45, 0],
|
|
1648
|
-
rotationPivot: [
|
|
1661
|
+
rotationPivot: [8, 8, 8],
|
|
1649
1662
|
inputs: {
|
|
1650
|
-
|
|
1663
|
+
texture: "@leverTexture",
|
|
1651
1664
|
},
|
|
1652
1665
|
},
|
|
1653
1666
|
],
|
|
@@ -1656,19 +1669,19 @@ export const leverModel = {
|
|
|
1656
1669
|
id: "lever_base",
|
|
1657
1670
|
geometryId: "dve_lever_model_base",
|
|
1658
1671
|
rotation: [-90, 0, 0],
|
|
1659
|
-
rotationPivot: [
|
|
1672
|
+
rotationPivot: [8, 8, 8],
|
|
1660
1673
|
inputs: {
|
|
1661
|
-
|
|
1674
|
+
texture: "@baseTexture",
|
|
1662
1675
|
},
|
|
1663
1676
|
},
|
|
1664
1677
|
{
|
|
1665
1678
|
id: "lever",
|
|
1666
1679
|
geometryId: "dve_lever_model",
|
|
1667
|
-
position: [5
|
|
1680
|
+
position: [5, 0, 8],
|
|
1668
1681
|
rotation: [-90, -45, 0],
|
|
1669
|
-
rotationPivot: [
|
|
1682
|
+
rotationPivot: [8, 8, 8],
|
|
1670
1683
|
inputs: {
|
|
1671
|
-
|
|
1684
|
+
texture: "@leverTexture",
|
|
1672
1685
|
},
|
|
1673
1686
|
},
|
|
1674
1687
|
],
|
|
@@ -1677,19 +1690,19 @@ export const leverModel = {
|
|
|
1677
1690
|
id: "lever_base",
|
|
1678
1691
|
geometryId: "dve_lever_model_base",
|
|
1679
1692
|
rotation: [90, 0, 0],
|
|
1680
|
-
rotationPivot: [
|
|
1693
|
+
rotationPivot: [8, 8, 8],
|
|
1681
1694
|
inputs: {
|
|
1682
|
-
|
|
1695
|
+
texture: "@baseTexture",
|
|
1683
1696
|
},
|
|
1684
1697
|
},
|
|
1685
1698
|
{
|
|
1686
1699
|
id: "lever",
|
|
1687
1700
|
geometryId: "dve_lever_model",
|
|
1688
|
-
position: [0, -5
|
|
1701
|
+
position: [0, -5, 8],
|
|
1689
1702
|
rotation: [90 + 45, 0, 0],
|
|
1690
|
-
rotationPivot: [
|
|
1703
|
+
rotationPivot: [8, 8, 8],
|
|
1691
1704
|
inputs: {
|
|
1692
|
-
|
|
1705
|
+
texture: "@leverTexture",
|
|
1693
1706
|
},
|
|
1694
1707
|
},
|
|
1695
1708
|
],
|
|
@@ -1698,19 +1711,19 @@ export const leverModel = {
|
|
|
1698
1711
|
id: "lever_base",
|
|
1699
1712
|
geometryId: "dve_lever_model_base",
|
|
1700
1713
|
rotation: [90, 0, 0],
|
|
1701
|
-
rotationPivot: [
|
|
1714
|
+
rotationPivot: [8, 8, 8],
|
|
1702
1715
|
inputs: {
|
|
1703
|
-
|
|
1716
|
+
texture: "@baseTexture",
|
|
1704
1717
|
},
|
|
1705
1718
|
},
|
|
1706
1719
|
{
|
|
1707
1720
|
id: "lever",
|
|
1708
1721
|
geometryId: "dve_lever_model",
|
|
1709
|
-
position: [0, 5
|
|
1722
|
+
position: [0, 5, 8],
|
|
1710
1723
|
rotation: [90 - 45, 0, 0],
|
|
1711
|
-
rotationPivot: [
|
|
1724
|
+
rotationPivot: [8, 8, 8],
|
|
1712
1725
|
inputs: {
|
|
1713
|
-
|
|
1726
|
+
texture: "@leverTexture",
|
|
1714
1727
|
},
|
|
1715
1728
|
},
|
|
1716
1729
|
],
|
|
@@ -1719,19 +1732,19 @@ export const leverModel = {
|
|
|
1719
1732
|
id: "lever_base",
|
|
1720
1733
|
geometryId: "dve_lever_model_base",
|
|
1721
1734
|
rotation: [90, 0, 0],
|
|
1722
|
-
rotationPivot: [
|
|
1735
|
+
rotationPivot: [8, 8, 8],
|
|
1723
1736
|
inputs: {
|
|
1724
|
-
|
|
1737
|
+
texture: "@baseTexture",
|
|
1725
1738
|
},
|
|
1726
1739
|
},
|
|
1727
1740
|
{
|
|
1728
1741
|
id: "lever",
|
|
1729
1742
|
geometryId: "dve_lever_model",
|
|
1730
|
-
position: [0, 5
|
|
1743
|
+
position: [0, 5, 8],
|
|
1731
1744
|
rotation: [90 - 45, 0, 0],
|
|
1732
|
-
rotationPivot: [
|
|
1745
|
+
rotationPivot: [8, 8, 8],
|
|
1733
1746
|
inputs: {
|
|
1734
|
-
|
|
1747
|
+
texture: "@leverTexture",
|
|
1735
1748
|
},
|
|
1736
1749
|
},
|
|
1737
1750
|
],
|
|
@@ -1740,19 +1753,19 @@ export const leverModel = {
|
|
|
1740
1753
|
id: "lever_base",
|
|
1741
1754
|
geometryId: "dve_lever_model_base",
|
|
1742
1755
|
rotation: [90, 0, 0],
|
|
1743
|
-
rotationPivot: [
|
|
1756
|
+
rotationPivot: [8, 8, 8],
|
|
1744
1757
|
inputs: {
|
|
1745
|
-
|
|
1758
|
+
texture: "@baseTexture",
|
|
1746
1759
|
},
|
|
1747
1760
|
},
|
|
1748
1761
|
{
|
|
1749
1762
|
id: "lever",
|
|
1750
1763
|
geometryId: "dve_lever_model",
|
|
1751
|
-
position: [0, -5
|
|
1764
|
+
position: [0, -5, 8],
|
|
1752
1765
|
rotation: [90 + 45, 0, 0],
|
|
1753
|
-
rotationPivot: [
|
|
1766
|
+
rotationPivot: [8, 8, 8],
|
|
1754
1767
|
inputs: {
|
|
1755
|
-
|
|
1768
|
+
texture: "@leverTexture",
|
|
1756
1769
|
},
|
|
1757
1770
|
},
|
|
1758
1771
|
],
|
|
@@ -1761,19 +1774,19 @@ export const leverModel = {
|
|
|
1761
1774
|
id: "lever_base",
|
|
1762
1775
|
geometryId: "dve_lever_model_base",
|
|
1763
1776
|
rotation: [90, 0, 0],
|
|
1764
|
-
rotationPivot: [
|
|
1777
|
+
rotationPivot: [8, 8, 8],
|
|
1765
1778
|
inputs: {
|
|
1766
|
-
|
|
1779
|
+
texture: "@baseTexture",
|
|
1767
1780
|
},
|
|
1768
1781
|
},
|
|
1769
1782
|
{
|
|
1770
1783
|
id: "lever",
|
|
1771
1784
|
geometryId: "dve_lever_model",
|
|
1772
|
-
position: [-5
|
|
1785
|
+
position: [-5, 0, 8],
|
|
1773
1786
|
rotation: [90, -45, 0],
|
|
1774
|
-
rotationPivot: [
|
|
1787
|
+
rotationPivot: [8, 8, 8],
|
|
1775
1788
|
inputs: {
|
|
1776
|
-
|
|
1789
|
+
texture: "@leverTexture",
|
|
1777
1790
|
},
|
|
1778
1791
|
},
|
|
1779
1792
|
],
|
|
@@ -1782,19 +1795,19 @@ export const leverModel = {
|
|
|
1782
1795
|
id: "lever_base",
|
|
1783
1796
|
geometryId: "dve_lever_model_base",
|
|
1784
1797
|
rotation: [90, 0, 0],
|
|
1785
|
-
rotationPivot: [
|
|
1798
|
+
rotationPivot: [8, 8, 8],
|
|
1786
1799
|
inputs: {
|
|
1787
|
-
|
|
1800
|
+
texture: "@baseTexture",
|
|
1788
1801
|
},
|
|
1789
1802
|
},
|
|
1790
1803
|
{
|
|
1791
1804
|
id: "lever",
|
|
1792
1805
|
geometryId: "dve_lever_model",
|
|
1793
|
-
position: [5
|
|
1806
|
+
position: [5, 0, 8],
|
|
1794
1807
|
rotation: [90, 45, 0],
|
|
1795
|
-
rotationPivot: [
|
|
1808
|
+
rotationPivot: [8, 8, 8],
|
|
1796
1809
|
inputs: {
|
|
1797
|
-
|
|
1810
|
+
texture: "@leverTexture",
|
|
1798
1811
|
},
|
|
1799
1812
|
},
|
|
1800
1813
|
],
|
|
@@ -1803,19 +1816,19 @@ export const leverModel = {
|
|
|
1803
1816
|
id: "lever_base",
|
|
1804
1817
|
geometryId: "dve_lever_model_base",
|
|
1805
1818
|
rotation: [90, 0, 0],
|
|
1806
|
-
rotationPivot: [
|
|
1819
|
+
rotationPivot: [8, 8, 8],
|
|
1807
1820
|
inputs: {
|
|
1808
|
-
|
|
1821
|
+
texture: "@baseTexture",
|
|
1809
1822
|
},
|
|
1810
1823
|
},
|
|
1811
1824
|
{
|
|
1812
1825
|
id: "lever",
|
|
1813
1826
|
geometryId: "dve_lever_model",
|
|
1814
|
-
position: [-5
|
|
1827
|
+
position: [-5, 0, 8],
|
|
1815
1828
|
rotation: [90, -45, 0],
|
|
1816
|
-
rotationPivot: [
|
|
1829
|
+
rotationPivot: [8, 8, 8],
|
|
1817
1830
|
inputs: {
|
|
1818
|
-
|
|
1831
|
+
texture: "@leverTexture",
|
|
1819
1832
|
},
|
|
1820
1833
|
},
|
|
1821
1834
|
],
|
|
@@ -1824,19 +1837,19 @@ export const leverModel = {
|
|
|
1824
1837
|
id: "lever_base",
|
|
1825
1838
|
geometryId: "dve_lever_model_base",
|
|
1826
1839
|
rotation: [90, 0, 0],
|
|
1827
|
-
rotationPivot: [
|
|
1840
|
+
rotationPivot: [8, 8, 8],
|
|
1828
1841
|
inputs: {
|
|
1829
|
-
|
|
1842
|
+
texture: "@baseTexture",
|
|
1830
1843
|
},
|
|
1831
1844
|
},
|
|
1832
1845
|
{
|
|
1833
1846
|
id: "lever",
|
|
1834
1847
|
geometryId: "dve_lever_model",
|
|
1835
|
-
position: [5
|
|
1848
|
+
position: [5, 0, 8],
|
|
1836
1849
|
rotation: [90, 45, 0],
|
|
1837
|
-
rotationPivot: [
|
|
1850
|
+
rotationPivot: [8, 8, 8],
|
|
1838
1851
|
inputs: {
|
|
1839
|
-
|
|
1852
|
+
texture: "@leverTexture",
|
|
1840
1853
|
},
|
|
1841
1854
|
},
|
|
1842
1855
|
],
|
|
@@ -1845,19 +1858,19 @@ export const leverModel = {
|
|
|
1845
1858
|
id: "lever_base",
|
|
1846
1859
|
geometryId: "dve_lever_model_base",
|
|
1847
1860
|
rotation: [0, 0, 90],
|
|
1848
|
-
rotationPivot: [
|
|
1861
|
+
rotationPivot: [8, 8, 8],
|
|
1849
1862
|
inputs: {
|
|
1850
|
-
|
|
1863
|
+
texture: "@baseTexture",
|
|
1851
1864
|
},
|
|
1852
1865
|
},
|
|
1853
1866
|
{
|
|
1854
1867
|
id: "lever",
|
|
1855
1868
|
geometryId: "dve_lever_model",
|
|
1856
|
-
position: [0, -5
|
|
1869
|
+
position: [0, -5, 8],
|
|
1857
1870
|
rotation: [90, -90, 45],
|
|
1858
|
-
rotationPivot: [
|
|
1871
|
+
rotationPivot: [8, 8, 8],
|
|
1859
1872
|
inputs: {
|
|
1860
|
-
|
|
1873
|
+
texture: "@leverTexture",
|
|
1861
1874
|
},
|
|
1862
1875
|
},
|
|
1863
1876
|
],
|
|
@@ -1866,19 +1879,19 @@ export const leverModel = {
|
|
|
1866
1879
|
id: "lever_base",
|
|
1867
1880
|
geometryId: "dve_lever_model_base",
|
|
1868
1881
|
rotation: [0, 0, 90],
|
|
1869
|
-
rotationPivot: [
|
|
1882
|
+
rotationPivot: [8, 8, 8],
|
|
1870
1883
|
inputs: {
|
|
1871
|
-
|
|
1884
|
+
texture: "@baseTexture",
|
|
1872
1885
|
},
|
|
1873
1886
|
},
|
|
1874
1887
|
{
|
|
1875
1888
|
id: "lever",
|
|
1876
1889
|
geometryId: "dve_lever_model",
|
|
1877
|
-
position: [0, 5
|
|
1890
|
+
position: [0, 5, 8],
|
|
1878
1891
|
rotation: [90, -90, -45],
|
|
1879
|
-
rotationPivot: [
|
|
1892
|
+
rotationPivot: [8, 8, 8],
|
|
1880
1893
|
inputs: {
|
|
1881
|
-
|
|
1894
|
+
texture: "@leverTexture",
|
|
1882
1895
|
},
|
|
1883
1896
|
},
|
|
1884
1897
|
],
|
|
@@ -1887,19 +1900,19 @@ export const leverModel = {
|
|
|
1887
1900
|
id: "lever_base",
|
|
1888
1901
|
geometryId: "dve_lever_model_base",
|
|
1889
1902
|
rotation: [0, 0, 90],
|
|
1890
|
-
rotationPivot: [
|
|
1903
|
+
rotationPivot: [8, 8, 8],
|
|
1891
1904
|
inputs: {
|
|
1892
|
-
|
|
1905
|
+
texture: "@baseTexture",
|
|
1893
1906
|
},
|
|
1894
1907
|
},
|
|
1895
1908
|
{
|
|
1896
1909
|
id: "lever",
|
|
1897
1910
|
geometryId: "dve_lever_model",
|
|
1898
|
-
position: [0, 5
|
|
1911
|
+
position: [0, 5, 8],
|
|
1899
1912
|
rotation: [90, -90, -45],
|
|
1900
|
-
rotationPivot: [
|
|
1913
|
+
rotationPivot: [8, 8, 8],
|
|
1901
1914
|
inputs: {
|
|
1902
|
-
|
|
1915
|
+
texture: "@leverTexture",
|
|
1903
1916
|
},
|
|
1904
1917
|
},
|
|
1905
1918
|
],
|
|
@@ -1908,19 +1921,19 @@ export const leverModel = {
|
|
|
1908
1921
|
id: "lever_base",
|
|
1909
1922
|
geometryId: "dve_lever_model_base",
|
|
1910
1923
|
rotation: [0, 0, 90],
|
|
1911
|
-
rotationPivot: [
|
|
1924
|
+
rotationPivot: [8, 8, 8],
|
|
1912
1925
|
inputs: {
|
|
1913
|
-
|
|
1926
|
+
texture: "@baseTexture",
|
|
1914
1927
|
},
|
|
1915
1928
|
},
|
|
1916
1929
|
{
|
|
1917
1930
|
id: "lever",
|
|
1918
1931
|
geometryId: "dve_lever_model",
|
|
1919
|
-
position: [0, -5
|
|
1932
|
+
position: [0, -5, 8],
|
|
1920
1933
|
rotation: [90, -90, 45],
|
|
1921
|
-
rotationPivot: [
|
|
1934
|
+
rotationPivot: [8, 8, 8],
|
|
1922
1935
|
inputs: {
|
|
1923
|
-
|
|
1936
|
+
texture: "@leverTexture",
|
|
1924
1937
|
},
|
|
1925
1938
|
},
|
|
1926
1939
|
],
|
|
@@ -1929,19 +1942,19 @@ export const leverModel = {
|
|
|
1929
1942
|
id: "lever_base",
|
|
1930
1943
|
geometryId: "dve_lever_model_base",
|
|
1931
1944
|
rotation: [0, 0, 90],
|
|
1932
|
-
rotationPivot: [
|
|
1945
|
+
rotationPivot: [8, 8, 8],
|
|
1933
1946
|
inputs: {
|
|
1934
|
-
|
|
1947
|
+
texture: "@baseTexture",
|
|
1935
1948
|
},
|
|
1936
1949
|
},
|
|
1937
1950
|
{
|
|
1938
1951
|
id: "lever",
|
|
1939
1952
|
geometryId: "dve_lever_model",
|
|
1940
|
-
position: [
|
|
1953
|
+
position: [8, 0, 5],
|
|
1941
1954
|
rotation: [90, -90 + 45, 0],
|
|
1942
|
-
rotationPivot: [
|
|
1955
|
+
rotationPivot: [8, 8, 8],
|
|
1943
1956
|
inputs: {
|
|
1944
|
-
|
|
1957
|
+
texture: "@leverTexture",
|
|
1945
1958
|
},
|
|
1946
1959
|
},
|
|
1947
1960
|
],
|
|
@@ -1950,19 +1963,19 @@ export const leverModel = {
|
|
|
1950
1963
|
id: "lever_base",
|
|
1951
1964
|
geometryId: "dve_lever_model_base",
|
|
1952
1965
|
rotation: [0, 0, 90],
|
|
1953
|
-
rotationPivot: [
|
|
1966
|
+
rotationPivot: [8, 8, 8],
|
|
1954
1967
|
inputs: {
|
|
1955
|
-
|
|
1968
|
+
texture: "@baseTexture",
|
|
1956
1969
|
},
|
|
1957
1970
|
},
|
|
1958
1971
|
{
|
|
1959
1972
|
id: "lever",
|
|
1960
1973
|
geometryId: "dve_lever_model",
|
|
1961
|
-
position: [
|
|
1974
|
+
position: [8, 0, -5],
|
|
1962
1975
|
rotation: [90, -90 - 45, 0],
|
|
1963
|
-
rotationPivot: [
|
|
1976
|
+
rotationPivot: [8, 8, 8],
|
|
1964
1977
|
inputs: {
|
|
1965
|
-
|
|
1978
|
+
texture: "@leverTexture",
|
|
1966
1979
|
},
|
|
1967
1980
|
},
|
|
1968
1981
|
],
|
|
@@ -1971,19 +1984,19 @@ export const leverModel = {
|
|
|
1971
1984
|
id: "lever_base",
|
|
1972
1985
|
geometryId: "dve_lever_model_base",
|
|
1973
1986
|
rotation: [0, 0, 90],
|
|
1974
|
-
rotationPivot: [
|
|
1987
|
+
rotationPivot: [8, 8, 8],
|
|
1975
1988
|
inputs: {
|
|
1976
|
-
|
|
1989
|
+
texture: "@baseTexture",
|
|
1977
1990
|
},
|
|
1978
1991
|
},
|
|
1979
1992
|
{
|
|
1980
1993
|
id: "lever",
|
|
1981
1994
|
geometryId: "dve_lever_model",
|
|
1982
|
-
position: [
|
|
1995
|
+
position: [8, 0, -5],
|
|
1983
1996
|
rotation: [90, -90 - 45, 0],
|
|
1984
|
-
rotationPivot: [
|
|
1997
|
+
rotationPivot: [8, 8, 8],
|
|
1985
1998
|
inputs: {
|
|
1986
|
-
|
|
1999
|
+
texture: "@leverTexture",
|
|
1987
2000
|
},
|
|
1988
2001
|
},
|
|
1989
2002
|
],
|
|
@@ -1992,19 +2005,19 @@ export const leverModel = {
|
|
|
1992
2005
|
id: "lever_base",
|
|
1993
2006
|
geometryId: "dve_lever_model_base",
|
|
1994
2007
|
rotation: [0, 0, 90],
|
|
1995
|
-
rotationPivot: [
|
|
2008
|
+
rotationPivot: [8, 8, 8],
|
|
1996
2009
|
inputs: {
|
|
1997
|
-
|
|
2010
|
+
texture: "@baseTexture",
|
|
1998
2011
|
},
|
|
1999
2012
|
},
|
|
2000
2013
|
{
|
|
2001
2014
|
id: "lever",
|
|
2002
2015
|
geometryId: "dve_lever_model",
|
|
2003
|
-
position: [
|
|
2016
|
+
position: [8, 0, 5],
|
|
2004
2017
|
rotation: [90, -90 + 45, 0],
|
|
2005
|
-
rotationPivot: [
|
|
2018
|
+
rotationPivot: [8, 8, 8],
|
|
2006
2019
|
inputs: {
|
|
2007
|
-
|
|
2020
|
+
texture: "@leverTexture",
|
|
2008
2021
|
},
|
|
2009
2022
|
},
|
|
2010
2023
|
],
|
|
@@ -2013,19 +2026,19 @@ export const leverModel = {
|
|
|
2013
2026
|
id: "lever_base",
|
|
2014
2027
|
geometryId: "dve_lever_model_base",
|
|
2015
2028
|
rotation: [0, 0, -90],
|
|
2016
|
-
rotationPivot: [
|
|
2029
|
+
rotationPivot: [8, 8, 8],
|
|
2017
2030
|
inputs: {
|
|
2018
|
-
|
|
2031
|
+
texture: "@baseTexture",
|
|
2019
2032
|
},
|
|
2020
2033
|
},
|
|
2021
2034
|
{
|
|
2022
2035
|
id: "lever",
|
|
2023
2036
|
geometryId: "dve_lever_model",
|
|
2024
|
-
position: [0, -5
|
|
2037
|
+
position: [0, -5, 8],
|
|
2025
2038
|
rotation: [90, 90, -45],
|
|
2026
|
-
rotationPivot: [
|
|
2039
|
+
rotationPivot: [8, 8, 8],
|
|
2027
2040
|
inputs: {
|
|
2028
|
-
|
|
2041
|
+
texture: "@leverTexture",
|
|
2029
2042
|
},
|
|
2030
2043
|
},
|
|
2031
2044
|
],
|
|
@@ -2034,19 +2047,19 @@ export const leverModel = {
|
|
|
2034
2047
|
id: "lever_base",
|
|
2035
2048
|
geometryId: "dve_lever_model_base",
|
|
2036
2049
|
rotation: [0, 0, -90],
|
|
2037
|
-
rotationPivot: [
|
|
2050
|
+
rotationPivot: [8, 8, 8],
|
|
2038
2051
|
inputs: {
|
|
2039
|
-
|
|
2052
|
+
texture: "@baseTexture",
|
|
2040
2053
|
},
|
|
2041
2054
|
},
|
|
2042
2055
|
{
|
|
2043
2056
|
id: "lever",
|
|
2044
2057
|
geometryId: "dve_lever_model",
|
|
2045
|
-
position: [0, 5
|
|
2058
|
+
position: [0, 5, 8],
|
|
2046
2059
|
rotation: [90, 90, 45],
|
|
2047
|
-
rotationPivot: [
|
|
2060
|
+
rotationPivot: [8, 8, 8],
|
|
2048
2061
|
inputs: {
|
|
2049
|
-
|
|
2062
|
+
texture: "@leverTexture",
|
|
2050
2063
|
},
|
|
2051
2064
|
},
|
|
2052
2065
|
],
|
|
@@ -2055,19 +2068,19 @@ export const leverModel = {
|
|
|
2055
2068
|
id: "lever_base",
|
|
2056
2069
|
geometryId: "dve_lever_model_base",
|
|
2057
2070
|
rotation: [0, 0, -90],
|
|
2058
|
-
rotationPivot: [
|
|
2071
|
+
rotationPivot: [8, 8, 8],
|
|
2059
2072
|
inputs: {
|
|
2060
|
-
|
|
2073
|
+
texture: "@baseTexture",
|
|
2061
2074
|
},
|
|
2062
2075
|
},
|
|
2063
2076
|
{
|
|
2064
2077
|
id: "lever",
|
|
2065
2078
|
geometryId: "dve_lever_model",
|
|
2066
|
-
position: [0, 5
|
|
2079
|
+
position: [0, 5, 8],
|
|
2067
2080
|
rotation: [90, 90, 45],
|
|
2068
|
-
rotationPivot: [
|
|
2081
|
+
rotationPivot: [8, 8, 8],
|
|
2069
2082
|
inputs: {
|
|
2070
|
-
|
|
2083
|
+
texture: "@leverTexture",
|
|
2071
2084
|
},
|
|
2072
2085
|
},
|
|
2073
2086
|
],
|
|
@@ -2076,19 +2089,19 @@ export const leverModel = {
|
|
|
2076
2089
|
id: "lever_base",
|
|
2077
2090
|
geometryId: "dve_lever_model_base",
|
|
2078
2091
|
rotation: [0, 0, -90],
|
|
2079
|
-
rotationPivot: [
|
|
2092
|
+
rotationPivot: [8, 8, 8],
|
|
2080
2093
|
inputs: {
|
|
2081
|
-
|
|
2094
|
+
texture: "@baseTexture",
|
|
2082
2095
|
},
|
|
2083
2096
|
},
|
|
2084
2097
|
{
|
|
2085
2098
|
id: "lever",
|
|
2086
2099
|
geometryId: "dve_lever_model",
|
|
2087
|
-
position: [0, -5
|
|
2100
|
+
position: [0, -5, 8],
|
|
2088
2101
|
rotation: [90, 90, -45],
|
|
2089
|
-
rotationPivot: [
|
|
2102
|
+
rotationPivot: [8, 8, 8],
|
|
2090
2103
|
inputs: {
|
|
2091
|
-
|
|
2104
|
+
texture: "@leverTexture",
|
|
2092
2105
|
},
|
|
2093
2106
|
},
|
|
2094
2107
|
],
|
|
@@ -2097,19 +2110,19 @@ export const leverModel = {
|
|
|
2097
2110
|
id: "lever_base",
|
|
2098
2111
|
geometryId: "dve_lever_model_base",
|
|
2099
2112
|
rotation: [0, 0, -90],
|
|
2100
|
-
rotationPivot: [
|
|
2113
|
+
rotationPivot: [8, 8, 8],
|
|
2101
2114
|
inputs: {
|
|
2102
|
-
|
|
2115
|
+
texture: "@baseTexture",
|
|
2103
2116
|
},
|
|
2104
2117
|
},
|
|
2105
2118
|
{
|
|
2106
2119
|
id: "lever",
|
|
2107
2120
|
geometryId: "dve_lever_model",
|
|
2108
|
-
position: [
|
|
2121
|
+
position: [8, 0, 5],
|
|
2109
2122
|
rotation: [90, 90 - 45, 0],
|
|
2110
|
-
rotationPivot: [
|
|
2123
|
+
rotationPivot: [8, 8, 8],
|
|
2111
2124
|
inputs: {
|
|
2112
|
-
|
|
2125
|
+
texture: "@leverTexture",
|
|
2113
2126
|
},
|
|
2114
2127
|
},
|
|
2115
2128
|
],
|
|
@@ -2118,19 +2131,19 @@ export const leverModel = {
|
|
|
2118
2131
|
id: "lever_base",
|
|
2119
2132
|
geometryId: "dve_lever_model_base",
|
|
2120
2133
|
rotation: [0, 0, -90],
|
|
2121
|
-
rotationPivot: [
|
|
2134
|
+
rotationPivot: [8, 8, 8],
|
|
2122
2135
|
inputs: {
|
|
2123
|
-
|
|
2136
|
+
texture: "@baseTexture",
|
|
2124
2137
|
},
|
|
2125
2138
|
},
|
|
2126
2139
|
{
|
|
2127
2140
|
id: "lever",
|
|
2128
2141
|
geometryId: "dve_lever_model",
|
|
2129
|
-
position: [
|
|
2142
|
+
position: [8, 0, -5],
|
|
2130
2143
|
rotation: [90, 90 + 45, 0],
|
|
2131
|
-
rotationPivot: [
|
|
2144
|
+
rotationPivot: [8, 8, 8],
|
|
2132
2145
|
inputs: {
|
|
2133
|
-
|
|
2146
|
+
texture: "@leverTexture",
|
|
2134
2147
|
},
|
|
2135
2148
|
},
|
|
2136
2149
|
],
|
|
@@ -2139,19 +2152,19 @@ export const leverModel = {
|
|
|
2139
2152
|
id: "lever_base",
|
|
2140
2153
|
geometryId: "dve_lever_model_base",
|
|
2141
2154
|
rotation: [0, 0, -90],
|
|
2142
|
-
rotationPivot: [
|
|
2155
|
+
rotationPivot: [8, 8, 8],
|
|
2143
2156
|
inputs: {
|
|
2144
|
-
|
|
2157
|
+
texture: "@baseTexture",
|
|
2145
2158
|
},
|
|
2146
2159
|
},
|
|
2147
2160
|
{
|
|
2148
2161
|
id: "lever",
|
|
2149
2162
|
geometryId: "dve_lever_model",
|
|
2150
|
-
position: [
|
|
2163
|
+
position: [8, 0, -5],
|
|
2151
2164
|
rotation: [90, 90 + 45, 0],
|
|
2152
|
-
rotationPivot: [
|
|
2165
|
+
rotationPivot: [8, 8, 8],
|
|
2153
2166
|
inputs: {
|
|
2154
|
-
|
|
2167
|
+
texture: "@leverTexture",
|
|
2155
2168
|
},
|
|
2156
2169
|
},
|
|
2157
2170
|
],
|
|
@@ -2160,19 +2173,19 @@ export const leverModel = {
|
|
|
2160
2173
|
id: "lever_base",
|
|
2161
2174
|
geometryId: "dve_lever_model_base",
|
|
2162
2175
|
rotation: [0, 0, -90],
|
|
2163
|
-
rotationPivot: [
|
|
2176
|
+
rotationPivot: [8, 8, 8],
|
|
2164
2177
|
inputs: {
|
|
2165
|
-
|
|
2178
|
+
texture: "@baseTexture",
|
|
2166
2179
|
},
|
|
2167
2180
|
},
|
|
2168
2181
|
{
|
|
2169
2182
|
id: "lever",
|
|
2170
2183
|
geometryId: "dve_lever_model",
|
|
2171
|
-
position: [
|
|
2184
|
+
position: [8, 0, 5],
|
|
2172
2185
|
rotation: [90, 90 - 45, 0],
|
|
2173
|
-
rotationPivot: [
|
|
2186
|
+
rotationPivot: [8, 8, 8],
|
|
2174
2187
|
inputs: {
|
|
2175
|
-
|
|
2188
|
+
texture: "@leverTexture",
|
|
2176
2189
|
},
|
|
2177
2190
|
},
|
|
2178
2191
|
],
|