r3dtanim

r3dtanim

Class

real/dtype/r3dtanim.h

Library

r3dtype

Description:

Animation file data type Class

See Also

real/dtype/r3dtfile.h

Super Class

r3Dtfile

R3CLID_DTFILE

JavaScript

r3Dtanim

Class Identifier

R3CLID_DTANIM - 567

Methods

Attributes

CurrentFrame, TotalFrames,

Registration

int R3RegisterDtAnimationClass(R3APP *app);

CurrentFrame

Attribute

CurrentFrame

Identifier

R3DTANIMA_CurrentFrame

JavaScript type

Integer

C type

R3INT

Description

current frame index

Syntax


jsobj.SetCurrentFrame(value);
value = jsobj.GetCurrentFrame();


R3INT value = ...;
R3SetAttrs(r3obj, R3DTANIMA_CurrentFrame, value, R3TAG_END);
R3INT value;
R3GetAttrs(r3obj, R3DTANIMA_CurrentFrame, &value, R3TAG_END);

TotalFrames

Attribute

TotalFrames

Identifier

R3DTANIMA_TotalFrames

JavaScript type

Integer

C type

R3INT

Description

total frames

Syntax


value = jsobj.GetTotalFrames();


R3INT value;
R3GetAttrs(r3obj, R3DTANIMA_TotalFrames, &value, R3TAG_END);


r3appobj *