realtime_controller.lua 539 B

1234567891011121314151617181920212223242526272829303132333435
  1. format_version = "1.0"
  2. rtc_bindings = {
  3. { source = "/environment/system_sample_rate", dest = "/global_rtc/init_instance" },
  4. { source = "/environment/instance_id", dest = "/global_rtc/init_instance" },
  5. }
  6. global_rtc = {
  7. init_instance = function(source_property_path, instance_id)
  8. end,
  9. }
  10. sample_rate_setup = {
  11. native = {
  12. 22050,
  13. 44100,
  14. 48000,
  15. 88200,
  16. 96000,
  17. 192000
  18. },
  19. }
  20. rt_input_setup = {
  21. notify = {
  22. "/note_states/*",
  23. "/transport/*",
  24. "/custom_properties/*",
  25. "/environment/player_bypassed",
  26. },
  27. }