cursorVisual.vwf.json 738 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "extends": "proxy/aframe/aentity.vwf",
  3. "properties": {
  4. "start": null,
  5. "end": {
  6. "set": "this.end_set(value)",
  7. "get": "return this.end_get()"
  8. },
  9. "color": {
  10. "set": "this.color_set(value)",
  11. "get": "return this.color_get()"
  12. },
  13. "width": 0.05,
  14. "avatarColor": "white"
  15. },
  16. "methods": {
  17. "createVisual": {},
  18. "end_get": {},
  19. "end_set": {
  20. "parameters": [
  21. "value"
  22. ]
  23. },
  24. "color_get": {},
  25. "color_set": {
  26. "parameters": [
  27. "value"
  28. ]
  29. }
  30. },
  31. "scripts": {
  32. "source": "cursorVisual.js"
  33. }
  34. }