Package | Description |
---|---|
cas |
Provides classes defining CAS (Character Animation Stream) data objects.
|
Modifier and Type | Method and Description |
---|---|
CASMorph |
CASFrame.getMorph(int morph4cc)
Returns this frame's morph of the given name if it has one, or
null otherwise. |
CASMorph[] |
CASFrame.getMorphs()
Gets the morph array for this frame.
|
Modifier and Type | Method and Description |
---|---|
void |
CASFrame.copy(float time,
float dur,
CASTRSet[] bones,
CASMorph[] morphvec)
Completely redefines this frame by creating its own copies
of all the given data.
|
void |
CASFrame.set(float time,
float dur,
CASTRSet[] bones,
CASMorph[] morphs)
Completely redefines this frame by attaching the given
data to it (that is, the array references are copied, not
the arrays themselves).
|
Constructor and Description |
---|
CASFrame(CASTRSet[] bones,
CASMorph[] morphs)
Constructs a frame using the given arrays.
|
CASFrame(float time,
CASTRSet[] bones,
CASMorph[] morphs)
Constructs a frame using the given time-stamp and data arrays.
|
CASFrame(float time,
float dur,
CASTRSet[] bones,
CASMorph[] morphs)
Constructs a frame using the given time-stamp, duration, and
data arrays.
|
CASMorph(CASMorph morph)
Constructs a copy of the given morph.
|