123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- # A-Frame & VWF simple scene
- # Copyright 2017 Krestianstvo.org project
- ---
- extends: http://vwf.example.com/aframe/ascene.vwf
- properties:
- transparent: true
- assets: "assets.json"
- children:
- sky:
- extends: http://vwf.example.com/aframe/asky.vwf
- properties:
- color: "#ECECEC"
- side: "back"
- fog: false
- spaceText:
- extends: http://vwf.example.com/aframe/atext.vwf
- properties:
- value: "Virtual World Framework & A-Frame"
- color: "#b74217"
- position: "-2 2.5 -2"
- spaceText2:
- extends: http://vwf.example.com/aframe/atext.vwf
- properties:
- value: "Project by Krestianstvo.org"
- color: "#305b32"
- position: "1 3 -4"
- box:
- extends: http://vwf.example.com/aframe/abox.vwf
- properties:
- position: "-1 0.5 -3"
- rotation: "0 -30 0"
- color: "#3c7249"
- depth: 2
- height: 1
- width: 1
- groundPlane:
- extends: http://vwf.example.com/aframe/aplane.vwf
- properties:
- height: 50
- width: 50
- repeat: "10 10"
- rotation: "-90 0 0"
- color: "white"
- wireframe: false
- src: "#bg2"
- camera1:
- extends: http://vwf.example.com/aframe/abox.vwf
- properties:
- position: "2 1.6 -2"
- depth: 0.2
- height: 0.2
- width: 0.2
- color: "red"
- children:
- cam:
- extends: http://vwf.example.com/aframe/acamera.vwf
- properties:
- look-controls-enabled: false
- wasd-controls-enabled: false
- user-height: 0
- children:
- viewoffset:
- extends: http://vwf.example.com/aframe/viewOffsetCamera-component.vwf
- properties:
- xoffset: 0
- yoffset: 0
|