maze?
This commit is contained in:
@@ -184,6 +184,8 @@
|
||||
<ItemGroup>
|
||||
<None Include="worlds\fire.json" />
|
||||
<None Include="worlds\ice.json" />
|
||||
<None Include="worlds\maze.json" />
|
||||
<None Include="worlds\small.json" />
|
||||
<None Include="worlds\worlds.json" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
|
||||
@@ -118,5 +118,11 @@
|
||||
<None Include="worlds\ice.json">
|
||||
<Filter>Source Files\json</Filter>
|
||||
</None>
|
||||
<None Include="worlds\small.json">
|
||||
<Filter>Source Files\json</Filter>
|
||||
</None>
|
||||
<None Include="worlds\maze.json">
|
||||
<Filter>Source Files\json</Filter>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"world": {
|
||||
"heightmap": "worlds/maze.png",
|
||||
"texture": "worlds/mazeTexture.png",
|
||||
"scale": 1,
|
||||
"object-templates": [
|
||||
{
|
||||
"color": 25,
|
||||
"file": "models/boom/Boom.obj"
|
||||
},
|
||||
{
|
||||
"color": 23,
|
||||
"file": "models/boom/Boom.obj"
|
||||
}
|
||||
]
|
||||
},
|
||||
"player": {
|
||||
"startposition": [ 200, 40, 200 ]
|
||||
},
|
||||
"objects": [
|
||||
{
|
||||
"file": "models/boom/Boom.obj",
|
||||
"pos": [ 4, 0, -4 ]
|
||||
},
|
||||
{
|
||||
"file": "models/boom/Boom.obj",
|
||||
"pos": [ -4, 0, -4 ]
|
||||
}
|
||||
],
|
||||
"enemies": [
|
||||
{
|
||||
"file": "models/squid/Blooper.obj",
|
||||
"pos": [ 1, 2, -10 ],
|
||||
"scale": 0.01
|
||||
}
|
||||
]
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 169 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.2 MiB |
+2
-1
@@ -2,6 +2,7 @@
|
||||
"worlds": [
|
||||
"worlds/small.json",
|
||||
"worlds/ice.json",
|
||||
"worlds/fire.json"
|
||||
"worlds/fire.json",
|
||||
"worlds/maze.json"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user