blob: fa3bd85dd7d738c13e2a33d159593a0d4d76d736 (
plain)
1
2
3
4
5
6
7
8
9
10
|
public class OSCGraphicsImage extends OSCGraphicsLayer {
fun string
file(string file)
{
osc_send.startMsg("/layer/"+name+"/file", "s");
file => osc_send.addString;
return file;
}
}
|