Page History
...
- Basic types:
int, bool, float, Color
(3float
RGB),AColor
(4float
ARGB),Vector
(3float
),string
(UTF-8),Matrix
(3Vector
s),Transform
(aMatrix
and aVector
for translation) - Objects: references to other plugin instances
- Typed lists: The typed lists in AppSDK are
IntList, FloatList, ColorList
andVectorList
. - Generic heterogenous heterogeneous lists: The AppSDK uses a generic type class called
Value
for items in a generic list. Note that generic lists can be nested. - Output parameters
These are additional values generated by a given plugin which may be used as input by others. For example theTexAColorOp
plugin (described in section 5.2) can be referenced directly as a texture, resulting in its default color texture output, but you can also refer to any of its other outputs, likesum, difference, maximum
etc. for different results (Note: in some cases connecting an output parameter to an input parameter may not work directly, so you'd have to make the connection through a wrapper plugin likeTexAColor
orTexFloat
).
...