@divinevoxel/vlox 0.0.72 → 0.0.74
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/Base/Remote/InitDataSync.js +4 -0
- package/Contexts/Base/Remote/InitWorldDataSync.js +1 -1
- package/Contexts/Render/DivineVoxelEngineRender.d.ts +2 -1
- package/Contexts/World/DivineVoxelEngineWorld.d.ts +2 -1
- package/Init/StartConstructor.js +8 -4
- package/Init/StartWorld.d.ts +1 -1
- package/Math/index.d.ts +5 -1
- package/Mesher/Functions/CompactVoxelMesh.d.ts +2 -2
- package/Mesher/Functions/CompactVoxelMesh.js +1 -1
- package/Mesher/Functions/CompactVoxelSectionMesh.d.ts +4 -0
- package/Mesher/Functions/CompactVoxelSectionMesh.js +112 -0
- package/Mesher/Functions/MeshSection.d.ts +1 -1
- package/Mesher/Functions/MeshSection.js +27 -22
- package/Mesher/Functions/MeshTexture.d.ts +1 -1
- package/Mesher/Functions/MeshTexture.js +3 -4
- package/Mesher/Geomtry/CompactedSectionVoxelMesh.d.ts +23 -0
- package/Mesher/Geomtry/CompactedSectionVoxelMesh.js +144 -0
- 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 +120 -199
- package/Mesher/Geomtry/VoxelMesh.d.ts +1 -1
- package/Mesher/Geomtry/VoxelMesh.js +4 -4
- package/Mesher/Geomtry/VoxelMeshBVHBuilder.d.ts +16 -0
- package/Mesher/Geomtry/VoxelMeshBVHBuilder.js +51 -0
- package/Mesher/Geomtry/VoxelMeshBVHStructCursor.d.ts +22 -0
- package/Mesher/Geomtry/VoxelMeshBVHStructCursor.js +78 -0
- package/Mesher/Geomtry/{Buffers.js → VoxelMeshBuffers.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 +9 -23
- package/Mesher/Models/Common/BoxGeometryNode.js +7 -7
- package/Mesher/Models/Common/Calc/CalcConstants.d.ts +1 -1
- package/Mesher/Models/Common/Calc/CalcConstants.js +1 -1
- package/Mesher/Models/Common/Calc/FaceDataCalc.d.ts +2 -2
- package/Mesher/Models/Common/Calc/FaceDataCalc.js +37 -30
- package/Mesher/Models/Common/QuadGeometryNode.js +2 -2
- 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 +18 -24
- 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 +40 -31
- package/Mesher/Models/Nodes/Ruled/QuadVoxelGeometryNode.js +2 -2
- package/Mesher/Models/Nodes/Ruleless/RulelessBoxVoxelGeometryNode.js +2 -2
- package/Mesher/Models/Nodes/Ruleless/RulelessQuadVoxelGeometryNode.js +2 -2
- 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 +6 -6
- package/Mesher/Models/VoxelConstructor.js +8 -8
- package/Mesher/Models/VoxelGeometryBuilderCacheSpace.d.ts +3 -5
- package/Mesher/Models/VoxelGeometryBuilderCacheSpace.js +8 -32
- package/Mesher/{Tools/VoxelMesherDataTool.d.ts → Models/VoxelModelBuilder.d.ts} +4 -5
- package/Mesher/{Tools/VoxelMesherDataTool.js → Models/VoxelModelBuilder.js} +5 -8
- package/Mesher/Types/Mesher.types.d.ts +1 -0
- package/Models/Defaults/CubeVoxelGeometry.js +4 -0
- package/Models/Defaults/CubeVoxelModels.js +360 -383
- package/Models/Defaults/LiquidVoxelModel.js +5 -5
- package/Models/Defaults/PanelVoxelModels.js +442 -468
- package/Models/Defaults/StairVoxelModel.js +582 -597
- package/Models/Examples.js +490 -498
- package/Models/Rules/Classes/VoxelRulesModel.d.ts +1 -1
- package/Models/Rules/Classes/VoxelRulesModel.js +3 -3
- package/Models/Rules/Functions/BuildFinalInputs.d.ts +1 -1
- package/Models/Rules/Functions/BuildFinalInputs.js +21 -19
- 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 +17 -8
- package/Renderer/Classes/DVESectionMeshes.d.ts +2 -3
- package/Renderer/Classes/SectorMesh.d.ts +3 -4
- package/Renderer/Classes/SectorMesh.js +6 -11
- package/Renderer/InitTasks.js +1 -10
- package/Renderer/MeshManager.d.ts +1 -1
- package/Renderer/MeshManager.js +26 -25
- package/Renderer/MeshRegister.d.ts +5 -5
- package/Renderer/MeshRegister.js +4 -3
- package/Settings/EngineSettings.d.ts +2 -1
- package/Settings/EngineSettings.js +6 -5
- package/Settings/EngineSettings.types.d.ts +24 -39
- package/Settings/EngineSettings.types.js +22 -29
- package/Tasks/Logic/InitTasks.d.ts +1 -0
- package/Tasks/Logic/InitTasks.js +10 -0
- package/Tasks/Logic/VoxelLogicUpdate.d.ts +3 -0
- package/Tasks/Logic/VoxelLogicUpdate.js +71 -0
- package/Tasks/Propagation/Explosion/ExplosionManager.d.ts +2 -2
- package/Tasks/Propagation/Explosion/ExplosionManager.js +1 -2
- package/Tasks/Propagation/Flow/FlowManager.d.ts +4 -4
- package/Tasks/Propagation/Flow/FlowRemove.d.ts +2 -2
- package/Tasks/Propagation/Flow/FlowUpdate.d.ts +2 -2
- package/Tasks/Propagation/Flow/WorldFlow.d.ts +2 -2
- package/Tasks/Propagation/Illumanation/RGBUpdate.d.ts +3 -3
- package/Tasks/Propagation/Illumanation/SunUpdate.d.ts +3 -3
- package/Tasks/Propagation/Illumanation/WorldRGB.d.ts +2 -2
- package/Tasks/Propagation/Illumanation/WorldSun.d.ts +2 -2
- package/Tasks/Propagation/Illumanation/WorldSun.js +8 -15
- package/Tasks/Propagation/InitTasks.js +4 -4
- package/Tasks/Propagation/Power/PowerUpdate.d.ts +3 -0
- package/Tasks/Propagation/Power/PowerUpdate.js +80 -0
- package/Tasks/Tasks.types.d.ts +2 -2
- package/Tasks/TasksIds.d.ts +2 -1
- package/Tasks/TasksIds.js +1 -0
- package/Tasks/Update/Common.d.ts +3 -0
- package/Tasks/Update/Common.js +41 -0
- package/Tasks/Update/EreaseUpdate.d.ts +3 -0
- package/Tasks/Update/EreaseUpdate.js +66 -0
- package/Tasks/Update/InitTasks.d.ts +2 -2
- package/Tasks/Update/InitTasks.js +3 -1
- package/Tasks/Update/PaintUpdate.d.ts +3 -0
- package/Tasks/Update/PaintUpdate.js +89 -0
- package/Tasks/Update/VoxelUpdate.d.ts +2 -5
- package/Tasks/Update/VoxelUpdate.js +7 -143
- package/Tasks/{Update/UpdateTask.d.ts → VoxelUpdateTask.d.ts} +16 -6
- package/Tasks/{Update/UpdateTask.js → VoxelUpdateTask.js} +44 -5
- package/Tasks/WorldGeneration/WorldGenBrush.d.ts +3 -3
- package/Tasks/WorldGeneration/WorldGenBrush.js +3 -3
- package/Tasks/WorldGeneration/WorldGenRegister.d.ts +1 -1
- package/Templates/Cursor/TemplateCursor.d.ts +2 -2
- package/Templates/Cursor/TemplateCursor.js +1 -2
- package/Templates/Functions/CreateTemplate.d.ts +1 -1
- 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/AdvancedBrushTool.js +1 -1
- package/Tools/Brush/Brush.d.ts +3 -3
- package/Tools/Brush/Brush.js +40 -8
- package/Tools/Tasks/TasksTool.d.ts +1 -0
- package/Tools/Tasks/TasksTool.js +2 -0
- package/Util/Binary/BinaryArrays.d.ts +6 -0
- package/Util/Binary/BinaryArrays.js +25 -0
- package/Util/Binary/BinaryBuffer.d.ts +35 -0
- package/Util/Binary/BinaryBuffer.js +136 -0
- package/Util/Binary/{BitArray.d.ts → BinaryFunctions.d.ts} +1 -2
- package/Util/Binary/BinaryFunctions.js +11 -0
- package/{Mesher/Tools/VoxelMeshBVHBuilder.d.ts → Util/Binary/BinaryTree.d.ts} +1 -33
- package/Util/Binary/BinaryTree.js +104 -0
- package/Voxels/Cursor/DataCursor.interface.d.ts +5 -0
- package/Voxels/Cursor/VoxelCursor.interface.d.ts +8 -3
- package/Voxels/Cursor/VoxelCursor.interface.js +54 -13
- package/Voxels/Cursor/VoxelLightData.js +1 -1
- package/Voxels/Data/VoxelPalettesRegister.d.ts +0 -5
- package/Voxels/Data/VoxelPalettesRegister.js +0 -9
- package/Voxels/Data/VoxelTag.types.d.ts +17 -2
- package/Voxels/Data/VoxelTag.types.js +6 -1
- package/Voxels/Data/VoxelTagsRegister.js +12 -7
- package/Voxels/Functions/BuildStateData.d.ts +6 -6
- package/Voxels/Functions/BuildStateData.js +37 -37
- package/Voxels/Functions/BuildTagAndPaletteData.js +6 -3
- package/Voxels/Indexes/VoxelIndex.d.ts +2 -2
- package/Voxels/Indexes/VoxelIndex.js +16 -18
- package/Voxels/InitVoxelData.js +24 -21
- package/Voxels/Logic/Classes/Default/Types/VoxelPoweredLogicType.d.ts +5 -0
- package/Voxels/Logic/Classes/Default/Types/VoxelPoweredLogicType.js +6 -0
- package/Voxels/Logic/Classes/VoxelLogic.d.ts +11 -0
- package/Voxels/Logic/Classes/VoxelLogic.js +49 -0
- package/Voxels/Logic/Classes/VoxelLogicType.d.ts +4 -0
- package/Voxels/Logic/Classes/VoxelLogicType.js +2 -0
- package/Voxels/Logic/VoxelLogic.types.d.ts +23 -0
- package/Voxels/Logic/VoxelLogic.types.js +1 -0
- package/Voxels/Logic/VoxelLogicRegister.d.ts +9 -0
- package/Voxels/Logic/VoxelLogicRegister.js +15 -0
- package/Voxels/State/Schema/StateSchema.d.ts +1 -1
- package/Voxels/State/SchemaRegister.js +10 -5
- package/Voxels/State/State.types.d.ts +1 -1
- package/Voxels/State/StateTreeReader.d.ts +1 -1
- package/Voxels/State/StateTreeReader.js +2 -3
- package/Voxels/Types/Voxel.types.d.ts +21 -0
- package/Voxels/Types/Voxel.types.js +6 -2
- package/Voxels/Types/VoxelModelCompiledData.types.d.ts +6 -4
- package/World/Archive/Archive.types.d.ts +65 -42
- package/World/Archive/Classes/ArchiveClasses.d.ts +66 -0
- package/World/Archive/Classes/ArchiveClasses.js +78 -0
- package/World/Archive/Classes/ImportedSection.d.ts +40 -0
- package/World/Archive/Classes/ImportedSection.js +307 -0
- package/World/Archive/Classes/ImportedSector.d.ts +23 -0
- package/World/Archive/Classes/ImportedSector.js +97 -0
- package/World/Archive/Functions/ArchiveArea.d.ts +1 -1
- package/World/Archive/Functions/ArchiveArea.js +49 -54
- package/World/Archive/Functions/ArchiveSector.js +373 -282
- package/World/Archive/Functions/CreateArchivedSection.d.ts +3 -0
- package/World/Archive/Functions/CreateArchivedSection.js +207 -0
- package/World/Archive/Functions/ImportSector.d.ts +2 -4
- package/World/Archive/Functions/ImportSector.js +50 -220
- package/World/Archive/Functions/RemoveDuplicates.d.ts +3 -0
- package/World/Archive/Functions/RemoveDuplicates.js +92 -0
- package/World/Archive/Functions/Shared.d.ts +6 -0
- package/World/Archive/Functions/Shared.js +50 -0
- package/World/Archive/InitTasks.js +37 -23
- package/World/Cursor/SectionCursor.d.ts +3 -3
- package/World/Cursor/SectionCursor.js +2 -3
- package/World/Cursor/SectorCursor.d.ts +3 -3
- package/World/Cursor/SectorCursor.js +1 -2
- package/World/Cursor/WorldCursor.d.ts +6 -5
- package/World/Cursor/WorldCursor.js +17 -15
- package/World/Cursor/WorldVoxelCursor.d.ts +0 -4
- package/World/Cursor/WorldVoxelCursor.js +24 -14
- package/World/Dimension/Dimension.d.ts +4 -1
- package/World/Dimension/Dimension.js +8 -1
- package/World/InitTasks.d.ts +1 -1
- package/World/Lock/WorldLock.d.ts +1 -1
- package/World/Section/Section.d.ts +27 -18
- package/World/Section/Section.js +125 -21
- package/World/Section/SectionState.d.ts +12 -0
- package/World/Section/SectionState.js +13 -0
- package/World/Sector/Sector.d.ts +20 -6
- package/World/Sector/Sector.js +100 -17
- package/World/Sector/SectorHeightMap.js +2 -2
- package/World/Sector/SectorState.d.ts +16 -7
- package/World/Sector/SectorState.js +29 -15
- package/World/Types/WorldData.types.d.ts +2 -7
- package/World/Types/WorldStorage.interface.js +1 -0
- package/World/WorldRegister.d.ts +13 -9
- package/World/WorldRegister.js +24 -9
- package/World/WorldSpaces.d.ts +4 -0
- package/World/WorldSpaces.js +25 -12
- package/{Tasks/IWG → WorldSimulation}/Internal/Classes/DimensionSegment.d.ts +2 -2
- package/{Tasks/IWG → WorldSimulation}/Internal/Classes/Generator.d.ts +10 -3
- package/{Tasks/IWG → WorldSimulation}/Internal/Classes/Generator.js +19 -3
- package/WorldSimulation/Internal/Classes/Queues/BuildQueue.d.ts +5 -0
- package/WorldSimulation/Internal/Classes/Queues/BuildQueue.js +6 -0
- package/WorldSimulation/Internal/Classes/Queues/LogiccQueue.d.ts +5 -0
- package/WorldSimulation/Internal/Classes/Queues/LogiccQueue.js +6 -0
- package/{Tasks/IWG → WorldSimulation}/Internal/Classes/SectorVisistedMap.js +1 -1
- package/WorldSimulation/Internal/Classes/TickQueue.d.ts +12 -0
- package/WorldSimulation/Internal/Classes/TickQueue.js +58 -0
- package/WorldSimulation/Internal/Classes/WorldSimulationTaskBase.d.ts +15 -0
- package/{Tasks/IWG/Internal/Classes/IWGTaskBase.js → WorldSimulation/Internal/Classes/WorldSimulationTaskBase.js} +8 -8
- package/{Tasks/IWG → WorldSimulation}/Internal/Functions/cullSectors.js +9 -9
- package/{Tasks/IWG → WorldSimulation}/Internal/Functions/getSectorState.d.ts +1 -1
- package/{Tasks/IWG → WorldSimulation}/Internal/Functions/getSectorState.js +4 -4
- package/WorldSimulation/Internal/Functions/runTickUpdate.d.ts +2 -0
- package/{Tasks/IWG/Internal/Functions/runBuildUpdate.js → WorldSimulation/Internal/Functions/runTickUpdate.js} +38 -9
- package/{Tasks/IWG → WorldSimulation}/Internal/Functions/runWorldUpdate.js +13 -13
- package/{Tasks/IWG → WorldSimulation}/Internal/TaskRegister.d.ts +2 -2
- package/{Tasks/IWG → WorldSimulation}/Internal/TaskRegister.js +1 -1
- package/WorldSimulation/Internal/WorldSimulationDimensions.d.ts +6 -0
- package/{Tasks/IWG/Internal/IWGDimensions.js → WorldSimulation/Internal/WorldSimulationDimensions.js} +1 -1
- package/WorldSimulation/Internal/WorldSimulationTasks.d.ts +30 -0
- package/{Tasks/IWG/Internal/IWGTasks.js → WorldSimulation/Internal/WorldSimulationTasks.js} +14 -24
- package/WorldSimulation/Internal/WorldSimulationTools.d.ts +8 -0
- package/{Tasks/IWG/Internal/IWGTools.js → WorldSimulation/Internal/WorldSimulationTools.js} +1 -1
- package/{Tasks/IWG → WorldSimulation}/Procedures/InitalLoad.d.ts +1 -1
- package/{Tasks/IWG → WorldSimulation}/Procedures/InitalLoad.js +11 -11
- package/{Tasks/IWG → WorldSimulation}/Procedures/SaveAllSectors.js +7 -5
- package/{Tasks/IWG/IWG.d.ts → WorldSimulation/WorldSimulation.d.ts} +6 -5
- package/{Tasks/IWG/IWG.js → WorldSimulation/WorldSimulation.js} +29 -23
- package/{Tasks/IWG → WorldSimulation}/index.d.ts +1 -1
- package/{Tasks/IWG → WorldSimulation}/index.js +1 -1
- 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/Mesher/Tools/VoxelMeshBVHBuilder.js +0 -216
- package/Models/Rules/VoxelModelManager.js +0 -82
- package/Tasks/IWG/Internal/Classes/IWGTaskBase.d.ts +0 -15
- package/Tasks/IWG/Internal/Functions/runBuildUpdate.d.ts +0 -2
- package/Tasks/IWG/Internal/IWGDimensions.d.ts +0 -6
- package/Tasks/IWG/Internal/IWGTasks.d.ts +0 -34
- package/Tasks/IWG/Internal/IWGTools.d.ts +0 -8
- 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/Geomtry/{Buffers.d.ts → VoxelMeshBuffers.d.ts} +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/{Tasks/IWG → WorldSimulation}/Internal/Classes/DimensionSegment.js +0 -0
- /package/{Tasks/IWG → WorldSimulation}/Internal/Classes/SectorState.d.ts +0 -0
- /package/{Tasks/IWG → WorldSimulation}/Internal/Classes/SectorState.js +0 -0
- /package/{Tasks/IWG → WorldSimulation}/Internal/Classes/SectorVisistedMap.d.ts +0 -0
- /package/{Tasks/IWG → WorldSimulation}/Internal/Functions/cullSectors.d.ts +0 -0
- /package/{Tasks/IWG → WorldSimulation}/Internal/Functions/runWorldUpdate.d.ts +0 -0
- /package/{Tasks/IWG → WorldSimulation}/Procedures/SaveAllSectors.d.ts +0 -0
|
@@ -1,36 +1,21 @@
|
|
|
1
1
|
export const stair = {
|
|
2
2
|
id: "dve_simple_stair",
|
|
3
3
|
relationsSchema: [],
|
|
4
|
-
|
|
4
|
+
stateSchema: [
|
|
5
5
|
{
|
|
6
6
|
name: "placement",
|
|
7
7
|
type: "string",
|
|
8
|
-
values:
|
|
9
|
-
0: "down",
|
|
10
|
-
1: "up",
|
|
11
|
-
2: "north",
|
|
12
|
-
3: "south",
|
|
13
|
-
4: "east",
|
|
14
|
-
5: "west",
|
|
15
|
-
},
|
|
8
|
+
values: ["down", "up", "north", "south", "east", "west"],
|
|
16
9
|
},
|
|
17
10
|
{
|
|
18
11
|
name: "direction",
|
|
19
12
|
type: "string",
|
|
20
|
-
values:
|
|
21
|
-
0: "south",
|
|
22
|
-
1: "north",
|
|
23
|
-
2: "east",
|
|
24
|
-
3: "west",
|
|
25
|
-
},
|
|
13
|
+
values: ["south", "north", "east", "west"],
|
|
26
14
|
},
|
|
27
15
|
{
|
|
28
16
|
name: "connected",
|
|
29
17
|
type: "string",
|
|
30
|
-
values:
|
|
31
|
-
0: "false",
|
|
32
|
-
1: "true",
|
|
33
|
-
},
|
|
18
|
+
values: ["false", "true"],
|
|
34
19
|
},
|
|
35
20
|
],
|
|
36
21
|
arguments: {
|
|
@@ -38,20 +23,20 @@ export const stair = {
|
|
|
38
23
|
type: "texture",
|
|
39
24
|
},
|
|
40
25
|
},
|
|
41
|
-
|
|
42
|
-
|
|
26
|
+
conditonalNodes: {},
|
|
27
|
+
stateNodes: {
|
|
43
28
|
"placement=up,direction=north,connected=false": [
|
|
44
29
|
{
|
|
45
30
|
id: "base",
|
|
46
31
|
geometryId: "dve_half_cube_down_half",
|
|
47
32
|
position: [0, 0.5, 0],
|
|
48
33
|
inputs: {
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
34
|
+
upTex: "@texture",
|
|
35
|
+
downTex: "@texture",
|
|
36
|
+
northTex: "@texture",
|
|
37
|
+
southTex: "@texture",
|
|
38
|
+
eastTex: "@texture",
|
|
39
|
+
westTex: "@texture",
|
|
55
40
|
},
|
|
56
41
|
},
|
|
57
42
|
{
|
|
@@ -59,12 +44,12 @@ export const stair = {
|
|
|
59
44
|
geometryId: "dve_quater_cube_west_east",
|
|
60
45
|
position: [0, 0, 0.5],
|
|
61
46
|
inputs: {
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
47
|
+
upTex: "@texture",
|
|
48
|
+
downTex: "@texture",
|
|
49
|
+
northTex: "@texture",
|
|
50
|
+
southTex: "@texture",
|
|
51
|
+
eastTex: "@texture",
|
|
52
|
+
westTex: "@texture",
|
|
68
53
|
},
|
|
69
54
|
},
|
|
70
55
|
],
|
|
@@ -74,24 +59,24 @@ export const stair = {
|
|
|
74
59
|
geometryId: "dve_half_cube_down_half",
|
|
75
60
|
position: [0, 0.5, 0],
|
|
76
61
|
inputs: {
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
62
|
+
upTex: "@texture",
|
|
63
|
+
downTex: "@texture",
|
|
64
|
+
northTex: "@texture",
|
|
65
|
+
southTex: "@texture",
|
|
66
|
+
eastTex: "@texture",
|
|
67
|
+
westTex: "@texture",
|
|
83
68
|
},
|
|
84
69
|
},
|
|
85
70
|
{
|
|
86
71
|
id: "up",
|
|
87
72
|
geometryId: "dve_quater_cube_west_east",
|
|
88
73
|
inputs: {
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
74
|
+
upTex: "@texture",
|
|
75
|
+
downTex: "@texture",
|
|
76
|
+
northTex: "@texture",
|
|
77
|
+
southTex: "@texture",
|
|
78
|
+
eastTex: "@texture",
|
|
79
|
+
westTex: "@texture",
|
|
95
80
|
},
|
|
96
81
|
},
|
|
97
82
|
],
|
|
@@ -101,12 +86,12 @@ export const stair = {
|
|
|
101
86
|
geometryId: "dve_half_cube_down_half",
|
|
102
87
|
position: [0, 0.5, 0],
|
|
103
88
|
inputs: {
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
89
|
+
upTex: "@texture",
|
|
90
|
+
downTex: "@texture",
|
|
91
|
+
northTex: "@texture",
|
|
92
|
+
southTex: "@texture",
|
|
93
|
+
eastTex: "@texture",
|
|
94
|
+
westTex: "@texture",
|
|
110
95
|
},
|
|
111
96
|
},
|
|
112
97
|
{
|
|
@@ -114,12 +99,12 @@ export const stair = {
|
|
|
114
99
|
geometryId: "dve_quater_cube_south_north",
|
|
115
100
|
position: [0.5, 0, 0],
|
|
116
101
|
inputs: {
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
102
|
+
upTex: "@texture",
|
|
103
|
+
downTex: "@texture",
|
|
104
|
+
northTex: "@texture",
|
|
105
|
+
southTex: "@texture",
|
|
106
|
+
eastTex: "@texture",
|
|
107
|
+
westTex: "@texture",
|
|
123
108
|
},
|
|
124
109
|
},
|
|
125
110
|
],
|
|
@@ -129,24 +114,24 @@ export const stair = {
|
|
|
129
114
|
geometryId: "dve_half_cube_down_half",
|
|
130
115
|
position: [0, 0.5, 0],
|
|
131
116
|
inputs: {
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
117
|
+
upTex: "@texture",
|
|
118
|
+
downTex: "@texture",
|
|
119
|
+
northTex: "@texture",
|
|
120
|
+
southTex: "@texture",
|
|
121
|
+
eastTex: "@texture",
|
|
122
|
+
westTex: "@texture",
|
|
138
123
|
},
|
|
139
124
|
},
|
|
140
125
|
{
|
|
141
126
|
id: "up",
|
|
142
127
|
geometryId: "dve_quater_cube_south_north",
|
|
143
128
|
inputs: {
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
129
|
+
upTex: "@texture",
|
|
130
|
+
downTex: "@texture",
|
|
131
|
+
northTex: "@texture",
|
|
132
|
+
southTex: "@texture",
|
|
133
|
+
eastTex: "@texture",
|
|
134
|
+
westTex: "@texture",
|
|
150
135
|
},
|
|
151
136
|
},
|
|
152
137
|
],
|
|
@@ -155,12 +140,12 @@ export const stair = {
|
|
|
155
140
|
id: "base",
|
|
156
141
|
geometryId: "dve_half_cube_down_half",
|
|
157
142
|
inputs: {
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
143
|
+
upTex: "@texture",
|
|
144
|
+
downTex: "@texture",
|
|
145
|
+
northTex: "@texture",
|
|
146
|
+
southTex: "@texture",
|
|
147
|
+
eastTex: "@texture",
|
|
148
|
+
westTex: "@texture",
|
|
164
149
|
},
|
|
165
150
|
},
|
|
166
151
|
{
|
|
@@ -168,12 +153,12 @@ export const stair = {
|
|
|
168
153
|
geometryId: "dve_quater_cube_west_east",
|
|
169
154
|
position: [0, 0.5, 0.5],
|
|
170
155
|
inputs: {
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
156
|
+
upTex: "@texture",
|
|
157
|
+
downTex: "@texture",
|
|
158
|
+
northTex: "@texture",
|
|
159
|
+
southTex: "@texture",
|
|
160
|
+
eastTex: "@texture",
|
|
161
|
+
westTex: "@texture",
|
|
177
162
|
},
|
|
178
163
|
},
|
|
179
164
|
],
|
|
@@ -182,12 +167,12 @@ export const stair = {
|
|
|
182
167
|
id: "base",
|
|
183
168
|
geometryId: "dve_half_cube_down_half",
|
|
184
169
|
inputs: {
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
170
|
+
upTex: "@texture",
|
|
171
|
+
downTex: "@texture",
|
|
172
|
+
northTex: "@texture",
|
|
173
|
+
southTex: "@texture",
|
|
174
|
+
eastTex: "@texture",
|
|
175
|
+
westTex: "@texture",
|
|
191
176
|
},
|
|
192
177
|
},
|
|
193
178
|
{
|
|
@@ -195,12 +180,12 @@ export const stair = {
|
|
|
195
180
|
geometryId: "dve_quater_cube_west_east",
|
|
196
181
|
position: [0, 0.5, 0],
|
|
197
182
|
inputs: {
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
183
|
+
upTex: "@texture",
|
|
184
|
+
downTex: "@texture",
|
|
185
|
+
northTex: "@texture",
|
|
186
|
+
southTex: "@texture",
|
|
187
|
+
eastTex: "@texture",
|
|
188
|
+
westTex: "@texture",
|
|
204
189
|
},
|
|
205
190
|
},
|
|
206
191
|
],
|
|
@@ -209,12 +194,12 @@ export const stair = {
|
|
|
209
194
|
id: "base",
|
|
210
195
|
geometryId: "dve_half_cube_down_half",
|
|
211
196
|
inputs: {
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
197
|
+
upTex: "@texture",
|
|
198
|
+
downTex: "@texture",
|
|
199
|
+
northTex: "@texture",
|
|
200
|
+
southTex: "@texture",
|
|
201
|
+
eastTex: "@texture",
|
|
202
|
+
westTex: "@texture",
|
|
218
203
|
},
|
|
219
204
|
},
|
|
220
205
|
{
|
|
@@ -222,12 +207,12 @@ export const stair = {
|
|
|
222
207
|
geometryId: "dve_quater_cube_south_north",
|
|
223
208
|
position: [0.5, 0.5, 0],
|
|
224
209
|
inputs: {
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
210
|
+
upTex: "@texture",
|
|
211
|
+
downTex: "@texture",
|
|
212
|
+
northTex: "@texture",
|
|
213
|
+
southTex: "@texture",
|
|
214
|
+
eastTex: "@texture",
|
|
215
|
+
westTex: "@texture",
|
|
231
216
|
},
|
|
232
217
|
},
|
|
233
218
|
],
|
|
@@ -236,12 +221,12 @@ export const stair = {
|
|
|
236
221
|
id: "base",
|
|
237
222
|
geometryId: "dve_half_cube_down_half",
|
|
238
223
|
inputs: {
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
224
|
+
upTex: "@texture",
|
|
225
|
+
downTex: "@texture",
|
|
226
|
+
northTex: "@texture",
|
|
227
|
+
southTex: "@texture",
|
|
228
|
+
eastTex: "@texture",
|
|
229
|
+
westTex: "@texture",
|
|
245
230
|
},
|
|
246
231
|
},
|
|
247
232
|
{
|
|
@@ -249,12 +234,12 @@ export const stair = {
|
|
|
249
234
|
geometryId: "dve_quater_cube_south_north",
|
|
250
235
|
position: [0, 0.5, 0],
|
|
251
236
|
inputs: {
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
237
|
+
upTex: "@texture",
|
|
238
|
+
downTex: "@texture",
|
|
239
|
+
northTex: "@texture",
|
|
240
|
+
southTex: "@texture",
|
|
241
|
+
eastTex: "@texture",
|
|
242
|
+
westTex: "@texture",
|
|
258
243
|
},
|
|
259
244
|
},
|
|
260
245
|
],
|
|
@@ -264,12 +249,12 @@ export const stair = {
|
|
|
264
249
|
position: [0, 0, 0.5],
|
|
265
250
|
geometryId: "dve_half_cube_south_half",
|
|
266
251
|
inputs: {
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
252
|
+
upTex: "@texture",
|
|
253
|
+
downTex: "@texture",
|
|
254
|
+
northTex: "@texture",
|
|
255
|
+
southTex: "@texture",
|
|
256
|
+
eastTex: "@texture",
|
|
257
|
+
westTex: "@texture",
|
|
273
258
|
},
|
|
274
259
|
},
|
|
275
260
|
{
|
|
@@ -277,12 +262,12 @@ export const stair = {
|
|
|
277
262
|
geometryId: "dve_quater_cube_west_east",
|
|
278
263
|
position: [0, 0.5, 0],
|
|
279
264
|
inputs: {
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
265
|
+
upTex: "@texture",
|
|
266
|
+
downTex: "@texture",
|
|
267
|
+
northTex: "@texture",
|
|
268
|
+
southTex: "@texture",
|
|
269
|
+
eastTex: "@texture",
|
|
270
|
+
westTex: "@texture",
|
|
286
271
|
},
|
|
287
272
|
},
|
|
288
273
|
],
|
|
@@ -292,24 +277,24 @@ export const stair = {
|
|
|
292
277
|
position: [0, 0, 0.5],
|
|
293
278
|
geometryId: "dve_half_cube_south_half",
|
|
294
279
|
inputs: {
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
280
|
+
upTex: "@texture",
|
|
281
|
+
downTex: "@texture",
|
|
282
|
+
northTex: "@texture",
|
|
283
|
+
southTex: "@texture",
|
|
284
|
+
eastTex: "@texture",
|
|
285
|
+
westTex: "@texture",
|
|
301
286
|
},
|
|
302
287
|
},
|
|
303
288
|
{
|
|
304
289
|
id: "up",
|
|
305
290
|
geometryId: "dve_quater_cube_west_east",
|
|
306
291
|
inputs: {
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
292
|
+
upTex: "@texture",
|
|
293
|
+
downTex: "@texture",
|
|
294
|
+
northTex: "@texture",
|
|
295
|
+
southTex: "@texture",
|
|
296
|
+
eastTex: "@texture",
|
|
297
|
+
westTex: "@texture",
|
|
313
298
|
},
|
|
314
299
|
},
|
|
315
300
|
],
|
|
@@ -319,12 +304,12 @@ export const stair = {
|
|
|
319
304
|
position: [0, 0, 0.5],
|
|
320
305
|
geometryId: "dve_half_cube_south_half",
|
|
321
306
|
inputs: {
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
307
|
+
upTex: "@texture",
|
|
308
|
+
downTex: "@texture",
|
|
309
|
+
northTex: "@texture",
|
|
310
|
+
southTex: "@texture",
|
|
311
|
+
eastTex: "@texture",
|
|
312
|
+
westTex: "@texture",
|
|
328
313
|
},
|
|
329
314
|
},
|
|
330
315
|
{
|
|
@@ -332,12 +317,12 @@ export const stair = {
|
|
|
332
317
|
geometryId: "dve_quater_cube_up_down",
|
|
333
318
|
position: [0.5, 0, 0],
|
|
334
319
|
inputs: {
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
320
|
+
upTex: "@texture",
|
|
321
|
+
downTex: "@texture",
|
|
322
|
+
northTex: "@texture",
|
|
323
|
+
southTex: "@texture",
|
|
324
|
+
eastTex: "@texture",
|
|
325
|
+
westTex: "@texture",
|
|
341
326
|
},
|
|
342
327
|
},
|
|
343
328
|
],
|
|
@@ -347,24 +332,24 @@ export const stair = {
|
|
|
347
332
|
position: [0, 0, 0.5],
|
|
348
333
|
geometryId: "dve_half_cube_south_half",
|
|
349
334
|
inputs: {
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
335
|
+
upTex: "@texture",
|
|
336
|
+
downTex: "@texture",
|
|
337
|
+
northTex: "@texture",
|
|
338
|
+
southTex: "@texture",
|
|
339
|
+
eastTex: "@texture",
|
|
340
|
+
westTex: "@texture",
|
|
356
341
|
},
|
|
357
342
|
},
|
|
358
343
|
{
|
|
359
344
|
id: "up",
|
|
360
345
|
geometryId: "dve_quater_cube_up_down",
|
|
361
346
|
inputs: {
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
347
|
+
upTex: "@texture",
|
|
348
|
+
downTex: "@texture",
|
|
349
|
+
northTex: "@texture",
|
|
350
|
+
southTex: "@texture",
|
|
351
|
+
eastTex: "@texture",
|
|
352
|
+
westTex: "@texture",
|
|
368
353
|
},
|
|
369
354
|
},
|
|
370
355
|
],
|
|
@@ -373,12 +358,12 @@ export const stair = {
|
|
|
373
358
|
id: "base",
|
|
374
359
|
geometryId: "dve_half_cube_south_half",
|
|
375
360
|
inputs: {
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
361
|
+
upTex: "@texture",
|
|
362
|
+
downTex: "@texture",
|
|
363
|
+
northTex: "@texture",
|
|
364
|
+
southTex: "@texture",
|
|
365
|
+
eastTex: "@texture",
|
|
366
|
+
westTex: "@texture",
|
|
382
367
|
},
|
|
383
368
|
},
|
|
384
369
|
{
|
|
@@ -386,12 +371,12 @@ export const stair = {
|
|
|
386
371
|
geometryId: "dve_quater_cube_west_east",
|
|
387
372
|
position: [0, 0.5, 0.5],
|
|
388
373
|
inputs: {
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
374
|
+
upTex: "@texture",
|
|
375
|
+
downTex: "@texture",
|
|
376
|
+
northTex: "@texture",
|
|
377
|
+
southTex: "@texture",
|
|
378
|
+
eastTex: "@texture",
|
|
379
|
+
westTex: "@texture",
|
|
395
380
|
},
|
|
396
381
|
},
|
|
397
382
|
],
|
|
@@ -400,12 +385,12 @@ export const stair = {
|
|
|
400
385
|
id: "base",
|
|
401
386
|
geometryId: "dve_half_cube_south_half",
|
|
402
387
|
inputs: {
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
388
|
+
upTex: "@texture",
|
|
389
|
+
downTex: "@texture",
|
|
390
|
+
northTex: "@texture",
|
|
391
|
+
southTex: "@texture",
|
|
392
|
+
eastTex: "@texture",
|
|
393
|
+
westTex: "@texture",
|
|
409
394
|
},
|
|
410
395
|
},
|
|
411
396
|
{
|
|
@@ -413,12 +398,12 @@ export const stair = {
|
|
|
413
398
|
geometryId: "dve_quater_cube_west_east",
|
|
414
399
|
position: [0, 0, 0.5],
|
|
415
400
|
inputs: {
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
401
|
+
upTex: "@texture",
|
|
402
|
+
downTex: "@texture",
|
|
403
|
+
northTex: "@texture",
|
|
404
|
+
southTex: "@texture",
|
|
405
|
+
eastTex: "@texture",
|
|
406
|
+
westTex: "@texture",
|
|
422
407
|
},
|
|
423
408
|
},
|
|
424
409
|
],
|
|
@@ -427,12 +412,12 @@ export const stair = {
|
|
|
427
412
|
id: "base",
|
|
428
413
|
geometryId: "dve_half_cube_south_half",
|
|
429
414
|
inputs: {
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
415
|
+
upTex: "@texture",
|
|
416
|
+
downTex: "@texture",
|
|
417
|
+
northTex: "@texture",
|
|
418
|
+
southTex: "@texture",
|
|
419
|
+
eastTex: "@texture",
|
|
420
|
+
westTex: "@texture",
|
|
436
421
|
},
|
|
437
422
|
},
|
|
438
423
|
{
|
|
@@ -440,12 +425,12 @@ export const stair = {
|
|
|
440
425
|
geometryId: "dve_quater_cube_up_down",
|
|
441
426
|
position: [0.5, 0, 0.5],
|
|
442
427
|
inputs: {
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
428
|
+
upTex: "@texture",
|
|
429
|
+
downTex: "@texture",
|
|
430
|
+
northTex: "@texture",
|
|
431
|
+
southTex: "@texture",
|
|
432
|
+
eastTex: "@texture",
|
|
433
|
+
westTex: "@texture",
|
|
449
434
|
},
|
|
450
435
|
},
|
|
451
436
|
],
|
|
@@ -454,12 +439,12 @@ export const stair = {
|
|
|
454
439
|
id: "base",
|
|
455
440
|
geometryId: "dve_half_cube_south_half",
|
|
456
441
|
inputs: {
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
442
|
+
upTex: "@texture",
|
|
443
|
+
downTex: "@texture",
|
|
444
|
+
northTex: "@texture",
|
|
445
|
+
southTex: "@texture",
|
|
446
|
+
eastTex: "@texture",
|
|
447
|
+
westTex: "@texture",
|
|
463
448
|
},
|
|
464
449
|
},
|
|
465
450
|
{
|
|
@@ -467,12 +452,12 @@ export const stair = {
|
|
|
467
452
|
geometryId: "dve_quater_cube_up_down",
|
|
468
453
|
position: [0, 0, 0.5],
|
|
469
454
|
inputs: {
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
455
|
+
upTex: "@texture",
|
|
456
|
+
downTex: "@texture",
|
|
457
|
+
northTex: "@texture",
|
|
458
|
+
southTex: "@texture",
|
|
459
|
+
eastTex: "@texture",
|
|
460
|
+
westTex: "@texture",
|
|
476
461
|
},
|
|
477
462
|
},
|
|
478
463
|
],
|
|
@@ -482,12 +467,12 @@ export const stair = {
|
|
|
482
467
|
geometryId: "dve_half_cube_west_half",
|
|
483
468
|
position: [0.5, 0, 0],
|
|
484
469
|
inputs: {
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
470
|
+
upTex: "@texture",
|
|
471
|
+
downTex: "@texture",
|
|
472
|
+
northTex: "@texture",
|
|
473
|
+
southTex: "@texture",
|
|
474
|
+
eastTex: "@texture",
|
|
475
|
+
westTex: "@texture",
|
|
491
476
|
},
|
|
492
477
|
},
|
|
493
478
|
{
|
|
@@ -495,12 +480,12 @@ export const stair = {
|
|
|
495
480
|
geometryId: "dve_quater_cube_south_north",
|
|
496
481
|
position: [0, 0.5, 0],
|
|
497
482
|
inputs: {
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
483
|
+
upTex: "@texture",
|
|
484
|
+
downTex: "@texture",
|
|
485
|
+
northTex: "@texture",
|
|
486
|
+
southTex: "@texture",
|
|
487
|
+
eastTex: "@texture",
|
|
488
|
+
westTex: "@texture",
|
|
504
489
|
},
|
|
505
490
|
},
|
|
506
491
|
],
|
|
@@ -510,12 +495,12 @@ export const stair = {
|
|
|
510
495
|
geometryId: "dve_half_cube_west_half",
|
|
511
496
|
position: [0.5, 0, 0],
|
|
512
497
|
inputs: {
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
498
|
+
upTex: "@texture",
|
|
499
|
+
downTex: "@texture",
|
|
500
|
+
northTex: "@texture",
|
|
501
|
+
southTex: "@texture",
|
|
502
|
+
eastTex: "@texture",
|
|
503
|
+
westTex: "@texture",
|
|
519
504
|
},
|
|
520
505
|
},
|
|
521
506
|
{
|
|
@@ -523,12 +508,12 @@ export const stair = {
|
|
|
523
508
|
geometryId: "dve_quater_cube_south_north",
|
|
524
509
|
position: [0, 0, 0],
|
|
525
510
|
inputs: {
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
511
|
+
upTex: "@texture",
|
|
512
|
+
downTex: "@texture",
|
|
513
|
+
northTex: "@texture",
|
|
514
|
+
southTex: "@texture",
|
|
515
|
+
eastTex: "@texture",
|
|
516
|
+
westTex: "@texture",
|
|
532
517
|
},
|
|
533
518
|
},
|
|
534
519
|
],
|
|
@@ -538,12 +523,12 @@ export const stair = {
|
|
|
538
523
|
geometryId: "dve_half_cube_west_half",
|
|
539
524
|
position: [0.5, 0, 0],
|
|
540
525
|
inputs: {
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
526
|
+
upTex: "@texture",
|
|
527
|
+
downTex: "@texture",
|
|
528
|
+
northTex: "@texture",
|
|
529
|
+
southTex: "@texture",
|
|
530
|
+
eastTex: "@texture",
|
|
531
|
+
westTex: "@texture",
|
|
547
532
|
},
|
|
548
533
|
},
|
|
549
534
|
{
|
|
@@ -551,12 +536,12 @@ export const stair = {
|
|
|
551
536
|
geometryId: "dve_quater_cube_up_down",
|
|
552
537
|
position: [0, 0, 0.5],
|
|
553
538
|
inputs: {
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
539
|
+
upTex: "@texture",
|
|
540
|
+
downTex: "@texture",
|
|
541
|
+
northTex: "@texture",
|
|
542
|
+
southTex: "@texture",
|
|
543
|
+
eastTex: "@texture",
|
|
544
|
+
westTex: "@texture",
|
|
560
545
|
},
|
|
561
546
|
},
|
|
562
547
|
],
|
|
@@ -566,12 +551,12 @@ export const stair = {
|
|
|
566
551
|
geometryId: "dve_half_cube_west_half",
|
|
567
552
|
position: [0.5, 0, 0],
|
|
568
553
|
inputs: {
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
554
|
+
upTex: "@texture",
|
|
555
|
+
downTex: "@texture",
|
|
556
|
+
northTex: "@texture",
|
|
557
|
+
southTex: "@texture",
|
|
558
|
+
eastTex: "@texture",
|
|
559
|
+
westTex: "@texture",
|
|
575
560
|
},
|
|
576
561
|
},
|
|
577
562
|
{
|
|
@@ -579,12 +564,12 @@ export const stair = {
|
|
|
579
564
|
geometryId: "dve_quater_cube_up_down",
|
|
580
565
|
position: [0, 0, 0],
|
|
581
566
|
inputs: {
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
567
|
+
upTex: "@texture",
|
|
568
|
+
downTex: "@texture",
|
|
569
|
+
northTex: "@texture",
|
|
570
|
+
southTex: "@texture",
|
|
571
|
+
eastTex: "@texture",
|
|
572
|
+
westTex: "@texture",
|
|
588
573
|
},
|
|
589
574
|
},
|
|
590
575
|
],
|
|
@@ -593,12 +578,12 @@ export const stair = {
|
|
|
593
578
|
id: "base",
|
|
594
579
|
geometryId: "dve_half_cube_west_half",
|
|
595
580
|
inputs: {
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
581
|
+
upTex: "@texture",
|
|
582
|
+
downTex: "@texture",
|
|
583
|
+
northTex: "@texture",
|
|
584
|
+
southTex: "@texture",
|
|
585
|
+
eastTex: "@texture",
|
|
586
|
+
westTex: "@texture",
|
|
602
587
|
},
|
|
603
588
|
},
|
|
604
589
|
{
|
|
@@ -606,12 +591,12 @@ export const stair = {
|
|
|
606
591
|
geometryId: "dve_quater_cube_south_north",
|
|
607
592
|
position: [0.5, 0.5, 0],
|
|
608
593
|
inputs: {
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
594
|
+
upTex: "@texture",
|
|
595
|
+
downTex: "@texture",
|
|
596
|
+
northTex: "@texture",
|
|
597
|
+
southTex: "@texture",
|
|
598
|
+
eastTex: "@texture",
|
|
599
|
+
westTex: "@texture",
|
|
615
600
|
},
|
|
616
601
|
},
|
|
617
602
|
],
|
|
@@ -620,12 +605,12 @@ export const stair = {
|
|
|
620
605
|
id: "base",
|
|
621
606
|
geometryId: "dve_half_cube_west_half",
|
|
622
607
|
inputs: {
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
608
|
+
upTex: "@texture",
|
|
609
|
+
downTex: "@texture",
|
|
610
|
+
northTex: "@texture",
|
|
611
|
+
southTex: "@texture",
|
|
612
|
+
eastTex: "@texture",
|
|
613
|
+
westTex: "@texture",
|
|
629
614
|
},
|
|
630
615
|
},
|
|
631
616
|
{
|
|
@@ -633,12 +618,12 @@ export const stair = {
|
|
|
633
618
|
geometryId: "dve_quater_cube_south_north",
|
|
634
619
|
position: [0.5, 0, 0],
|
|
635
620
|
inputs: {
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
621
|
+
upTex: "@texture",
|
|
622
|
+
downTex: "@texture",
|
|
623
|
+
northTex: "@texture",
|
|
624
|
+
southTex: "@texture",
|
|
625
|
+
eastTex: "@texture",
|
|
626
|
+
westTex: "@texture",
|
|
642
627
|
},
|
|
643
628
|
},
|
|
644
629
|
],
|
|
@@ -647,12 +632,12 @@ export const stair = {
|
|
|
647
632
|
id: "base",
|
|
648
633
|
geometryId: "dve_half_cube_west_half",
|
|
649
634
|
inputs: {
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
635
|
+
upTex: "@texture",
|
|
636
|
+
downTex: "@texture",
|
|
637
|
+
northTex: "@texture",
|
|
638
|
+
southTex: "@texture",
|
|
639
|
+
eastTex: "@texture",
|
|
640
|
+
westTex: "@texture",
|
|
656
641
|
},
|
|
657
642
|
},
|
|
658
643
|
{
|
|
@@ -660,12 +645,12 @@ export const stair = {
|
|
|
660
645
|
geometryId: "dve_quater_cube_up_down",
|
|
661
646
|
position: [0.5, 0, 0.5],
|
|
662
647
|
inputs: {
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
648
|
+
upTex: "@texture",
|
|
649
|
+
downTex: "@texture",
|
|
650
|
+
northTex: "@texture",
|
|
651
|
+
southTex: "@texture",
|
|
652
|
+
eastTex: "@texture",
|
|
653
|
+
westTex: "@texture",
|
|
669
654
|
},
|
|
670
655
|
},
|
|
671
656
|
],
|
|
@@ -674,12 +659,12 @@ export const stair = {
|
|
|
674
659
|
id: "base",
|
|
675
660
|
geometryId: "dve_half_cube_west_half",
|
|
676
661
|
inputs: {
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
662
|
+
upTex: "@texture",
|
|
663
|
+
downTex: "@texture",
|
|
664
|
+
northTex: "@texture",
|
|
665
|
+
southTex: "@texture",
|
|
666
|
+
eastTex: "@texture",
|
|
667
|
+
westTex: "@texture",
|
|
683
668
|
},
|
|
684
669
|
},
|
|
685
670
|
{
|
|
@@ -687,12 +672,12 @@ export const stair = {
|
|
|
687
672
|
geometryId: "dve_quater_cube_up_down",
|
|
688
673
|
position: [0.5, 0, 0],
|
|
689
674
|
inputs: {
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
675
|
+
upTex: "@texture",
|
|
676
|
+
downTex: "@texture",
|
|
677
|
+
northTex: "@texture",
|
|
678
|
+
southTex: "@texture",
|
|
679
|
+
eastTex: "@texture",
|
|
680
|
+
westTex: "@texture",
|
|
696
681
|
},
|
|
697
682
|
},
|
|
698
683
|
],
|
|
@@ -703,12 +688,12 @@ export const stair = {
|
|
|
703
688
|
geometryId: "dve_half_cube_down_half",
|
|
704
689
|
position: [0, 0.5, 0],
|
|
705
690
|
inputs: {
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
691
|
+
upTex: "@texture",
|
|
692
|
+
downTex: "@texture",
|
|
693
|
+
northTex: "@texture",
|
|
694
|
+
southTex: "@texture",
|
|
695
|
+
eastTex: "@texture",
|
|
696
|
+
westTex: "@texture",
|
|
712
697
|
},
|
|
713
698
|
},
|
|
714
699
|
{
|
|
@@ -716,12 +701,12 @@ export const stair = {
|
|
|
716
701
|
geometryId: "dve_eighth_cube",
|
|
717
702
|
position: [0.5, 0, 0.5],
|
|
718
703
|
inputs: {
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
704
|
+
upTex: "@texture",
|
|
705
|
+
downTex: "@texture",
|
|
706
|
+
northTex: "@texture",
|
|
707
|
+
southTex: "@texture",
|
|
708
|
+
eastTex: "@texture",
|
|
709
|
+
westTex: "@texture",
|
|
725
710
|
},
|
|
726
711
|
},
|
|
727
712
|
],
|
|
@@ -731,12 +716,12 @@ export const stair = {
|
|
|
731
716
|
geometryId: "dve_half_cube_down_half",
|
|
732
717
|
position: [0, 0.5, 0],
|
|
733
718
|
inputs: {
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
719
|
+
upTex: "@texture",
|
|
720
|
+
downTex: "@texture",
|
|
721
|
+
northTex: "@texture",
|
|
722
|
+
southTex: "@texture",
|
|
723
|
+
eastTex: "@texture",
|
|
724
|
+
westTex: "@texture",
|
|
740
725
|
},
|
|
741
726
|
},
|
|
742
727
|
{
|
|
@@ -744,12 +729,12 @@ export const stair = {
|
|
|
744
729
|
geometryId: "dve_eighth_cube",
|
|
745
730
|
position: [0, 0, 0.5],
|
|
746
731
|
inputs: {
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
732
|
+
upTex: "@texture",
|
|
733
|
+
downTex: "@texture",
|
|
734
|
+
northTex: "@texture",
|
|
735
|
+
southTex: "@texture",
|
|
736
|
+
eastTex: "@texture",
|
|
737
|
+
westTex: "@texture",
|
|
753
738
|
},
|
|
754
739
|
},
|
|
755
740
|
],
|
|
@@ -759,12 +744,12 @@ export const stair = {
|
|
|
759
744
|
geometryId: "dve_half_cube_down_half",
|
|
760
745
|
position: [0, 0.5, 0],
|
|
761
746
|
inputs: {
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
747
|
+
upTex: "@texture",
|
|
748
|
+
downTex: "@texture",
|
|
749
|
+
northTex: "@texture",
|
|
750
|
+
southTex: "@texture",
|
|
751
|
+
eastTex: "@texture",
|
|
752
|
+
westTex: "@texture",
|
|
768
753
|
},
|
|
769
754
|
},
|
|
770
755
|
{
|
|
@@ -772,12 +757,12 @@ export const stair = {
|
|
|
772
757
|
geometryId: "dve_eighth_cube",
|
|
773
758
|
position: [0.5, 0, 0],
|
|
774
759
|
inputs: {
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
760
|
+
upTex: "@texture",
|
|
761
|
+
downTex: "@texture",
|
|
762
|
+
northTex: "@texture",
|
|
763
|
+
southTex: "@texture",
|
|
764
|
+
eastTex: "@texture",
|
|
765
|
+
westTex: "@texture",
|
|
781
766
|
},
|
|
782
767
|
},
|
|
783
768
|
],
|
|
@@ -787,24 +772,24 @@ export const stair = {
|
|
|
787
772
|
geometryId: "dve_half_cube_down_half",
|
|
788
773
|
position: [0, 0.5, 0],
|
|
789
774
|
inputs: {
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
775
|
+
upTex: "@texture",
|
|
776
|
+
downTex: "@texture",
|
|
777
|
+
northTex: "@texture",
|
|
778
|
+
southTex: "@texture",
|
|
779
|
+
eastTex: "@texture",
|
|
780
|
+
westTex: "@texture",
|
|
796
781
|
},
|
|
797
782
|
},
|
|
798
783
|
{
|
|
799
784
|
id: "up",
|
|
800
785
|
geometryId: "dve_eighth_cube",
|
|
801
786
|
inputs: {
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
787
|
+
upTex: "@texture",
|
|
788
|
+
downTex: "@texture",
|
|
789
|
+
northTex: "@texture",
|
|
790
|
+
southTex: "@texture",
|
|
791
|
+
eastTex: "@texture",
|
|
792
|
+
westTex: "@texture",
|
|
808
793
|
},
|
|
809
794
|
},
|
|
810
795
|
],
|
|
@@ -813,12 +798,12 @@ export const stair = {
|
|
|
813
798
|
id: "base",
|
|
814
799
|
geometryId: "dve_half_cube_down_half",
|
|
815
800
|
inputs: {
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
801
|
+
upTex: "@texture",
|
|
802
|
+
downTex: "@texture",
|
|
803
|
+
northTex: "@texture",
|
|
804
|
+
southTex: "@texture",
|
|
805
|
+
eastTex: "@texture",
|
|
806
|
+
westTex: "@texture",
|
|
822
807
|
},
|
|
823
808
|
},
|
|
824
809
|
{
|
|
@@ -826,12 +811,12 @@ export const stair = {
|
|
|
826
811
|
geometryId: "dve_eighth_cube",
|
|
827
812
|
position: [0.5, 0.5, 0.5],
|
|
828
813
|
inputs: {
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
814
|
+
upTex: "@texture",
|
|
815
|
+
downTex: "@texture",
|
|
816
|
+
northTex: "@texture",
|
|
817
|
+
southTex: "@texture",
|
|
818
|
+
eastTex: "@texture",
|
|
819
|
+
westTex: "@texture",
|
|
835
820
|
},
|
|
836
821
|
},
|
|
837
822
|
],
|
|
@@ -840,12 +825,12 @@ export const stair = {
|
|
|
840
825
|
id: "base",
|
|
841
826
|
geometryId: "dve_half_cube_down_half",
|
|
842
827
|
inputs: {
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
828
|
+
upTex: "@texture",
|
|
829
|
+
downTex: "@texture",
|
|
830
|
+
northTex: "@texture",
|
|
831
|
+
southTex: "@texture",
|
|
832
|
+
eastTex: "@texture",
|
|
833
|
+
westTex: "@texture",
|
|
849
834
|
},
|
|
850
835
|
},
|
|
851
836
|
{
|
|
@@ -853,12 +838,12 @@ export const stair = {
|
|
|
853
838
|
geometryId: "dve_eighth_cube",
|
|
854
839
|
position: [0, 0.5, 0.5],
|
|
855
840
|
inputs: {
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
841
|
+
upTex: "@texture",
|
|
842
|
+
downTex: "@texture",
|
|
843
|
+
northTex: "@texture",
|
|
844
|
+
southTex: "@texture",
|
|
845
|
+
eastTex: "@texture",
|
|
846
|
+
westTex: "@texture",
|
|
862
847
|
},
|
|
863
848
|
},
|
|
864
849
|
],
|
|
@@ -867,12 +852,12 @@ export const stair = {
|
|
|
867
852
|
id: "base",
|
|
868
853
|
geometryId: "dve_half_cube_down_half",
|
|
869
854
|
inputs: {
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
855
|
+
upTex: "@texture",
|
|
856
|
+
downTex: "@texture",
|
|
857
|
+
northTex: "@texture",
|
|
858
|
+
southTex: "@texture",
|
|
859
|
+
eastTex: "@texture",
|
|
860
|
+
westTex: "@texture",
|
|
876
861
|
},
|
|
877
862
|
},
|
|
878
863
|
{
|
|
@@ -880,12 +865,12 @@ export const stair = {
|
|
|
880
865
|
geometryId: "dve_eighth_cube",
|
|
881
866
|
position: [0.5, 0.5, 0],
|
|
882
867
|
inputs: {
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
868
|
+
upTex: "@texture",
|
|
869
|
+
downTex: "@texture",
|
|
870
|
+
northTex: "@texture",
|
|
871
|
+
southTex: "@texture",
|
|
872
|
+
eastTex: "@texture",
|
|
873
|
+
westTex: "@texture",
|
|
889
874
|
},
|
|
890
875
|
},
|
|
891
876
|
],
|
|
@@ -894,12 +879,12 @@ export const stair = {
|
|
|
894
879
|
id: "base",
|
|
895
880
|
geometryId: "dve_half_cube_down_half",
|
|
896
881
|
inputs: {
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
882
|
+
upTex: "@texture",
|
|
883
|
+
downTex: "@texture",
|
|
884
|
+
northTex: "@texture",
|
|
885
|
+
southTex: "@texture",
|
|
886
|
+
eastTex: "@texture",
|
|
887
|
+
westTex: "@texture",
|
|
903
888
|
},
|
|
904
889
|
},
|
|
905
890
|
{
|
|
@@ -907,12 +892,12 @@ export const stair = {
|
|
|
907
892
|
geometryId: "dve_eighth_cube",
|
|
908
893
|
position: [0, 0.5, 0],
|
|
909
894
|
inputs: {
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
895
|
+
upTex: "@texture",
|
|
896
|
+
downTex: "@texture",
|
|
897
|
+
northTex: "@texture",
|
|
898
|
+
southTex: "@texture",
|
|
899
|
+
eastTex: "@texture",
|
|
900
|
+
westTex: "@texture",
|
|
916
901
|
},
|
|
917
902
|
},
|
|
918
903
|
],
|
|
@@ -922,12 +907,12 @@ export const stair = {
|
|
|
922
907
|
position: [0, 0, 0.5],
|
|
923
908
|
geometryId: "dve_half_cube_south_half",
|
|
924
909
|
inputs: {
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
910
|
+
upTex: "@texture",
|
|
911
|
+
downTex: "@texture",
|
|
912
|
+
northTex: "@texture",
|
|
913
|
+
southTex: "@texture",
|
|
914
|
+
eastTex: "@texture",
|
|
915
|
+
westTex: "@texture",
|
|
931
916
|
},
|
|
932
917
|
},
|
|
933
918
|
{
|
|
@@ -935,12 +920,12 @@ export const stair = {
|
|
|
935
920
|
geometryId: "dve_eighth_cube",
|
|
936
921
|
position: [0.5, 0.5, 0],
|
|
937
922
|
inputs: {
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
923
|
+
upTex: "@texture",
|
|
924
|
+
downTex: "@texture",
|
|
925
|
+
northTex: "@texture",
|
|
926
|
+
southTex: "@texture",
|
|
927
|
+
eastTex: "@texture",
|
|
928
|
+
westTex: "@texture",
|
|
944
929
|
},
|
|
945
930
|
},
|
|
946
931
|
],
|
|
@@ -950,12 +935,12 @@ export const stair = {
|
|
|
950
935
|
position: [0, 0, 0.5],
|
|
951
936
|
geometryId: "dve_half_cube_south_half",
|
|
952
937
|
inputs: {
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
938
|
+
upTex: "@texture",
|
|
939
|
+
downTex: "@texture",
|
|
940
|
+
northTex: "@texture",
|
|
941
|
+
southTex: "@texture",
|
|
942
|
+
eastTex: "@texture",
|
|
943
|
+
westTex: "@texture",
|
|
959
944
|
},
|
|
960
945
|
},
|
|
961
946
|
{
|
|
@@ -963,12 +948,12 @@ export const stair = {
|
|
|
963
948
|
geometryId: "dve_eighth_cube",
|
|
964
949
|
position: [0, 0.5, 0],
|
|
965
950
|
inputs: {
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
951
|
+
upTex: "@texture",
|
|
952
|
+
downTex: "@texture",
|
|
953
|
+
northTex: "@texture",
|
|
954
|
+
southTex: "@texture",
|
|
955
|
+
eastTex: "@texture",
|
|
956
|
+
westTex: "@texture",
|
|
972
957
|
},
|
|
973
958
|
},
|
|
974
959
|
],
|
|
@@ -978,12 +963,12 @@ export const stair = {
|
|
|
978
963
|
position: [0, 0, 0.5],
|
|
979
964
|
geometryId: "dve_half_cube_south_half",
|
|
980
965
|
inputs: {
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
966
|
+
upTex: "@texture",
|
|
967
|
+
downTex: "@texture",
|
|
968
|
+
northTex: "@texture",
|
|
969
|
+
southTex: "@texture",
|
|
970
|
+
eastTex: "@texture",
|
|
971
|
+
westTex: "@texture",
|
|
987
972
|
},
|
|
988
973
|
},
|
|
989
974
|
{
|
|
@@ -991,12 +976,12 @@ export const stair = {
|
|
|
991
976
|
geometryId: "dve_eighth_cube",
|
|
992
977
|
position: [0.5, 0, 0],
|
|
993
978
|
inputs: {
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
979
|
+
upTex: "@texture",
|
|
980
|
+
downTex: "@texture",
|
|
981
|
+
northTex: "@texture",
|
|
982
|
+
southTex: "@texture",
|
|
983
|
+
eastTex: "@texture",
|
|
984
|
+
westTex: "@texture",
|
|
1000
985
|
},
|
|
1001
986
|
},
|
|
1002
987
|
],
|
|
@@ -1006,24 +991,24 @@ export const stair = {
|
|
|
1006
991
|
position: [0, 0, 0.5],
|
|
1007
992
|
geometryId: "dve_half_cube_south_half",
|
|
1008
993
|
inputs: {
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
994
|
+
upTex: "@texture",
|
|
995
|
+
downTex: "@texture",
|
|
996
|
+
northTex: "@texture",
|
|
997
|
+
southTex: "@texture",
|
|
998
|
+
eastTex: "@texture",
|
|
999
|
+
westTex: "@texture",
|
|
1015
1000
|
},
|
|
1016
1001
|
},
|
|
1017
1002
|
{
|
|
1018
1003
|
id: "up",
|
|
1019
1004
|
geometryId: "dve_eighth_cube",
|
|
1020
1005
|
inputs: {
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1006
|
+
upTex: "@texture",
|
|
1007
|
+
downTex: "@texture",
|
|
1008
|
+
northTex: "@texture",
|
|
1009
|
+
southTex: "@texture",
|
|
1010
|
+
eastTex: "@texture",
|
|
1011
|
+
westTex: "@texture",
|
|
1027
1012
|
},
|
|
1028
1013
|
},
|
|
1029
1014
|
],
|
|
@@ -1032,12 +1017,12 @@ export const stair = {
|
|
|
1032
1017
|
id: "base",
|
|
1033
1018
|
geometryId: "dve_half_cube_south_half",
|
|
1034
1019
|
inputs: {
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1020
|
+
upTex: "@texture",
|
|
1021
|
+
downTex: "@texture",
|
|
1022
|
+
northTex: "@texture",
|
|
1023
|
+
southTex: "@texture",
|
|
1024
|
+
eastTex: "@texture",
|
|
1025
|
+
westTex: "@texture",
|
|
1041
1026
|
},
|
|
1042
1027
|
},
|
|
1043
1028
|
{
|
|
@@ -1045,12 +1030,12 @@ export const stair = {
|
|
|
1045
1030
|
geometryId: "dve_eighth_cube",
|
|
1046
1031
|
position: [0.5, 0.5, 0.5],
|
|
1047
1032
|
inputs: {
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1033
|
+
upTex: "@texture",
|
|
1034
|
+
downTex: "@texture",
|
|
1035
|
+
northTex: "@texture",
|
|
1036
|
+
southTex: "@texture",
|
|
1037
|
+
eastTex: "@texture",
|
|
1038
|
+
westTex: "@texture",
|
|
1054
1039
|
},
|
|
1055
1040
|
},
|
|
1056
1041
|
],
|
|
@@ -1059,12 +1044,12 @@ export const stair = {
|
|
|
1059
1044
|
id: "base",
|
|
1060
1045
|
geometryId: "dve_half_cube_south_half",
|
|
1061
1046
|
inputs: {
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1047
|
+
upTex: "@texture",
|
|
1048
|
+
downTex: "@texture",
|
|
1049
|
+
northTex: "@texture",
|
|
1050
|
+
southTex: "@texture",
|
|
1051
|
+
eastTex: "@texture",
|
|
1052
|
+
westTex: "@texture",
|
|
1068
1053
|
},
|
|
1069
1054
|
},
|
|
1070
1055
|
{
|
|
@@ -1072,12 +1057,12 @@ export const stair = {
|
|
|
1072
1057
|
geometryId: "dve_eighth_cube",
|
|
1073
1058
|
position: [0, 0.5, 0.5],
|
|
1074
1059
|
inputs: {
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1060
|
+
upTex: "@texture",
|
|
1061
|
+
downTex: "@texture",
|
|
1062
|
+
northTex: "@texture",
|
|
1063
|
+
southTex: "@texture",
|
|
1064
|
+
eastTex: "@texture",
|
|
1065
|
+
westTex: "@texture",
|
|
1081
1066
|
},
|
|
1082
1067
|
},
|
|
1083
1068
|
],
|
|
@@ -1086,12 +1071,12 @@ export const stair = {
|
|
|
1086
1071
|
id: "base",
|
|
1087
1072
|
geometryId: "dve_half_cube_south_half",
|
|
1088
1073
|
inputs: {
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1074
|
+
upTex: "@texture",
|
|
1075
|
+
downTex: "@texture",
|
|
1076
|
+
northTex: "@texture",
|
|
1077
|
+
southTex: "@texture",
|
|
1078
|
+
eastTex: "@texture",
|
|
1079
|
+
westTex: "@texture",
|
|
1095
1080
|
},
|
|
1096
1081
|
},
|
|
1097
1082
|
{
|
|
@@ -1099,12 +1084,12 @@ export const stair = {
|
|
|
1099
1084
|
geometryId: "dve_eighth_cube",
|
|
1100
1085
|
position: [0.5, 0, 0.5],
|
|
1101
1086
|
inputs: {
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1087
|
+
upTex: "@texture",
|
|
1088
|
+
downTex: "@texture",
|
|
1089
|
+
northTex: "@texture",
|
|
1090
|
+
southTex: "@texture",
|
|
1091
|
+
eastTex: "@texture",
|
|
1092
|
+
westTex: "@texture",
|
|
1108
1093
|
},
|
|
1109
1094
|
},
|
|
1110
1095
|
],
|
|
@@ -1113,12 +1098,12 @@ export const stair = {
|
|
|
1113
1098
|
id: "base",
|
|
1114
1099
|
geometryId: "dve_half_cube_south_half",
|
|
1115
1100
|
inputs: {
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1101
|
+
upTex: "@texture",
|
|
1102
|
+
downTex: "@texture",
|
|
1103
|
+
northTex: "@texture",
|
|
1104
|
+
southTex: "@texture",
|
|
1105
|
+
eastTex: "@texture",
|
|
1106
|
+
westTex: "@texture",
|
|
1122
1107
|
},
|
|
1123
1108
|
},
|
|
1124
1109
|
{
|
|
@@ -1126,12 +1111,12 @@ export const stair = {
|
|
|
1126
1111
|
geometryId: "dve_eighth_cube",
|
|
1127
1112
|
position: [0, 0, 0.5],
|
|
1128
1113
|
inputs: {
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1114
|
+
upTex: "@texture",
|
|
1115
|
+
downTex: "@texture",
|
|
1116
|
+
northTex: "@texture",
|
|
1117
|
+
southTex: "@texture",
|
|
1118
|
+
eastTex: "@texture",
|
|
1119
|
+
westTex: "@texture",
|
|
1135
1120
|
},
|
|
1136
1121
|
},
|
|
1137
1122
|
],
|
|
@@ -1141,12 +1126,12 @@ export const stair = {
|
|
|
1141
1126
|
geometryId: "dve_half_cube_west_half",
|
|
1142
1127
|
position: [0.5, 0, 0],
|
|
1143
1128
|
inputs: {
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1129
|
+
upTex: "@texture",
|
|
1130
|
+
downTex: "@texture",
|
|
1131
|
+
northTex: "@texture",
|
|
1132
|
+
southTex: "@texture",
|
|
1133
|
+
eastTex: "@texture",
|
|
1134
|
+
westTex: "@texture",
|
|
1150
1135
|
},
|
|
1151
1136
|
},
|
|
1152
1137
|
{
|
|
@@ -1154,12 +1139,12 @@ export const stair = {
|
|
|
1154
1139
|
geometryId: "dve_eighth_cube",
|
|
1155
1140
|
position: [0, 0.5, 0.5],
|
|
1156
1141
|
inputs: {
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1142
|
+
upTex: "@texture",
|
|
1143
|
+
downTex: "@texture",
|
|
1144
|
+
northTex: "@texture",
|
|
1145
|
+
southTex: "@texture",
|
|
1146
|
+
eastTex: "@texture",
|
|
1147
|
+
westTex: "@texture",
|
|
1163
1148
|
},
|
|
1164
1149
|
},
|
|
1165
1150
|
],
|
|
@@ -1169,12 +1154,12 @@ export const stair = {
|
|
|
1169
1154
|
geometryId: "dve_half_cube_west_half",
|
|
1170
1155
|
position: [0.5, 0, 0],
|
|
1171
1156
|
inputs: {
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1157
|
+
upTex: "@texture",
|
|
1158
|
+
downTex: "@texture",
|
|
1159
|
+
northTex: "@texture",
|
|
1160
|
+
southTex: "@texture",
|
|
1161
|
+
eastTex: "@texture",
|
|
1162
|
+
westTex: "@texture",
|
|
1178
1163
|
},
|
|
1179
1164
|
},
|
|
1180
1165
|
{
|
|
@@ -1182,12 +1167,12 @@ export const stair = {
|
|
|
1182
1167
|
geometryId: "dve_eighth_cube",
|
|
1183
1168
|
position: [0, 0.5, 0],
|
|
1184
1169
|
inputs: {
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1170
|
+
upTex: "@texture",
|
|
1171
|
+
downTex: "@texture",
|
|
1172
|
+
northTex: "@texture",
|
|
1173
|
+
southTex: "@texture",
|
|
1174
|
+
eastTex: "@texture",
|
|
1175
|
+
westTex: "@texture",
|
|
1191
1176
|
},
|
|
1192
1177
|
},
|
|
1193
1178
|
],
|
|
@@ -1197,12 +1182,12 @@ export const stair = {
|
|
|
1197
1182
|
geometryId: "dve_half_cube_west_half",
|
|
1198
1183
|
position: [0.5, 0, 0],
|
|
1199
1184
|
inputs: {
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1185
|
+
upTex: "@texture",
|
|
1186
|
+
downTex: "@texture",
|
|
1187
|
+
northTex: "@texture",
|
|
1188
|
+
southTex: "@texture",
|
|
1189
|
+
eastTex: "@texture",
|
|
1190
|
+
westTex: "@texture",
|
|
1206
1191
|
},
|
|
1207
1192
|
},
|
|
1208
1193
|
{
|
|
@@ -1210,12 +1195,12 @@ export const stair = {
|
|
|
1210
1195
|
geometryId: "dve_eighth_cube",
|
|
1211
1196
|
position: [0, 0, 0.5],
|
|
1212
1197
|
inputs: {
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1198
|
+
upTex: "@texture",
|
|
1199
|
+
downTex: "@texture",
|
|
1200
|
+
northTex: "@texture",
|
|
1201
|
+
southTex: "@texture",
|
|
1202
|
+
eastTex: "@texture",
|
|
1203
|
+
westTex: "@texture",
|
|
1219
1204
|
},
|
|
1220
1205
|
},
|
|
1221
1206
|
],
|
|
@@ -1225,24 +1210,24 @@ export const stair = {
|
|
|
1225
1210
|
geometryId: "dve_half_cube_west_half",
|
|
1226
1211
|
position: [0.5, 0, 0],
|
|
1227
1212
|
inputs: {
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1213
|
+
upTex: "@texture",
|
|
1214
|
+
downTex: "@texture",
|
|
1215
|
+
northTex: "@texture",
|
|
1216
|
+
southTex: "@texture",
|
|
1217
|
+
eastTex: "@texture",
|
|
1218
|
+
westTex: "@texture",
|
|
1234
1219
|
},
|
|
1235
1220
|
},
|
|
1236
1221
|
{
|
|
1237
1222
|
id: "up",
|
|
1238
1223
|
geometryId: "dve_eighth_cube",
|
|
1239
1224
|
inputs: {
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1225
|
+
upTex: "@texture",
|
|
1226
|
+
downTex: "@texture",
|
|
1227
|
+
northTex: "@texture",
|
|
1228
|
+
southTex: "@texture",
|
|
1229
|
+
eastTex: "@texture",
|
|
1230
|
+
westTex: "@texture",
|
|
1246
1231
|
},
|
|
1247
1232
|
},
|
|
1248
1233
|
],
|
|
@@ -1251,12 +1236,12 @@ export const stair = {
|
|
|
1251
1236
|
id: "base",
|
|
1252
1237
|
geometryId: "dve_half_cube_west_half",
|
|
1253
1238
|
inputs: {
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1239
|
+
upTex: "@texture",
|
|
1240
|
+
downTex: "@texture",
|
|
1241
|
+
northTex: "@texture",
|
|
1242
|
+
southTex: "@texture",
|
|
1243
|
+
eastTex: "@texture",
|
|
1244
|
+
westTex: "@texture",
|
|
1260
1245
|
},
|
|
1261
1246
|
},
|
|
1262
1247
|
{
|
|
@@ -1264,12 +1249,12 @@ export const stair = {
|
|
|
1264
1249
|
geometryId: "dve_eighth_cube",
|
|
1265
1250
|
position: [0.5, 0.5, 0.5],
|
|
1266
1251
|
inputs: {
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1252
|
+
upTex: "@texture",
|
|
1253
|
+
downTex: "@texture",
|
|
1254
|
+
northTex: "@texture",
|
|
1255
|
+
southTex: "@texture",
|
|
1256
|
+
eastTex: "@texture",
|
|
1257
|
+
westTex: "@texture",
|
|
1273
1258
|
},
|
|
1274
1259
|
},
|
|
1275
1260
|
],
|
|
@@ -1278,12 +1263,12 @@ export const stair = {
|
|
|
1278
1263
|
id: "base",
|
|
1279
1264
|
geometryId: "dve_half_cube_west_half",
|
|
1280
1265
|
inputs: {
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1266
|
+
upTex: "@texture",
|
|
1267
|
+
downTex: "@texture",
|
|
1268
|
+
northTex: "@texture",
|
|
1269
|
+
southTex: "@texture",
|
|
1270
|
+
eastTex: "@texture",
|
|
1271
|
+
westTex: "@texture",
|
|
1287
1272
|
},
|
|
1288
1273
|
},
|
|
1289
1274
|
{
|
|
@@ -1291,12 +1276,12 @@ export const stair = {
|
|
|
1291
1276
|
geometryId: "dve_eighth_cube",
|
|
1292
1277
|
position: [0.5, 0.5, 0],
|
|
1293
1278
|
inputs: {
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1279
|
+
upTex: "@texture",
|
|
1280
|
+
downTex: "@texture",
|
|
1281
|
+
northTex: "@texture",
|
|
1282
|
+
southTex: "@texture",
|
|
1283
|
+
eastTex: "@texture",
|
|
1284
|
+
westTex: "@texture",
|
|
1300
1285
|
},
|
|
1301
1286
|
},
|
|
1302
1287
|
],
|
|
@@ -1305,12 +1290,12 @@ export const stair = {
|
|
|
1305
1290
|
id: "base",
|
|
1306
1291
|
geometryId: "dve_half_cube_west_half",
|
|
1307
1292
|
inputs: {
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1293
|
+
upTex: "@texture",
|
|
1294
|
+
downTex: "@texture",
|
|
1295
|
+
northTex: "@texture",
|
|
1296
|
+
southTex: "@texture",
|
|
1297
|
+
eastTex: "@texture",
|
|
1298
|
+
westTex: "@texture",
|
|
1314
1299
|
},
|
|
1315
1300
|
},
|
|
1316
1301
|
{
|
|
@@ -1318,12 +1303,12 @@ export const stair = {
|
|
|
1318
1303
|
geometryId: "dve_eighth_cube",
|
|
1319
1304
|
position: [0.5, 0, 0.5],
|
|
1320
1305
|
inputs: {
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1306
|
+
upTex: "@texture",
|
|
1307
|
+
downTex: "@texture",
|
|
1308
|
+
northTex: "@texture",
|
|
1309
|
+
southTex: "@texture",
|
|
1310
|
+
eastTex: "@texture",
|
|
1311
|
+
westTex: "@texture",
|
|
1327
1312
|
},
|
|
1328
1313
|
},
|
|
1329
1314
|
],
|
|
@@ -1332,12 +1317,12 @@ export const stair = {
|
|
|
1332
1317
|
id: "base",
|
|
1333
1318
|
geometryId: "dve_half_cube_west_half",
|
|
1334
1319
|
inputs: {
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1320
|
+
upTex: "@texture",
|
|
1321
|
+
downTex: "@texture",
|
|
1322
|
+
northTex: "@texture",
|
|
1323
|
+
southTex: "@texture",
|
|
1324
|
+
eastTex: "@texture",
|
|
1325
|
+
westTex: "@texture",
|
|
1341
1326
|
},
|
|
1342
1327
|
},
|
|
1343
1328
|
{
|
|
@@ -1345,12 +1330,12 @@ export const stair = {
|
|
|
1345
1330
|
geometryId: "dve_eighth_cube",
|
|
1346
1331
|
position: [0.5, 0, 0],
|
|
1347
1332
|
inputs: {
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1333
|
+
upTex: "@texture",
|
|
1334
|
+
downTex: "@texture",
|
|
1335
|
+
northTex: "@texture",
|
|
1336
|
+
southTex: "@texture",
|
|
1337
|
+
eastTex: "@texture",
|
|
1338
|
+
westTex: "@texture",
|
|
1354
1339
|
},
|
|
1355
1340
|
},
|
|
1356
1341
|
],
|