@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
|
@@ -18,18 +18,18 @@ export const simpleCube = {
|
|
|
18
18
|
id: "cube",
|
|
19
19
|
geometryId: "dve_cube",
|
|
20
20
|
inputs: {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
21
|
+
upTex: "@texture",
|
|
22
|
+
upTexTransparent: "@transparent",
|
|
23
|
+
downTex: "@texture",
|
|
24
|
+
downTexTransparent: "@transparent",
|
|
25
|
+
northTex: "@texture",
|
|
26
|
+
northTexTransparent: "@transparent",
|
|
27
|
+
southTex: "@texture",
|
|
28
|
+
southTexTransparent: "@transparent",
|
|
29
|
+
eastTex: "@texture",
|
|
30
|
+
eastTexTransparent: "@transparent",
|
|
31
|
+
westTex: "@texture",
|
|
32
|
+
westTexTransparent: "@transparent",
|
|
33
33
|
},
|
|
34
34
|
},
|
|
35
35
|
],
|
|
@@ -89,14 +89,14 @@ export const orientedCube = {
|
|
|
89
89
|
id: "cube",
|
|
90
90
|
geometryId: "dve_cube",
|
|
91
91
|
inputs: {
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
92
|
+
upTex: "@upTex",
|
|
93
|
+
upTexRotation: 0,
|
|
94
|
+
downTex: "@downTex",
|
|
95
|
+
downTexRotation: 0,
|
|
96
|
+
northTex: "@northTex",
|
|
97
|
+
southTex: "@southTex",
|
|
98
|
+
eastTex: "@eastTex",
|
|
99
|
+
westTex: "@westTex",
|
|
100
100
|
},
|
|
101
101
|
},
|
|
102
102
|
],
|
|
@@ -105,14 +105,14 @@ export const orientedCube = {
|
|
|
105
105
|
id: "cube",
|
|
106
106
|
geometryId: "dve_cube",
|
|
107
107
|
inputs: {
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
108
|
+
upTex: "@upTex",
|
|
109
|
+
upTexRotation: 180,
|
|
110
|
+
downTex: "@downTex",
|
|
111
|
+
downTexRotation: 180,
|
|
112
|
+
northTex: "@northTex",
|
|
113
|
+
southTex: "@southTex",
|
|
114
|
+
eastTex: "@eastTex",
|
|
115
|
+
westTex: "@westTex",
|
|
116
116
|
},
|
|
117
117
|
},
|
|
118
118
|
],
|
|
@@ -121,14 +121,14 @@ export const orientedCube = {
|
|
|
121
121
|
id: "cube",
|
|
122
122
|
geometryId: "dve_cube",
|
|
123
123
|
inputs: {
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
124
|
+
upTex: "@upTex",
|
|
125
|
+
upTexRotation: 90,
|
|
126
|
+
downTex: "@downTex",
|
|
127
|
+
downTexRotation: 90,
|
|
128
|
+
northTex: "@eastTex",
|
|
129
|
+
southTex: "@westTex",
|
|
130
|
+
eastTex: "@southTex",
|
|
131
|
+
westTex: "@northTex",
|
|
132
132
|
},
|
|
133
133
|
},
|
|
134
134
|
],
|
|
@@ -137,14 +137,14 @@ export const orientedCube = {
|
|
|
137
137
|
id: "cube",
|
|
138
138
|
geometryId: "dve_cube",
|
|
139
139
|
inputs: {
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
140
|
+
upTex: "@upTex",
|
|
141
|
+
upTexRotation: 270,
|
|
142
|
+
downTex: "@downTex",
|
|
143
|
+
downTexRotation: 270,
|
|
144
|
+
northTex: "@westTex",
|
|
145
|
+
southTex: "@eastTex",
|
|
146
|
+
eastTex: "@northTex",
|
|
147
|
+
westTex: "@southTex",
|
|
148
148
|
},
|
|
149
149
|
},
|
|
150
150
|
],
|
|
@@ -153,18 +153,18 @@ export const orientedCube = {
|
|
|
153
153
|
id: "cube",
|
|
154
154
|
geometryId: "dve_cube",
|
|
155
155
|
inputs: {
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
156
|
+
upTex: "@downTex",
|
|
157
|
+
upTexRotation: 0,
|
|
158
|
+
downTex: "@upTex",
|
|
159
|
+
downTexRotation: 0,
|
|
160
|
+
northTex: "@northTex",
|
|
161
|
+
southTex: "@southTex",
|
|
162
|
+
eastTex: "@eastTex",
|
|
163
|
+
westTex: "@westTex",
|
|
164
|
+
northTexRotation: 180,
|
|
165
|
+
southTexRotation: 180,
|
|
166
|
+
eastTexRotation: 180,
|
|
167
|
+
westTexRotation: 180,
|
|
168
168
|
},
|
|
169
169
|
},
|
|
170
170
|
],
|
|
@@ -173,18 +173,18 @@ export const orientedCube = {
|
|
|
173
173
|
id: "cube",
|
|
174
174
|
geometryId: "dve_cube",
|
|
175
175
|
inputs: {
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
176
|
+
upTex: "@downTex",
|
|
177
|
+
upTexRotation: 180,
|
|
178
|
+
downTex: "@upTex",
|
|
179
|
+
downTexRotation: 180,
|
|
180
|
+
northTex: "@southTex",
|
|
181
|
+
southTex: "@northTex",
|
|
182
|
+
eastTex: "@westTex",
|
|
183
|
+
westTex: "@eastTex",
|
|
184
|
+
northTexRotation: 180,
|
|
185
|
+
southTexRotation: 180,
|
|
186
|
+
eastTexRotation: 180,
|
|
187
|
+
westTexRotation: 180,
|
|
188
188
|
},
|
|
189
189
|
},
|
|
190
190
|
],
|
|
@@ -193,18 +193,18 @@ export const orientedCube = {
|
|
|
193
193
|
id: "cube",
|
|
194
194
|
geometryId: "dve_cube",
|
|
195
195
|
inputs: {
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
196
|
+
upTex: "@downTex",
|
|
197
|
+
upTexRotation: 90,
|
|
198
|
+
downTex: "@upTex",
|
|
199
|
+
downTexRotation: 90,
|
|
200
|
+
northTex: "@eastTex",
|
|
201
|
+
southTex: "@westTex",
|
|
202
|
+
eastTex: "@southTex",
|
|
203
|
+
westTex: "@northTex",
|
|
204
|
+
northTexRotation: 180,
|
|
205
|
+
southTexRotation: 180,
|
|
206
|
+
eastTexRotation: 180,
|
|
207
|
+
westTexRotation: 180,
|
|
208
208
|
},
|
|
209
209
|
},
|
|
210
210
|
],
|
|
@@ -213,18 +213,18 @@ export const orientedCube = {
|
|
|
213
213
|
id: "cube",
|
|
214
214
|
geometryId: "dve_cube",
|
|
215
215
|
inputs: {
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
216
|
+
upTex: "@downTex",
|
|
217
|
+
upTexRotation: 270,
|
|
218
|
+
downTex: "@upTex",
|
|
219
|
+
downTexRotation: 270,
|
|
220
|
+
northTex: "@westTex",
|
|
221
|
+
southTex: "@eastTex",
|
|
222
|
+
eastTex: "@northTex",
|
|
223
|
+
westTex: "@southTex",
|
|
224
|
+
northTexRotation: 180,
|
|
225
|
+
southTexRotation: 180,
|
|
226
|
+
eastTexRotation: 180,
|
|
227
|
+
westTexRotation: 180,
|
|
228
228
|
},
|
|
229
229
|
},
|
|
230
230
|
],
|
|
@@ -233,18 +233,18 @@ export const orientedCube = {
|
|
|
233
233
|
id: "cube",
|
|
234
234
|
geometryId: "dve_cube",
|
|
235
235
|
inputs: {
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
236
|
+
upTex: "@northTex",
|
|
237
|
+
northTex: "@upTex",
|
|
238
|
+
northTexRotation: 0,
|
|
239
|
+
southTex: "@downTex",
|
|
240
|
+
southTexRotation: 0,
|
|
241
|
+
downTex: "@southTex",
|
|
242
|
+
eastTex: "@eastTex",
|
|
243
|
+
westTex: "@westTex",
|
|
244
|
+
upTexRotation: 0,
|
|
245
|
+
downTexRotation: 0,
|
|
246
|
+
eastTexRotation: 90,
|
|
247
|
+
westTexRotation: 90,
|
|
248
248
|
},
|
|
249
249
|
},
|
|
250
250
|
],
|
|
@@ -253,18 +253,18 @@ export const orientedCube = {
|
|
|
253
253
|
id: "cube",
|
|
254
254
|
geometryId: "dve_cube",
|
|
255
255
|
inputs: {
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
256
|
+
upTex: "@southTex",
|
|
257
|
+
northTex: "@upTex",
|
|
258
|
+
northTexRotation: 180,
|
|
259
|
+
southTex: "@downTex",
|
|
260
|
+
southTexRotation: 180,
|
|
261
|
+
downTex: "@northTex",
|
|
262
|
+
eastTex: "@westTex",
|
|
263
|
+
westTex: "@eastTex",
|
|
264
|
+
upTexRotation: 0,
|
|
265
|
+
downTexRotation: 0,
|
|
266
|
+
eastTexRotation: 90,
|
|
267
|
+
westTexRotation: 90,
|
|
268
268
|
},
|
|
269
269
|
},
|
|
270
270
|
],
|
|
@@ -273,18 +273,18 @@ export const orientedCube = {
|
|
|
273
273
|
id: "cube",
|
|
274
274
|
geometryId: "dve_cube",
|
|
275
275
|
inputs: {
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
276
|
+
upTex: "@westTex",
|
|
277
|
+
northTex: "@upTex",
|
|
278
|
+
northTexRotation: 90,
|
|
279
|
+
southTex: "@downTex",
|
|
280
|
+
southTexRotation: 90,
|
|
281
|
+
downTex: "@eastTex",
|
|
282
|
+
eastTex: "@southTex",
|
|
283
|
+
westTex: "@northTex",
|
|
284
|
+
upTexRotation: 0,
|
|
285
|
+
downTexRotation: 0,
|
|
286
|
+
eastTexRotation: 90,
|
|
287
|
+
westTexRotation: 90,
|
|
288
288
|
},
|
|
289
289
|
},
|
|
290
290
|
],
|
|
@@ -293,18 +293,18 @@ export const orientedCube = {
|
|
|
293
293
|
id: "cube",
|
|
294
294
|
geometryId: "dve_cube",
|
|
295
295
|
inputs: {
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
296
|
+
upTex: "@eastTex",
|
|
297
|
+
northTex: "@upTex",
|
|
298
|
+
northTexRotation: 270,
|
|
299
|
+
southTex: "@downTex",
|
|
300
|
+
southTexRotation: 270,
|
|
301
|
+
downTex: "@westTex",
|
|
302
|
+
eastTex: "@northTex",
|
|
303
|
+
westTex: "@southTex",
|
|
304
|
+
upTexRotation: 0,
|
|
305
|
+
downTexRotation: 0,
|
|
306
|
+
eastTexRotation: 90,
|
|
307
|
+
westTexRotation: 90,
|
|
308
308
|
},
|
|
309
309
|
},
|
|
310
310
|
],
|
|
@@ -313,18 +313,18 @@ export const orientedCube = {
|
|
|
313
313
|
id: "cube",
|
|
314
314
|
geometryId: "dve_cube",
|
|
315
315
|
inputs: {
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
316
|
+
upTex: "@southTex",
|
|
317
|
+
northTex: "@downTex",
|
|
318
|
+
northTexRotation: 180,
|
|
319
|
+
southTex: "@upTex",
|
|
320
|
+
southTexRotation: 180,
|
|
321
|
+
downTex: "@northTex",
|
|
322
|
+
eastTex: "@westTex",
|
|
323
|
+
westTex: "@eastTex",
|
|
324
|
+
upTexRotation: 180,
|
|
325
|
+
downTexRotation: 180,
|
|
326
|
+
eastTexRotation: 270,
|
|
327
|
+
westTexRotation: 270,
|
|
328
328
|
},
|
|
329
329
|
},
|
|
330
330
|
],
|
|
@@ -333,18 +333,18 @@ export const orientedCube = {
|
|
|
333
333
|
id: "cube",
|
|
334
334
|
geometryId: "dve_cube",
|
|
335
335
|
inputs: {
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
336
|
+
upTex: "@northTex",
|
|
337
|
+
northTex: "@downTex",
|
|
338
|
+
northTexRotation: 0,
|
|
339
|
+
southTex: "@upTex",
|
|
340
|
+
southTexRotation: 0,
|
|
341
|
+
downTex: "@southTex",
|
|
342
|
+
eastTex: "@eastTex",
|
|
343
|
+
westTex: "@westTex",
|
|
344
|
+
upTexRotation: 180,
|
|
345
|
+
downTexRotation: 180,
|
|
346
|
+
eastTexRotation: 270,
|
|
347
|
+
westTexRotation: 270,
|
|
348
348
|
},
|
|
349
349
|
},
|
|
350
350
|
],
|
|
@@ -353,18 +353,18 @@ export const orientedCube = {
|
|
|
353
353
|
id: "cube",
|
|
354
354
|
geometryId: "dve_cube",
|
|
355
355
|
inputs: {
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
356
|
+
upTex: "@westTex",
|
|
357
|
+
northTex: "@downTex",
|
|
358
|
+
northTexRotation: 90,
|
|
359
|
+
southTex: "@upTex",
|
|
360
|
+
southTexRotation: 90,
|
|
361
|
+
downTex: "@eastTex",
|
|
362
|
+
eastTex: "@southTex",
|
|
363
|
+
westTex: "@northTex",
|
|
364
|
+
upTexRotation: 180,
|
|
365
|
+
downTexRotation: 180,
|
|
366
|
+
eastTexRotation: 270,
|
|
367
|
+
westTexRotation: 270,
|
|
368
368
|
},
|
|
369
369
|
},
|
|
370
370
|
],
|
|
@@ -373,18 +373,18 @@ export const orientedCube = {
|
|
|
373
373
|
id: "cube",
|
|
374
374
|
geometryId: "dve_cube",
|
|
375
375
|
inputs: {
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
376
|
+
upTex: "@eastTex",
|
|
377
|
+
northTex: "@downTex",
|
|
378
|
+
northTexRotation: 270,
|
|
379
|
+
southTex: "@upTex",
|
|
380
|
+
southTexRotation: 270,
|
|
381
|
+
downTex: "@westTex",
|
|
382
|
+
eastTex: "@northTex",
|
|
383
|
+
westTex: "@southTex",
|
|
384
|
+
upTexRotation: 180,
|
|
385
|
+
downTexRotation: 180,
|
|
386
|
+
eastTexRotation: 270,
|
|
387
|
+
westTexRotation: 270,
|
|
388
388
|
},
|
|
389
389
|
},
|
|
390
390
|
],
|
|
@@ -393,18 +393,18 @@ export const orientedCube = {
|
|
|
393
393
|
id: "cube",
|
|
394
394
|
geometryId: "dve_cube",
|
|
395
395
|
inputs: {
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
396
|
+
upTex: "@northTex",
|
|
397
|
+
upTexRotation: 90,
|
|
398
|
+
downTex: "@southTex",
|
|
399
|
+
downTexRotation: 90,
|
|
400
|
+
northTex: "@eastTex",
|
|
401
|
+
southTex: "@westTex",
|
|
402
|
+
eastTex: "@upTex",
|
|
403
|
+
westTex: "@downTex",
|
|
404
|
+
eastTexRotation: 0,
|
|
405
|
+
westTexRotation: 0,
|
|
406
|
+
northTexRotation: 90,
|
|
407
|
+
southTexRotation: 90,
|
|
408
408
|
},
|
|
409
409
|
},
|
|
410
410
|
],
|
|
@@ -413,18 +413,18 @@ export const orientedCube = {
|
|
|
413
413
|
id: "cube",
|
|
414
414
|
geometryId: "dve_cube",
|
|
415
415
|
inputs: {
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
416
|
+
upTex: "@southTex",
|
|
417
|
+
upTexRotation: 90,
|
|
418
|
+
downTex: "@northTex",
|
|
419
|
+
downTexRotation: 90,
|
|
420
|
+
northTex: "@westTex",
|
|
421
|
+
southTex: "@eastTex",
|
|
422
|
+
eastTex: "@upTex",
|
|
423
|
+
westTex: "@downTex",
|
|
424
|
+
eastTexRotation: 180,
|
|
425
|
+
westTexRotation: 180,
|
|
426
|
+
northTexRotation: 90,
|
|
427
|
+
southTexRotation: 90,
|
|
428
428
|
},
|
|
429
429
|
},
|
|
430
430
|
],
|
|
@@ -433,18 +433,18 @@ export const orientedCube = {
|
|
|
433
433
|
id: "cube",
|
|
434
434
|
geometryId: "dve_cube",
|
|
435
435
|
inputs: {
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
436
|
+
upTex: "@eastTex",
|
|
437
|
+
upTexRotation: 90,
|
|
438
|
+
downTex: "@westTex",
|
|
439
|
+
downTexRotation: 90,
|
|
440
|
+
northTex: "@southTex",
|
|
441
|
+
southTex: "@northTex",
|
|
442
|
+
eastTex: "@upTex",
|
|
443
|
+
westTex: "@downTex",
|
|
444
|
+
eastTexRotation: 270,
|
|
445
|
+
westTexRotation: 270,
|
|
446
|
+
northTexRotation: 90,
|
|
447
|
+
southTexRotation: 90,
|
|
448
448
|
},
|
|
449
449
|
},
|
|
450
450
|
],
|
|
@@ -453,18 +453,18 @@ export const orientedCube = {
|
|
|
453
453
|
id: "cube",
|
|
454
454
|
geometryId: "dve_cube",
|
|
455
455
|
inputs: {
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
456
|
+
upTex: "@westTex",
|
|
457
|
+
upTexRotation: 90,
|
|
458
|
+
downTex: "@eastTex",
|
|
459
|
+
downTexRotation: 90,
|
|
460
|
+
northTex: "@northTex",
|
|
461
|
+
southTex: "@southTex",
|
|
462
|
+
eastTex: "@upTex",
|
|
463
|
+
westTex: "@downTex",
|
|
464
|
+
eastTexRotation: 90,
|
|
465
|
+
westTexRotation: 90,
|
|
466
|
+
northTexRotation: 90,
|
|
467
|
+
southTexRotation: 90,
|
|
468
468
|
},
|
|
469
469
|
},
|
|
470
470
|
],
|
|
@@ -473,18 +473,18 @@ export const orientedCube = {
|
|
|
473
473
|
id: "cube",
|
|
474
474
|
geometryId: "dve_cube",
|
|
475
475
|
inputs: {
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
476
|
+
upTex: "@northTex",
|
|
477
|
+
upTexRotation: 270,
|
|
478
|
+
downTex: "@southTex",
|
|
479
|
+
downTexRotation: 270,
|
|
480
|
+
northTex: "@eastTex",
|
|
481
|
+
southTex: "@westTex",
|
|
482
|
+
eastTex: "@downTex",
|
|
483
|
+
westTex: "@upTex",
|
|
484
|
+
eastTexRotation: 0,
|
|
485
|
+
westTexRotation: 0,
|
|
486
|
+
northTexRotation: 270,
|
|
487
|
+
southTexRotation: 270,
|
|
488
488
|
},
|
|
489
489
|
},
|
|
490
490
|
],
|
|
@@ -493,18 +493,18 @@ export const orientedCube = {
|
|
|
493
493
|
id: "cube",
|
|
494
494
|
geometryId: "dve_cube",
|
|
495
495
|
inputs: {
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
496
|
+
upTex: "@southTex",
|
|
497
|
+
upTexRotation: 270,
|
|
498
|
+
downTex: "@northTex",
|
|
499
|
+
downTexRotation: 270,
|
|
500
|
+
northTex: "@westTex",
|
|
501
|
+
southTex: "@eastTex",
|
|
502
|
+
eastTex: "@downTex",
|
|
503
|
+
westTex: "@upTex",
|
|
504
|
+
eastTexRotation: 180,
|
|
505
|
+
westTexRotation: 180,
|
|
506
|
+
northTexRotation: 270,
|
|
507
|
+
southTexRotation: 270,
|
|
508
508
|
},
|
|
509
509
|
},
|
|
510
510
|
],
|
|
@@ -513,18 +513,18 @@ export const orientedCube = {
|
|
|
513
513
|
id: "cube",
|
|
514
514
|
geometryId: "dve_cube",
|
|
515
515
|
inputs: {
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
516
|
+
upTex: "@eastTex",
|
|
517
|
+
upTexRotation: 270,
|
|
518
|
+
downTex: "@westTex",
|
|
519
|
+
downTexRotation: 270,
|
|
520
|
+
northTex: "@southTex",
|
|
521
|
+
southTex: "@northTex",
|
|
522
|
+
eastTex: "@downTex",
|
|
523
|
+
westTex: "@upTex",
|
|
524
|
+
eastTexRotation: 270,
|
|
525
|
+
westTexRotation: 270,
|
|
526
|
+
northTexRotation: 270,
|
|
527
|
+
southTexRotation: 270,
|
|
528
528
|
},
|
|
529
529
|
},
|
|
530
530
|
],
|
|
@@ -533,18 +533,18 @@ export const orientedCube = {
|
|
|
533
533
|
id: "cube",
|
|
534
534
|
geometryId: "dve_cube",
|
|
535
535
|
inputs: {
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
536
|
+
upTex: "@westTex",
|
|
537
|
+
upTexRotation: 270,
|
|
538
|
+
downTex: "@eastTex",
|
|
539
|
+
downTexRotation: 270,
|
|
540
|
+
northTex: "@northTex",
|
|
541
|
+
southTex: "@southTex",
|
|
542
|
+
eastTex: "@downTex",
|
|
543
|
+
westTex: "@upTex",
|
|
544
|
+
eastTexRotation: 90,
|
|
545
|
+
westTexRotation: 90,
|
|
546
|
+
northTexRotation: 270,
|
|
547
|
+
southTexRotation: 270,
|
|
548
548
|
},
|
|
549
549
|
},
|
|
550
550
|
],
|
|
@@ -582,12 +582,12 @@ export const simpleHalfCube = {
|
|
|
582
582
|
id: "half_cube",
|
|
583
583
|
geometryId: "dve_half_cube_down_half",
|
|
584
584
|
inputs: {
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
585
|
+
upTex: "@upDownTextures",
|
|
586
|
+
downTex: "@upDownTextures",
|
|
587
|
+
northTex: "@sideTextures",
|
|
588
|
+
southTex: "@sideTextures",
|
|
589
|
+
eastTex: "@sideTextures",
|
|
590
|
+
westTex: "@sideTextures",
|
|
591
591
|
},
|
|
592
592
|
},
|
|
593
593
|
],
|
|
@@ -597,12 +597,12 @@ export const simpleHalfCube = {
|
|
|
597
597
|
position: [0, 0.5, 0],
|
|
598
598
|
geometryId: "dve_half_cube_down_half",
|
|
599
599
|
inputs: {
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
600
|
+
upTex: "@upDownTextures",
|
|
601
|
+
downTex: "@upDownTextures",
|
|
602
|
+
northTex: "@sideTextures",
|
|
603
|
+
southTex: "@sideTextures",
|
|
604
|
+
eastTex: "@sideTextures",
|
|
605
|
+
westTex: "@sideTextures",
|
|
606
606
|
},
|
|
607
607
|
},
|
|
608
608
|
],
|
|
@@ -611,12 +611,12 @@ export const simpleHalfCube = {
|
|
|
611
611
|
id: "half_cube",
|
|
612
612
|
geometryId: "dve_half_cube_south_half",
|
|
613
613
|
inputs: {
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
614
|
+
upTex: "@sideTextures",
|
|
615
|
+
downTex: "@sideTextures",
|
|
616
|
+
northTex: "@upDownTextures",
|
|
617
|
+
southTex: "@upDownTextures",
|
|
618
|
+
eastTex: "@sideTextures",
|
|
619
|
+
westTex: "@sideTextures",
|
|
620
620
|
},
|
|
621
621
|
},
|
|
622
622
|
],
|
|
@@ -626,12 +626,12 @@ export const simpleHalfCube = {
|
|
|
626
626
|
position: [0, 0, 0.5],
|
|
627
627
|
geometryId: "dve_half_cube_south_half",
|
|
628
628
|
inputs: {
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
629
|
+
upTex: "@sideTextures",
|
|
630
|
+
downTex: "@sideTextures",
|
|
631
|
+
northTex: "@upDownTextures",
|
|
632
|
+
southTex: "@upDownTextures",
|
|
633
|
+
eastTex: "@sideTextures",
|
|
634
|
+
westTex: "@sideTextures",
|
|
635
635
|
},
|
|
636
636
|
},
|
|
637
637
|
],
|
|
@@ -640,12 +640,12 @@ export const simpleHalfCube = {
|
|
|
640
640
|
id: "half_cube",
|
|
641
641
|
geometryId: "dve_half_cube_west_half",
|
|
642
642
|
inputs: {
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
643
|
+
upTex: "@sideTextures",
|
|
644
|
+
downTex: "@sideTextures",
|
|
645
|
+
northTex: "@sideTextures",
|
|
646
|
+
southTex: "@sideTextures",
|
|
647
|
+
eastTex: "@upDownTextures",
|
|
648
|
+
westTex: "@upDownTextures",
|
|
649
649
|
},
|
|
650
650
|
},
|
|
651
651
|
],
|
|
@@ -655,12 +655,12 @@ export const simpleHalfCube = {
|
|
|
655
655
|
position: [0.5, 0, 0],
|
|
656
656
|
geometryId: "dve_half_cube_west_half",
|
|
657
657
|
inputs: {
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
658
|
+
upTex: "@sideTextures",
|
|
659
|
+
downTex: "@sideTextures",
|
|
660
|
+
northTex: "@sideTextures",
|
|
661
|
+
southTex: "@sideTextures",
|
|
662
|
+
eastTex: "@upDownTextures",
|
|
663
|
+
westTex: "@upDownTextures",
|
|
664
664
|
},
|
|
665
665
|
},
|
|
666
666
|
],
|
|
@@ -762,12 +762,12 @@ export const pillarCube = {
|
|
|
762
762
|
id: "cube",
|
|
763
763
|
geometryId: "dve_cube",
|
|
764
764
|
inputs: {
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
765
|
+
upTex: "@upTex",
|
|
766
|
+
downTex: "@downTex",
|
|
767
|
+
northTex: "@sideDisconnectedTex",
|
|
768
|
+
southTex: "@sideDisconnectedTex",
|
|
769
|
+
eastTex: "@sideDisconnectedTex",
|
|
770
|
+
westTex: "@sideDisconnectedTex",
|
|
771
771
|
},
|
|
772
772
|
},
|
|
773
773
|
],
|
|
@@ -776,12 +776,12 @@ export const pillarCube = {
|
|
|
776
776
|
id: "cube",
|
|
777
777
|
geometryId: "dve_cube",
|
|
778
778
|
inputs: {
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
779
|
+
upTex: "@upTex",
|
|
780
|
+
downTex: "@downTex",
|
|
781
|
+
northTex: "@sideUpTex",
|
|
782
|
+
southTex: "@sideUpTex",
|
|
783
|
+
eastTex: "@sideUpTex",
|
|
784
|
+
westTex: "@sideUpTex",
|
|
785
785
|
},
|
|
786
786
|
},
|
|
787
787
|
],
|
|
@@ -790,12 +790,12 @@ export const pillarCube = {
|
|
|
790
790
|
id: "cube",
|
|
791
791
|
geometryId: "dve_cube",
|
|
792
792
|
inputs: {
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
793
|
+
upTex: "@upTex",
|
|
794
|
+
downTex: "@downTex",
|
|
795
|
+
northTex: "@sideDownTex",
|
|
796
|
+
southTex: "@sideDownTex",
|
|
797
|
+
eastTex: "@sideDownTex",
|
|
798
|
+
westTex: "@sideDownTex",
|
|
799
799
|
},
|
|
800
800
|
},
|
|
801
801
|
],
|
|
@@ -804,12 +804,12 @@ export const pillarCube = {
|
|
|
804
804
|
id: "cube",
|
|
805
805
|
geometryId: "dve_cube",
|
|
806
806
|
inputs: {
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
807
|
+
upTex: "@upTex",
|
|
808
|
+
downTex: "@downTex",
|
|
809
|
+
northTex: "@sideConnectedTex",
|
|
810
|
+
southTex: "@sideConnectedTex",
|
|
811
|
+
eastTex: "@sideConnectedTex",
|
|
812
|
+
westTex: "@sideConnectedTex",
|
|
813
813
|
},
|
|
814
814
|
},
|
|
815
815
|
],
|