Begin wereld

This commit is contained in:
Dofensmirtsz
2016-05-31 13:05:37 +02:00
parent ae5a28f273
commit 353efb38c5
22 changed files with 375 additions and 86 deletions
-39
View File
@@ -1,39 +0,0 @@
{
"world": {
"heightmap": "worlds/mazeHeightmap.png",
"texture": "worlds/mazeStone.png",
"scale": 1,
"object-templates": [
{
"color": 190,
"file": "models/Rocks/Cave1.obj"
},
{
"color": 200,
"file": "models/Rocks/SpikeRock2.obj"
},
{
"color": 210,
"file": "models/Rocks/SpikeRock1.obj"
},
{
"color": 220,
"file": "models/Rocks/SpikeRock3.obj"
},
{
"color": 230,
"file": "models/Rocks/SpikeRock4.obj"
},
{
"color": 240,
"file": "models/Rocks/SpikeRock5.obj"
}
]
},
"player": {
"startposition": [ 300, 40, 450 ]
},
"objects": [ ],
"enemies": [ ]
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 134 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 167 KiB

+77
View File
@@ -0,0 +1,77 @@
{
"world": {
"heightmap": "worlds/rockHeightmap.png",
"texture": "worlds/rockStone2.png",
"scale": 1,
"object-templates": [
{
"color": 190,
"file": "models/Rocks/Cave1.obj"
},
{
"color": 200,
"file": "models/Rocks/SpikeRock2.obj"
},
{
"color": 210,
"file": "models/Rocks/SpikeRock1.obj"
},
{
"color": 220,
"file": "models/Rocks/SpikeRock3.obj"
},
{
"color": 230,
"file": "models/Rocks/SpikeRock4.obj"
},
{
"color": 240,
"file": "models/Rocks/SpikeRock5.obj"
}
]
},
"player": {
"startposition": [ 300, 40, 450 ]
},
"objects": [ ],
"enemies": [
{
"file": "models/squid/Blooper.obj",
"pos": [ 300, 2, 500 ],
"scale": 0.01
},
{
"file": "models/Enemies/Bob.obj",
"pos": [ 300, 0, 490 ],
"scale": 0.5
},
{
"file": "models/Enemies/Skateboard.obj",
"pos": [ 300, 4, 510 ],
"scale": 1
},
{
"file": "models/Enemies/Monkey.obj",
"pos": [ 60, 0, 675 ],
"scale": 2
},
{
"file": "models/Enemies/Vincent.obj",
"pos": [ 300, 0, 520 ],
"scale": 0.2
},
{
"file": "models/Enemies/Vincent.obj",
"pos": [ 300, 0, 521 ],
"scale": 0.2
},
{
"file": "models/Enemies/Vincent.obj",
"pos": [ 300, 0, 522 ],
"scale": 0.2
}
]
}

Before

Width:  |  Height:  |  Size: 255 KiB

After

Width:  |  Height:  |  Size: 255 KiB

Binary file not shown.
Binary file not shown.

Before

Width:  |  Height:  |  Size: 169 KiB

After

Width:  |  Height:  |  Size: 169 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 117 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 77 KiB

+7 -6
View File
@@ -1,8 +1,9 @@
{
"worlds": [
"worlds/small.json",
"worlds/ice.json",
"worlds/fire.json",
"worlds/maze.json"
]
"worlds": [
"worlds/rock.json",
"worlds/small.json",
"worlds/ice.json",
"worlds/fire.json"
]
}