| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198 | this.initialize = function () {    if(Object.getPrototypeOf(this).id.includes('ascene.vwf')){        console.log("Initialize of Scene...", this.id);        this.future(3).clientWatch();    } else {        console.log("Initialize proto Scene..", this.id);    }       //this.createDefaultXRCostume();};this.clientWatch = function () {    var self = this;    if (this.children.length !== 0) {        var clients = this.find("doc('proxy/clients.vwf')")[0];        if (clients !== undefined) {            //console.log(clients.children);            let clientsArray = [];            clients.children.forEach(function (element) {                clientsArray.push(element.name);            });            this.children.forEach(function (node) {                if (node.id.indexOf('avatar-') != -1) {                    if (clientsArray.includes(node.id.slice(7))) {                        //console.log(node.id + 'is here!');                    } else {                        //console.log(node.id + " needed to delete!");                        let idToDelete = node.id.slice(7);                        let nodes = self.children.filter(el=>                            (el.id.includes(idToDelete) &&                             (   el.id.includes('avatar-') ||                                el.id.includes('xrcontroller-') ||                                el.id.includes('mouse-') ||                                el.id.includes('gearvr-')))                                                            );                        nodes.forEach(el => {                            self.children.delete(self.children[el.id])                        })                        // self.children.delete(self.children[node.id]);                        // //'gearvr-'                        // let controllerVR = self.children['gearvr-' + node.id.slice(7)];                        // if (controllerVR) {                        //     self.children.delete(controllerVR);                        // }                        // let wmrvR = self.children['wmrvr-right-' + node.id.slice(7)];                        // if (wmrvR) {                        //     self.children.delete(wmrvR);                        // }                        // let wmrvL = self.children['wmrvr-left-' + node.id.slice(7)];                        // if (wmrvL) {                        //     self.children.delete(wmrvL);                        // }                    }                }            });        }    }    this.future(5).clientWatch();};this.sphereProto = function () {    let node = {        "extends": "proxy/aframe/asphere.vwf",        "properties": {            "displayName": "sphere",            "radius": 1,            "class": "clickable"        },        children: {            "material": {                "extends": "proxy/aframe/aMaterialComponent.vwf",                "type": "component",                "properties":{                    "color": "white"                }            },            "interpolation":                {                    "extends": "proxy/aframe/interpolation-component.vwf",                    "type": "component",                    "properties": {                        "enabled": true                    }                },            "cursor-listener": {                "extends": "proxy/aframe/app-cursor-listener-component.vwf",                "type": "component"            }        },        events: {            "clickEvent": {                "body": ""            }        }    }    return node}this.cylinderProto = function () {    let node = {        "extends": "proxy/aframe/acylinder.vwf",        "properties": {            "displayName": "cylinder",            "radius": 1,            "height": 1,            "class": "clickable"        },        children: {            "material": {                "extends": "proxy/aframe/aMaterialComponent.vwf",                "type": "component",                "properties":{                    "color": "white"                }            },            "interpolation":                {                    "extends": "proxy/aframe/interpolation-component.vwf",                    "type": "component",                    "properties": {                        "enabled": true                    }                },            "cursor-listener": {                "extends": "proxy/aframe/app-cursor-listener-component.vwf",                "type": "component"            }        },        events: {            "clickEvent": {                "body": ""            }        }    }    return node}this.coneProto = function () {    let node = {        "extends": "proxy/aframe/acone.vwf",        "properties": {            "displayName": "cone",            "radius-bottom": 1,            "radius-top": 0.01,            "height": 1,            "class": "clickable"        },        children: {            "material": {                "extends": "proxy/aframe/aMaterialComponent.vwf",                "type": "component",                "properties":{                    "color": "white"                }            },            "interpolation":                {                    "extends": "proxy/aframe/interpolation-component.vwf",                    "type": "component",                    "properties": {                        "enabled": true                    }                },            "cursor-listener": {                "extends": "proxy/aframe/app-cursor-listener-component.vwf",                "type": "component"            }        },        events: {            "clickEvent": {                "body": ""            }        }    }    return node}this.textProto = function (textValue) {    let value = textValue ? textValue: "Text";    let node = {        "extends": "proxy/aframe/atext.vwf",        "properties": {            "displayName": "text",            "color": "white",            "value": value,            "side": "double",            "class": "clickable",            //"font": "/vwf/model/aframe/fonts/custom-msdf.json",            "negate": false        },        children: {            "interpolation":                {                    "extends": "proxy/aframe/interpolation-component.vwf",                    "type": "component",                    "properties": {                        "enabled": true                    }                },            "cursor-listener": {                "extends": "proxy/aframe/app-cursor-listener-component.vwf",                "type": "component"            }        },        events: {            "clickEvent": {                "body": ""            }        }    }    return node}this.cubeProto = function () {    let node = {        "extends": "proxy/aframe/abox.vwf",        "properties": {            "displayName": "cube",            "height": 1,            "width": 1,            "depth": 1,            "class": "clickable"        },        children: {            "interpolation":                {                    "extends": "proxy/aframe/interpolation-component.vwf",                    "type": "component",                    "properties": {                        "enabled": true                    }                },            "cursor-listener": {                "extends": "proxy/aframe/app-cursor-listener-component.vwf",                "type": "component"            },            "material": {                "extends": "proxy/aframe/aMaterialComponent.vwf",                "type": "component",                "properties":{                    "color": "white"                }            }        },        events: {            "clickEvent": {                "body": ""            }        }    }    return node}this.lightProto = function (lightType) {    var newLightType = lightType    if (!newLightType){        newLightType = "directional"    }    let node = {        "extends": "proxy/aframe/alight.vwf",        "properties": {            "displayName": newLightType,            "type": newLightType,            "class": "clickable"        },        children: {            "interpolation":                {                    "extends": "proxy/aframe/interpolation-component.vwf",                    "type": "component",                    "properties": {                        "enabled": true                    }                },            "cursor-listener": {                "extends": "proxy/aframe/app-cursor-listener-component.vwf",                "type": "component"            }        },        events: {            "clickEvent": {                "body": ""            }        }    }    return node}this.mirrorProto = function () {    let newNode = this.cubeProto();    newNode.properties.width = 3;    newNode.properties.height = 4;    newNode.properties.depth= 0.1;    newNode.children.material.properties.color = "white";    newNode.children.mirrorComponent = {        "extends": "proxy/aframe/a-mirror-component.vwf",        "type": "component",        "properties": {            "camera": "avatarControl"        }    }    return newNode}this.cameraProto = function () {    let newNode = this.cubeProto();    newNode.properties.width = 0.3;    newNode.properties.height = 0.3;    newNode.properties.depth= 0.5;    newNode.children.material.properties.opacity = 0.5;    newNode.children.material.properties.color = "red";    newNode.children.camera = {        "extends": "proxy/aframe/acamera.vwf",        "properties": {            "look-controls-enabled": false,            "wasd-controls-enabled": false,            "user-height": 0        }    }    return newNode}this.cameraProtoWithOffset = function () {    let newNode = this.cubeProto();    newNode.properties.width = 0.3;    newNode.properties.height = 0.3;    newNode.properties.depth= 0.5;    newNode.children.material.properties.opacity = 0.5;    newNode.children.material.properties.color = "red";    newNode.children.camera = {        "extends": "proxy/aframe/acamera.vwf",        "properties": {            "look-controls-enabled": false,            "wasd-controls-enabled": false,            "user-height": 0        },        children: {            viewoffset: {                extends: "proxy/aframe/viewOffsetCamera-component.vwf",                properties: {                }            }                   }}    return newNode}this.planeProto = function () {    let node = {        "extends": "proxy/aframe/aplane.vwf",        "properties": {            "displayName": "plane",            "height": 1,            "width": 1,            "class": "clickable"        },        children: {            "material": {                "extends": "proxy/aframe/aMaterialComponent.vwf",                "type": "component",                "properties": {                    "side": "double",                    "color": "white"                }            },            "interpolation":                {                    "extends": "proxy/aframe/interpolation-component.vwf",                    "type": "component",                    "properties": {                        "enabled": true                    }                },            "cursor-listener": {                "extends": "proxy/aframe/app-cursor-listener-component.vwf",                "type": "component"            }        },        events: {            "clickEvent": {                "body": ""            }        }    }    return node}this.createModelObj = function (mtlSrc, objSrc, name, avatar) {    var self = this;    var nodeName = this.GUID();    let modelNode = {        "extends": "proxy/aframe/aobjmodel.vwf",        "properties": {            "src": '#' + objSrc,            "mtl": '#' + mtlSrc        },        children:{            "interpolation":            {                "extends": "proxy/aframe/interpolation-component.vwf",                "type": "component",                "properties": {                    "enabled": true                }            }        }    }    if (name) {        modelNode.properties.displayName = name;    }    self.children.create(nodeName, modelNode, function( child ) {        //if (avatar) child.lookAt(self.children[avatar].worldPosition())        if (avatar) child.placeInFrontOf(avatar, -2)       });}this.createLegoBoost = function (boostID, parentName) {    var self = this;    let nodeName = 'legoboost-' + this.smallRandomId();    let legoBoostNode = {        "extends": "proxy/objects/legoboost.vwf",        "properties": {            "boostID": boostID,            "position": "0 1 0",            "displayName": boostID,            "tracking": false        }    }    let rootNode = parentName ? this.getChildByName(parentName) : this;    rootNode.children.create(nodeName, legoBoostNode, function( child ) {        child.createVisual();        child.trackLego();    })}this.createModel = function (modelType, modelSrc, avatar) {    var self = this;    let tagName = modelType + '-ASSET-'+ this.GUID();    let tagNode = {        "extends": "proxy/aframe/a-asset-item.vwf",        "properties": {            "itemID": tagName,            "itemSrc": modelSrc        }    }    this.children.create(tagName, tagNode, function( child ) {        let nodeName = modelType + '-MODEL-'+self.GUID();               const protos = {            DAE: "proxy/aframe/acolladamodel.vwf",            OBJ: "proxy/aframe/aobjmodel.vwf",            GLTF: "proxy/aframe/agltfmodel.vwf"        }        let extendsName = Object.entries(protos).filter(el => el[0] == modelType)[0];         let modelNode = {            "extends": extendsName[1],            "properties": {                "src": '#' + child.itemID            },            children:{                "interpolation":                {                    "extends": "proxy/aframe/interpolation-component.vwf",                    "type": "component",                    "properties": {                        "enabled": true                    }                }            }        }        self.children.create(nodeName, modelNode, function( child ) {            //if (avatar) child.lookAt(self.children[avatar].worldPosition())            if (avatar) child.placeInFrontOf(avatar, -2)           });       });}this.createAssetResource = function(resType, resSrc){    var self = this;    const protos = {        IMG: "proxy/aframe/a-asset-image-item.vwf",        AUDIO: "proxy/aframe/a-asset-audio-item.vwf",        VIDEO:  "proxy/aframe/a-asset-video-item.vwf",        ITEM:  "proxy/aframe/a-asset-item.vwf"     };    let extendsName = Object.entries(protos).filter(el => el[0] == resType)[0];    let tagName = resType + '-ASSET-'+ this.GUID();    let tagNode = {        "extends": extendsName[1],        "properties": {            "itemID": tagName,            "itemSrc": resSrc        }    }    this.children.create(tagName, tagNode);}this.createDrawNode = function(node, name, color, width, pos) {    let newNode = {        extends: "proxy/aframe/aentity.vwf",        properties: {            position: pos        },        children: {            linepath: {                extends: "proxy/aframe/linepath.vwf",                properties: {                    color: color,                    path: [],                    width: width                }            }        }    }    node.children.create(name, newNode);} this.createPrimitive = function (type, params, name, node, avatar) {    var displayName = name;    let nodeName = this.GUID();    // if (!nodeName) {    //     nodeName = this.GUID();    // }    var newNode = {};    switch (type) {        case "cube":            newNode = this.cubeProto();            break;        case "sphere":            newNode = this.sphereProto();            break;        case "plane":            newNode = this.planeProto();            break;        case "light":            newNode = this.lightProto(params.type);            break;                    case "text":            newNode = this.textProto(params.text);            break;        case "cylinder":            newNode = this.cylinderProto();            break;                case "cone":            newNode = this.coneProto();            break;        default:            newNode = undefined;            break;    }    var self = this;    if (newNode) {        if (displayName) {            newNode.properties.displayName = displayName;        }        this.children.create(nodeName, newNode, function( child ) {            if (avatar) child.placeInFrontOf(avatar, -2)            //child.lookAt(self.children[avatar].worldPosition());                        if (type == "text"){                child.properties.font = "/drivers/model/aframe/fonts/custom-msdf.json"            }          });    }}this.createMirror = function (name, node, avatar) {    var nodeName = name;    if (!nodeName) {        nodeName = this.GUID();    }    // if (avatar) {    //     let myAvatar = this.children[avatar];    //     let cursorNode = myAvatar.avatarNode.myHead.myCursor.vis;    //     if (cursorNode) {    //         position = cursorNode.worldPosition();    //         //console.log(position);    //     }    // }    var newNode = this.mirrorProto();    newNode.properties.displayName = "mirror";    var self = this;    if (newNode) {        this.children.create(nodeName, newNode, function( child ) {            if (avatar) child.placeInFrontOf(avatar, -2)            //if (avatar) child.lookAt(self.children[avatar].worldPosition());          });    }}this.createCamera = function (name, node, avatar) {    var nodeName = name;    if (!nodeName) {        nodeName = this.GUID();    }    var newNode = this.cameraProto();    newNode.properties.displayName = "camera";    var self = this;    if (newNode) {        this.children.create(nodeName, newNode, function( child ) {            if (avatar) child.placeInFrontOf(avatar, -2)            //if (avatar) child.lookAt(self.children[avatar].worldPosition());          });    }}this.createCameraWithOffset = function (name, node, avatar) {    var position = "0 0 0";    var nodeName = name;    if (!nodeName) {        nodeName = this.GUID();    }    var newNode = this.cameraProtoWithOffset();    newNode.properties.displayName = "cameraWithOffset";    var self = this;    if (newNode) {        newNode.properties.position = position;        this.children.create(nodeName, newNode, function( child ) {            //if (avatar) child.lookAt(self.children[avatar].worldPosition());            if (avatar) child.placeInFrontOf(avatar, -2)          });    }}this.createImage = function (imgSrc, name, node, avatar) {    var self = this;    var nodeName = name;    if (!nodeName) {        nodeName = this.GUID();    }    let tagName = 'IMG-ASSET-'+ this.GUID();    let tagNode = {        "extends": "proxy/aframe/a-asset-image-item.vwf",        "properties": {            "itemID": tagName,            "itemSrc": imgSrc        }    }    this.children.create(tagName, tagNode, function( child ) {        var nodeName = 'IMAGE-'+self.GUID();         let newNode = self.planeProto();        newNode.properties.displayName = "image";        newNode.children.material.properties.src = '#' + child.itemID;        //newNode.properties.position = position;        newNode.properties.scale = [0.003, 0.003, 0.003];                if(child.width && child.height){            newNode.properties.width = child.width;            newNode.properties.height = child.height;            self.children.create(nodeName, newNode, function( child ) {                //if (avatar) child.lookAt(self.children[avatar].worldPosition())                if (avatar) child.placeInFrontOf(avatar, -2)               });            } else {            let allNodes = vwf.models["/drivers/model/aframe"].model.state.nodes;            let imgAssetNode = allNodes[child.id];                imgAssetNode.aframeObj.onload = function(){               // console.log(imgAssetNode);        newNode.properties.width = child.width;        newNode.properties.height = child.height;                self.children.create(nodeName, newNode, function( child ) {                //if (avatar) child.lookAt(self.children[avatar].worldPosition())                if (avatar) child.placeInFrontOf(avatar, -2)               });                }        }                     });}this.createVideo = function (vidSrc, name, node, avatar) {    var self = this;    var nodeName = name;    if (!nodeName) {        nodeName = this.GUID();    }    let tagName = 'VIDEO-ASSET-'+ this.GUID();    let tagNode = {        "extends": "proxy/aframe/a-asset-video-item.vwf",        "properties": {            "itemID": tagName,            "itemSrc": vidSrc        }    }    this.children.create(tagName, tagNode, function( child ) {        let nodeName = 'VIDEO-'+self.GUID();         let newNode = self.planeProto();        newNode.properties.displayName = "video";        newNode.children.material.properties.src = '#' + child.itemID;        //newNode.properties.position = position;        // newNode.properties.width = 3;        // newNode.properties.height = 1.75;        newNode.properties.scale = [0.003, 0.003, 0.003];        if (child.videoWidth && child.videoHeight) {            newNode.properties.width = child.videoWidth;            newNode.properties.height = child.videoHeight;            self.children.create(nodeName, newNode, function( child ) {                //if (avatar) child.lookAt(self.children[avatar].worldPosition())                if (avatar) child.placeInFrontOf(avatar, -2)               });        } else {            let allNodes = vwf.models["/drivers/model/aframe"].model.state.nodes;            let imgAssetNode = allNodes[child.id];                imgAssetNode.aframeObj.onloadeddata = function(){                newNode.properties.width = child.videoWidth;                newNode.properties.height = child.videoHeight;                self.children.create(nodeName, newNode, function( child ) {                    //if (avatar) child.lookAt(self.children[avatar].worldPosition())                    if (avatar) child.placeInFrontOf(avatar, -2)                   });            }            }               });}this.createAudio = function (itemSrc, name, node, avatar) {    var self = this;    var nodeName = name;    if (!nodeName) {        nodeName = this.GUID();    }    let tagName = 'AUDIO-ASSET-'+ this.GUID();    let tagNode = {        "extends": "proxy/aframe/a-asset-audio-item.vwf",        "properties": {            "itemID": tagName,            "itemSrc": itemSrc        }    }    this.children.create(tagName, tagNode, function( child ) {        // let allNodes = vwf.models["vwf/model/aframe"].model.state.nodes;        // let itemAssetNode = allNodes[child.id];    //     itemAssetNode.aframeObj.onload = function(){    //    console.log(itemAssetNode);        let nodeName = 'AUDIO-'+self.GUID();         let newNode = self.cubeProto();        newNode.properties.displayName = "audio";       // newNode.properties.position = position;        newNode.properties.width = 0.3;        newNode.properties.height = 0.3;        newNode.properties.depth= 0.3;        newNode.children.material.properties.opacity = 0.5;        newNode.children.material.properties.color = "yellow";        newNode.children.sound = {                            "extends": "proxy/aframe/a-sound-component.vwf",                "type": "component",                "properties": {                    "autoplay": false,                    "loop": true,                    "isPlaying": false,                    "src": '#' + child.itemID                }                    };        self.children.create(nodeName, newNode, function( child ) {            //if (avatar) child.lookAt(self.children[avatar].worldPosition())            if (avatar) child.placeInFrontOf(avatar, -2)           });       // }               });}this.createGooglePoly = function(polyID, name, node, avatar){    // all done in aframe view driver    let params = [polyID, name, node, avatar];    this.loadGooglePolyAsset(params)  }this.loadGooglePolyAsset = function( params ) {    var self = this;    const API_KEY = "AIzaSyCGx2_idlUJ88yW5GBkOllIkyxJyKbEgDk";    const id = params[0];    const avatarID = params[3];    var url = `https://poly.googleapis.com/v1/assets/${id}/?key=${API_KEY}`;    var request = new XMLHttpRequest();    request.open( 'GET', url, true );    request.addEventListener( 'load', function ( event ) {        var asset = JSON.parse( event.target.response );        // asset_name.textContent = asset.displayName;        // asset_author.textContent = asset.authorName;        var format = asset.formats.find( format => { return format.formatType === 'OBJ'; } );        if ( format !== undefined ) {            var obj = format.root;            var mtl = format.resources.find( resource => { return resource.url.endsWith( 'mtl' ) } );            var path = obj.url.slice( 0, obj.url.indexOf( obj.relativePath ) );                        //const createOnNodeID = vwf.application();            let mtlName = 'MTL-ASSET-'+ self.GUID();            let mtlNode = {                "extends": "proxy/aframe/a-asset-item.vwf",                "properties": {                    "itemID": mtlName,                    "itemSrc": mtl.url                }            }                    self.children.create(mtlName, mtlNode, function( mtlChild ) {                let objName = 'OBJ-ASSET-'+ self.GUID();                let objNode = {                    "extends": "proxy/aframe/a-asset-item.vwf",                    "properties": {                        "itemID": objName,                        "itemSrc": obj.url                    }                }                self.children.create(objName, objNode, function( objChild ) {                        self.createModelObj(mtlChild.itemID, objChild.itemID, asset.displayName, avatarID);                })            })        }    } );    request.send( null );}this.GUID = function () {    var self = this;    var S4 = function () {        return Math.floor(            self.random() * 0x10000 /* 65536 */        ).toString(16);    };    return (        S4() + S4() + "-" +        S4() + "-" +        S4() + "-" +        S4() + "-" +        S4() + S4() + S4()    );}this.smallRandomId = function()  {    return '_' + this.random().toString(36).substr(2, 9);}this.assetImgProto = function () {    let node = {        "extends": "proxy/aframe/a-asset-image-item.vwf",        "properties": {        },    }    return node}this.createAssetItemImg = function(){    console.log("create new asset item for img");    let nodeName = "asset-item-img-" + this.smallRandomId();    let newNode = {        "extends": "proxy/aframe/a-asset-image-item.vwf",        "properties": {            itemID:  nodeName,            itemSrc: ""        }    }    this.children.create(nodeName, newNode);}this.deleteNode = function(nodeName){      let node = this.children[nodeName];    if (node) this.children.delete(node);}this.enterVR = function(){    console.log("ENTER VR");}this.exitVR = function(){    console.log("EXIT VR");}this.getChildByName = function (name) {    let nodes = this.children.filter(el => el.displayName == name);    return nodes[0]}this.getAllChildsByName = function (name) {    let nodes = this.children.filter(el => el.displayName == name);    return nodes}this.getDefaultXRCostume = function(){    let myColor = "white";        let defaultXRCostume = {        "extends": "proxy/aframe/aentity.vwf",        "properties": {            displayName: "defaultXRCostume",            "position": "0 0 0",            "avatarColor": myColor,            "mousedown_state": false,            "triggerdown_state": false            // "height": 0.01,            // "width": 0.01,            // "depth": 1        },        "methods":{            mousedownAction:{                body:`                this.mousedown_state = true;                    if(elID){                        //let node = this.findNodeByID(elID);                        vwf.callMethod(elID, "mousedownAction",[])                    }                `,                parameters:["point", "elID"],                type: "application/javascript"            },            mouseupAction:{                body:`                    if(elID){                        //let node = this.findNodeByID(elID);                        vwf.callMethod(elID, "mouseupAction",[])                    }                this.mousedown_state = false;                `,                parameters:["point", "elID"],                type: "application/javascript"            },            triggerdownAction:{                body:`                //do on trigger down                this.triggerdown_state = true;                this.cursorVisual.color = "red";                if(elID){                    //let node = this.findNodeByID(elID);                    let pointData = AFRAME.utils.coordinates.parse(point);                    vwf.callMethod(elID, "triggerdownAction",[pointData])                }                `,                parameters:["point", "elID"],                type: "application/javascript"            },            triggerupAction:{                body:`                //do on trigger up                this.cursorVisual.color = this.cursorVisual.avatarColor;                if(elID){                    //let node = this.findNodeByID(elID);                    let pointData = AFRAME.utils.coordinates.parse(point);                    vwf.callMethod(elID, "triggerupAction",[pointData])                }                this.triggerdown_state = false;                `,                parameters:["point", "elID"],                type: "application/javascript"            },            onMove:{                body:`                 if(this.mousedown_state || this.triggerdown_state){                    if(idata){                        //console.log('Move POINT: ', idata.point, + ' on ' + idata.elID);                        let point = AFRAME.utils.coordinates.parse(idata.point);                        vwf.callMethod(idata.elID, "moveAction",[point])                    }                }                `,                parameters:["idata"],                type: "application/javascript"            }        },        children: {            "cursorVisual": {                "extends": "proxy/objects/cursorVisual.vwf",                "type": "",                "properties": {                    "color": myColor,                    "position": "0 0 0"                }            },            "aabb-collider": {                "extends": "proxy/aframe/aabb-collider-component.vwf",                "type": "component",                "properties": {                    debug: false,                    interval: 10,                    objects: ".hit"                }            }                 }        }    return defaultXRCostume}
 |