small.json 832 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "world": {
  3. "heightmap": "worlds/small.png",
  4. "skybox": "skyboxes/water/",
  5. "object-templates": [
  6. {
  7. "color": 100,
  8. "file": "models/boom/Boom.obj",
  9. "collision": true
  10. }
  11. ],
  12. "music": "WAVE/bond.wav"
  13. },
  14. "player": {
  15. "startposition": [ 20, 5, 20 ]
  16. },
  17. "objects": [
  18. {
  19. "file": "models/Teleporter/Teleporter.obj",
  20. "pos": [ 10, 5, 10 ]
  21. }
  22. ],
  23. "enemies": [
  24. {
  25. "file": "models/squid/Blooper.obj",
  26. "pos": [ 20, 5, 10 ],
  27. "scale": 0.01
  28. }],
  29. "crystal": {
  30. "full texture": "models/crystal/Crystal.obj",
  31. "empty texture": "models/crystal/PickedUpCrystal.obj",
  32. "instances": [
  33. {
  34. "pos": [ 31, 5, 33 ],
  35. "rot": [ 0, 0, 0 ]
  36. },
  37. {
  38. "pos": [ 40, 5, 40 ],
  39. "rot": [ 0, 0, 0 ]
  40. }
  41. ]
  42. }
  43. }