index.vwf.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. {
  2. "extends": "proxy/aframe/ascene.vwf",
  3. "properties":{},
  4. "children": {
  5. "floorTexture": {
  6. "extends": "proxy/aframe/a-asset-image-item.vwf",
  7. "properties": {
  8. "itemID": "bg2",
  9. "itemSrc": "/defaults/assets/checker.jpg"
  10. }
  11. },
  12. "skyTexture": {
  13. "extends": "proxy/aframe/a-asset-image-item.vwf",
  14. "properties": {
  15. "itemID": "sky",
  16. "itemSrc": "/defaults/assets/skyes/sky3.jpg"
  17. }
  18. },
  19. "fog": {
  20. "extends": "proxy/aframe/aSceneFogComponent.vwf",
  21. "type": "component",
  22. "properties": {
  23. "fogType": "linear",
  24. "fogColor": "#ECECEC",
  25. "far": 20,
  26. "near": 0
  27. }
  28. },
  29. "groundPlane": {
  30. "extends": "proxy/aframe/aplane.vwf",
  31. "properties": {
  32. "height": "50",
  33. "width": "50",
  34. "rotation": [
  35. -90,
  36. 0,
  37. 0
  38. ]
  39. },
  40. "children": {
  41. "material": {
  42. "extends": "proxy/aframe/aMaterialComponent.vwf",
  43. "properties": {
  44. "wireframe": false,
  45. "src": "#bg2",
  46. "repeat": "10 10"
  47. }
  48. }
  49. }
  50. },
  51. "myLight": {
  52. "extends": "proxy/aframe/alight.vwf",
  53. "properties": {
  54. "type": "directional",
  55. "color": "white",
  56. "position": [
  57. 0,
  58. 3,
  59. 2
  60. ],
  61. "rotation": [
  62. 0,
  63. 0,
  64. 0
  65. ]
  66. }
  67. },
  68. "sky": {
  69. "extends": "proxy/aframe/asky.vwf",
  70. "children": {
  71. "material": {
  72. "extends": "proxy/aframe/aMaterialComponent.vwf",
  73. "properties": {
  74. "color": "#ECECEC",
  75. "src": "#sky",
  76. "fog": false,
  77. "side": "back",
  78. "shader": "flat"
  79. }
  80. }
  81. }
  82. },
  83. "spaceText": {
  84. "extends": "proxy/aframe/atext.vwf",
  85. "properties": {
  86. "value": "WebRTC app",
  87. "color": "white",
  88. "position": [
  89. -2,
  90. 2.5,
  91. -2
  92. ]
  93. }
  94. },
  95. "box": {
  96. "extends": "proxy/aframe/abox.vwf",
  97. "properties": {
  98. "position": [
  99. 0,
  100. 0,
  101. -3
  102. ],
  103. "rotation": [
  104. 0,
  105. 0,
  106. 0
  107. ],
  108. "depth": "3",
  109. "height": "0.2",
  110. "width": "3"
  111. },
  112. "children": {
  113. "material": {
  114. "extends": "proxy/aframe/aMaterialComponent.vwf",
  115. "properties": {
  116. "color": "#3c7249"
  117. }
  118. }
  119. }
  120. }
  121. }
  122. }