1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- # A-Frame & VWF simple scene
- # Copyright 2017 Krestianstvo.org project
- ---
- extends: http://vwf.example.com/aframe/ascene.vwf
- properties:
- assets: "assets.json"
- children:
- fog:
- extends: http://vwf.example.com/aframe/aSceneFogComponent.vwf
- type: "component"
- properties:
- fogType: "linear"
- fogColor: "#ECECEC"
- far: 20
- near: 0
- groundPlane:
- extends: http://vwf.example.com/aframe/aplane.vwf
- properties:
- height: 50
- width: 50
- rotation: "-90 0 0"
- children:
- material:
- extends: http://vwf.example.com/aframe/aMaterialComponent.vwf
- properties:
- wireframe: false
- src: "#bg2"
- repeat: "10 10"
- myLight:
- extends: http://vwf.example.com/aframe/alight.vwf
- properties:
- type: "hemisphere"
- color: "white"
- position: "0 10 5"
- rotation: "0 0 0"
- sky:
- extends: http://vwf.example.com/aframe/asky.vwf
- properties:
- children:
- material:
- extends: http://vwf.example.com/aframe/aMaterialComponent.vwf
- properties:
- color: "#ECECEC"
- src: "#sky"
- fog: false
- side: "back"
- spaceText:
- extends: http://vwf.example.com/aframe/atext.vwf
- properties:
- value: "WebRTC app"
- color: "white"
- position: "-2 2.5 -2"
- box:
- extends: http://vwf.example.com/aframe/abox.vwf
- properties:
- position: "0 0 -3"
- rotation: "0 0 0"
- depth: 3
- height: 0.2
- width: 3
- children:
- material:
- extends: http://vwf.example.com/aframe/aMaterialComponent.vwf
- properties:
- color: "#3c7249"
|