Source position: agraphics.pas line 816
type tAnimOb = record |
||
NextOb: pAnimOb; |
|
Next Bob |
PrevOb: pAnimOb; |
|
Previous Bob |
Clock: LongInt; |
|
Number of calls to Animate this AnimOb has endured |
AnOldY: SmallInt; |
|
Old y coordinate |
AnOldX: SmallInt; |
|
Old x coordinate |
AnY: SmallInt; |
|
y coordinate of the AnimOb |
AnX: SmallInt; |
|
x coordinate of the AnimOb |
YVel: SmallInt; |
|
Velocity of this object in y direction |
XVel: SmallInt; |
|
Velocity of this object in x direction |
YAccel: SmallInt; |
|
Acceleration of this object in y direction |
XAccel: SmallInt; |
|
Acceleration of this object in x direction |
RingYTrans: SmallInt; |
|
Ring translation y value |
RingXTrans: SmallInt; |
|
Ring translation x values |
AnimORoutine: Pointer; |
|
Pointer of special animation procedure |
HeadComp: pAnimComp; |
|
Pointer to first component |
AUserExt: SmallInt; |
|
AnimOb user extension |
end; |