12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- ---
- extends: http://vwf.example.com/node3.vwf
- properties:
-
-
-
-
- attachedToCamera:
- set: |
- this.attachedToCamera = function( value ) {
- if ( vwf ) {
- if ( value ) {
- this.camera.attachNodeID = this.find("//pick_up_truck02")[0].id;
- } else {
- this.camera.attachNodeID = '';
- }
- }
- this.attachedToCamera = value;
- }
- value: false
- scripts:
- - |
- var car = this;
- this.pointerClick = function() {
- this.attachedToCamera = !this.attachedToCamera;
- }
|