ice.json 885 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "world": {
  3. "heightmap": "worlds/hmcs.png",
  4. "texture": "worlds/hmcstexture.png",
  5. "skybox": "skyboxes/peaceful/",
  6. "object-templates": [
  7. {
  8. "color": 100,
  9. "file": "models/boom/Boom.obj",
  10. "collision": true
  11. }
  12. ],
  13. "music": "WAVE/bond.wav"
  14. },
  15. "player": {
  16. "startposition": [ 1, 5, 20 ]
  17. },
  18. "objects": [ ],
  19. "portal": {
  20. "file": "models/Teleporter/Teleporter.obj",
  21. "pos": [ 10, 5, 10 ]
  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. }