index.vwf.yaml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # A-Frame & VWF simple scene
  2. # Copyright 2017 Krestianstvo.org project
  3. ---
  4. extends: http://vwf.example.com/aframe/ascene.vwf
  5. properties:
  6. assets: "assets.json"
  7. children:
  8. fog:
  9. extends: http://vwf.example.com/aframe/aSceneFogComponent.vwf
  10. type: "component"
  11. properties:
  12. fogType: "linear"
  13. fogColor: "#ECECEC"
  14. far: 20
  15. near: 0
  16. groundPlane:
  17. extends: http://vwf.example.com/aframe/aplane.vwf
  18. properties:
  19. height: 50
  20. width: 50
  21. rotation: "-90 0 0"
  22. children:
  23. material:
  24. extends: http://vwf.example.com/aframe/aMaterialComponent.vwf
  25. properties:
  26. wireframe: false
  27. src: "#bg2"
  28. repeat: "10 10"
  29. myLight:
  30. extends: http://vwf.example.com/aframe/alight.vwf
  31. properties:
  32. type: "hemisphere"
  33. color: "white"
  34. position: "0 10 5"
  35. rotation: "0 0 0"
  36. sky:
  37. extends: http://vwf.example.com/aframe/asky.vwf
  38. properties:
  39. children:
  40. material:
  41. extends: http://vwf.example.com/aframe/aMaterialComponent.vwf
  42. properties:
  43. color: "#ECECEC"
  44. src: "#sky"
  45. fog: false
  46. side: "back"
  47. spaceText:
  48. extends: http://vwf.example.com/aframe/atext.vwf
  49. properties:
  50. value: "WebRTC app"
  51. color: "white"
  52. position: "-2 2.5 -2"
  53. box:
  54. extends: http://vwf.example.com/aframe/abox.vwf
  55. properties:
  56. position: "0 0 -3"
  57. rotation: "0 0 0"
  58. depth: 3
  59. height: 0.2
  60. width: 3
  61. children:
  62. material:
  63. extends: http://vwf.example.com/aframe/aMaterialComponent.vwf
  64. properties:
  65. color: "#3c7249"