1234567891011121314151617181920212223 |
- # A-Frame & VWF simple scene
- # Copyright 2017 Krestianstvo.org project
- ---
- extends: http://vwf.example.com/aframe/ascene.vwf
- properties:
- fog: "type: linear; color: #ECECEC; far: 9; near: 0"
- children:
- spaceText:
- extends: http://vwf.example.com/aframe/atext.vwf
- properties:
- value: "Virtual World Framework & A-Frame"
- color: "#b74217"
- position: [-2, 2.5, -2]
- children:
- linepath:
- extends: http://vwf.example.com/aframe/linepath.vwf
- properties:
- color: "#b74217"
- path: [{"x":0.0, "y":0.0, "z":0.0}, {"x":2.0, "y":1.0, "z":1.0},{"x":3.0, "y":5.0, "z":2.0}]
- sky:
- extends: http://vwf.example.com/aframe/a-sun-sky.vwf
- properties:
- sunPosition: "-0.2 5 -5"
|