mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-27 16:43:44 +00:00
21 lines
796 B
C
21 lines
796 B
C
|
#pragma once
|
||
|
|
||
|
//struct RpHAnimHierarchy;
|
||
|
typedef rw::HAnimHierarchy RpHAnimHierarchy;
|
||
|
//struct RpHAnimAnimation;
|
||
|
typedef rw::Animation RpHAnimAnimation;
|
||
|
|
||
|
RwBool RpHAnimPluginAttach(void);
|
||
|
|
||
|
RwBool RpHAnimFrameSetHierarchy(RwFrame *frame, RpHAnimHierarchy *hierarchy);
|
||
|
RpHAnimHierarchy *RpHAnimFrameGetHierarchy(RwFrame *frame);
|
||
|
|
||
|
RwBool RpHAnimHierarchySetCurrentAnim(RpHAnimHierarchy *hierarchy, RpHAnimAnimation *anim);
|
||
|
RwBool RpHAnimHierarchySetCurrentAnimTime(RpHAnimHierarchy *hierarchy, RwReal time);
|
||
|
RwBool RpHAnimHierarchySubAnimTime(RpHAnimHierarchy *hierarchy, RwReal time);
|
||
|
RwBool RpHAnimHierarchyAddAnimTime(RpHAnimHierarchy *hierarchy, RwReal time);
|
||
|
|
||
|
RwBool RpHAnimHierarchyUpdateMatrices(RpHAnimHierarchy *hierarchy);
|
||
|
|
||
|
RpHAnimAnimation *RpHAnimAnimationStreamRead(RwStream *stream);
|