123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- {
- "extends": "proxy/aframe/node.vwf",
- "type": "a-entity",
- "implements": [
- "proxy/animation/animation.vwf",
- "proxy/animation/animationNode.vwf"
- ],
- "properties": {
- "position": {
- "set": "this.position_set(value)",
- "get": "return this.position_get()"
- },
- "rotation": {
- "set": "this.rotation_set(value)",
- "get": "return this.rotation_get()"
- },
- "scale": {
- "set": "this.scale_set(value)",
- "get": "return this.scale_get()"
- },
- "clickable": null,
- "displayName": null,
- "visible": null,
- "edit": null,
- "osc": null,
- "ownedBy": null,
- "class": null,
- "stepping": null,
- "stepTime": null,
- "globalBeat": null,
- "meta": null
- },
- "events": {
- "positionChanged": {},
- "rotationChanged": {},
- "scaleChanged": {},
- "sendOSC": {},
- "intersectEvent": {},
- "clearIntersectEvent": {},
- "hitstartEvent": {},
- "hitendEvent": {},
- "clickEvent": {}
- },
- "methods": {
- "position_get":{},
- "position_set": {
- "parameters": [
- "value"
- ]
- },
- "rotation_get":{},
- "rotation_set": {
- "parameters": [
- "value"
- ]
- },
- "scale_get":{},
- "scale_set": {
- "parameters": [
- "value"
- ]
- },
- "getRandomColor": {},
- "intersectEventMethod": {},
- "clearIntersectEventMethod": {},
- "hitstartEventMethod": {},
- "hitendEventMethod": {},
- "clickEventMethod": {},
- "sendOSC": {
- "parameters": [
- "msg"
- ]
- },
- "setGizmoMode": {
- "parameters": [
- "mode"
- ]
- },
- "showCloseGizmo": {},
- "lookAt": {
- "parameters": [
- "nodeID"
- ]
- },
- "worldRotation": {},
- "worldPosition": {},
- "translationFromValue": {
- "parameters": [
- "propertyValue"
- ]
- },
- "getChildByName": {
- "parameters": [
- "name"
- ]
- },
- "setOwner": {
- "parameters": [
- "propertyValue"
- ]
- },
- "updateMethod": {
- "parameters": [
- "methodName",
- "methodBody",
- "params"
- ]
- },
- "callMethod": {
- "parameters": [
- "methodName",
- "params"
- ]
- },
- "onGlobalBeat": {
- "parameters": [
- "obj"
- ]
- },
- "changeVisual": {},
- "resetVisual": {},
- "step": {},
- "do": {},
- "randomize": {},
- "nodeDef": {}
- },
- "scripts": {
- "source": "aentity.js"
- }
- }
|