123456789101112131415161718192021222324252627282930313233343536373839 |
- # A-Frame & VWF simple scene
- # Copyright 2017 Krestianstvo.org project
- ---
- extends: http://vwf.example.com/aframe/ascene.vwf
- properties:
- assets: "assets.json"
- children:
- skySun:
- extends: http://vwf.example.com/aframe/aentity.vwf
- children:
- sun:
- extends: http://vwf.example.com/aframe/app-sun-component.vwf
- newSky:
- extends: http://vwf.example.com/aframe/aentity.vwf
- children:
- skyshader:
- extends: http://vwf.example.com/aframe/app-skyshader-component.vwf
- lightAmbient:
- extends: http://vwf.example.com/aframe/alight.vwf
- properties:
- type: "ambient"
- color: "#CCC"
- myLight:
- extends: http://vwf.example.com/aframe/alight.vwf
- properties:
- type: "directional"
- position: "0 20 0"
- model:
- extends: http://vwf.example.com/aframe/agltfmodel.vwf
- properties:
- src: "#av"
- position: "0 0 -4"
- children:
- animation-mixer:
- extends: http://vwf.example.com/aframe/anim-mixer-component.vwf
- properties:
- clip: "*"
- duration: 3
- crossFadeDuration: 0.5
|