node.vwf.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "extends": "proxy/node.vwf",
  3. "implements": [
  4. "proxy/animation/animation.vwf"
  5. ],
  6. "properties": {
  7. "displayName": null,
  8. "stepping": null,
  9. "stepTime": null,
  10. "globalBeat": null,
  11. "mouseevent": null,
  12. "drag": null,
  13. "twoWidth": null,
  14. "twoHeight": null,
  15. "matrixManual": null
  16. },
  17. "methods":{
  18. "step": {},
  19. "do": {},
  20. "clickEvent":{},
  21. "mouseupEvent":{},
  22. "mousedownEvent":{},
  23. "getRandomColor":{},
  24. "checkForDragStart":{
  25. "parameters":["avatarID"]
  26. },
  27. "checkForDragEnd":{
  28. "parameters":["avatarID"]
  29. },
  30. "overstartEvent":{
  31. "parameters":["avatarID"]
  32. },
  33. "overendEvent":{
  34. "parameters":["avatarID"]
  35. },
  36. "getScene": {},
  37. "onGlobalBeat": {
  38. "parameters": [
  39. "obj"
  40. ]
  41. },
  42. "viewTroughFilter":{
  43. "parameters": [
  44. "nodeID", "param"
  45. ]
  46. },
  47. "checkOver":{
  48. "parameters": [
  49. "x", "y"
  50. ]
  51. }
  52. },
  53. "scripts": {
  54. "source": "node.js"
  55. }
  56. }