small.json 600 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "world": {
  3. "heightmap": "worlds/small.png",
  4. "skybox": "skyboxes/peaceful/",
  5. "object-templates": [
  6. {
  7. "color": 100,
  8. "file": "models/boom/Boom.obj",
  9. "collision": true
  10. }
  11. ]
  12. },
  13. "player": {
  14. "startposition": [ 20, 5, 20 ]
  15. },
  16. "objects": [ ],
  17. "enemies": [
  18. {
  19. "file": "models/squid/Blooper.obj",
  20. "pos": [ 20, 5, 10 ],
  21. "scale": 0.01
  22. }],
  23. "crystals": [
  24. {
  25. "file": "models/sphere/sphere.obj",
  26. "pos": [ 33, 2, 31 ]
  27. },
  28. {
  29. "file": "models/sphere/sphere.obj",
  30. "pos": [ 45, 2, 31 ]
  31. }
  32. ]
  33. }