| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 | 
							- # 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: "point"
 
-       color: "white"
 
-       position: "0 3 0"
 
-       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: "Paint 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
 
-       myProperty:
 
-         set: |
 
-           if ( value == "fancy" ) {
 
-             this.myProperty = value + " coding!";
 
-           } else {
 
-             this.myProperty = value;
 
-           }
 
-         get: |
 
-           return this.myProperty;
 
-         value: "fancy"
 
-     children:
 
-       material:
 
-         extends: http://vwf.example.com/aframe/aMaterialComponent.vwf
 
-         properties:
 
-           color: "#3c7249"
 
-   drawBox:
 
-     extends: http://vwf.example.com/aframe/aentity.vwf
 
-     properties:
 
-       position: "0 0 0"
 
-   defaultXRCostume:
 
-     extends: http://vwf.example.com/aframe/abox.vwf
 
-     properties:
 
-       displayName: "defaultXRCostume"
 
-       position: "0 0 0"
 
-       height: 0.01
 
-       width: 0.01
 
-       depth: 0.3
 
-       penDown: false
 
-       penName: "drawNode"
 
-     children:
 
-       material:
 
-         extends: http://vwf.example.com/aframe/aMaterialComponent.vwf
 
-         type: "component"
 
-         properties:
 
-           color: "#6aa171"
 
-       pointer:
 
-         extends: http://vwf.example.com/aframe/abox.vwf
 
-         properties:
 
-           position: "0 0 -0.25"
 
-           height: 0.05
 
-           width: 0.05
 
-           depth: 0.05
 
-         children:
 
-           material:
 
-             extends: http://vwf.example.com/aframe/aMaterialComponent.vwf
 
-             type: "component"
 
-             properties:
 
-               color: "green"
 
-     methods:
 
-       triggerdown:
 
-       triggerup:
 
-       onMove:
 
-     scripts:
 
-       - source: "controller.js"
 
 
  |