-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAnimataOSCPlugIn.h
More file actions
48 lines (36 loc) · 1.21 KB
/
AnimataOSCPlugIn.h
File metadata and controls
48 lines (36 loc) · 1.21 KB
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
//
// AnimataOSCPlugIn.h
// AnimataOSC
//
// Created by Matti NiinimŠki on 7/9/09.
// Check the readme for license
//
#import <Quartz/Quartz.h>
#import <VVOSC/VVOSC.h>
@interface AnimataOSCPlugIn : QCPlugIn
{
OSCManager *manager;
OSCOutPort *outport;
}
@property(assign) NSString* inputIP;
@property(assign) NSUInteger inputPort;
@property(assign) NSString* inputLayerName;
@property(assign) BOOL inputLayerSendOpacity;
@property(assign) double inputLayerOpacity;
@property(assign) BOOL inputLayerSendVisibility;
@property(assign) BOOL inputLayerVisibility;
@property(assign) BOOL inputLayerSendPosition;
@property(assign) double inputLayerXPosition;
@property(assign) double inputLayerYPosition;
@property(assign) double inputLayerZPosition;
@property(assign) BOOL inputLayerSendDelta;
@property(assign) double inputLayerXDelta;
@property(assign) double inputLayerYDelta;
//@property(assign) double inputLayerZDelta;
/*
Declare here the Obj-C 2.0 properties to be used as input and output ports for the plug-in e.g.
@property double inputFoo;
@property(assign) NSString* outputBar;
You can access their values in the appropriate plug-in methods using self.inputFoo or self.inputBar
*/
@end