-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathOSC
33 lines (25 loc) · 1.05 KB
/
OSC
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
Toonloop can send and receive OSC messages. Here is the list of messages it can receive and send.
Messages Toonloop can receive
-----------------------------
* /ping: Answer with /pong
* /pong: Do nothing.
* /toon/quit: Quit
* /toon/frame/add: Grab a frame
* /toon/frame/remove: Remove a frame
* /toon/clip/select i:clip_number : Selects a clip
* /toon/clip/save_current : Saves the currently selected clip
* /toon/clip/import_image s:file_name : Imports an image from the filesystem
Messages sent by Toonloop
-------------------------
Toonloop sends the following OSC messages:
* /pong
* /toon/clip/cleared i:clip_number
* /toon/clip/fps i:clip_number i:fps
* /toon/clip/playhead i:clip_number i:image_number s:file_name
* /toon/clip/saved i:clip_number s:file_name
* /toon/clip/select i:clip_number
* /toon/frame/add i:clip_number i:frame_number
* /toon/frame/remove i:clip_number i:frame_number
* /toon/playhead/direction i:clip_number s:direction
* /toon/playhead/none
* /toon/clip/import_image s:file_name : Imports an image from the filesystem