transport.vwf.json 625 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "extends": "proxy/aframe/aentity.vwf",
  3. "type": "transport",
  4. "properties": {
  5. "beat": null,
  6. "playing": null
  7. },
  8. "methods": {
  9. "init": {},
  10. "simpleVis": {},
  11. "animationUpdate": {
  12. "parameters": [
  13. "time",
  14. "duration"
  15. ]
  16. },
  17. "play": {},
  18. "stop": {},
  19. "setupTransport": {},
  20. "doGlobalBeat": {
  21. "parameters": [
  22. "time",
  23. "duration",
  24. "beat"
  25. ]
  26. }
  27. },
  28. "scripts": {
  29. "source": "transport.js"
  30. }
  31. }