1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
from __future__ import annotations
def play_note(pitch, velocity, length=1.0/16.0, pan = 0, output_index = 0):
pass
def schedule_note(delay, pitch, velocity, length=1.0/16.0, pan = 0, output_index = 0):
pass
def schedule_note_msg(delay, pitch, velocity, pan = 0, output_index = 0):
pass
def schedule_call(delay, method):
pass
def note_msg(pitch, velocity, pan = 0, output_index = 0):
pass
def set(path, value):
pass
def schedule_set(delay, path, value):
pass
def get(path):
pass
def adjust(path, amount):
pass
def highlight_line(lineNum, scriptModuleIndex):
pass
def output(obj):
pass
def me():
pass
def stop():
pass
def get_caller():
pass
def set_num_note_outputs(num):
pass
def connect_osc_input(port):
pass
def send_cc(control, value, output_index = 0):
pass
|