32 lines
747 B
Plaintext
32 lines
747 B
Plaintext
/**********************************************************
|
|
bird_egg.
|
|
***********************************************************/
|
|
|
|
extern Gfx RCP_egg1[];
|
|
extern Gfx RCP_egg2[];
|
|
extern Gfx RCP_egg3[];
|
|
extern Gfx RCP_egg4[];
|
|
extern Gfx RCP_egg5[];
|
|
extern Gfx RCP_egg6[];
|
|
extern Gfx RCP_egg7[];
|
|
extern Gfx RCP_egg8[];
|
|
|
|
|
|
Hierarchy RCP_bird_eggHierarchy[] = {
|
|
hmsScale(0.25f)
|
|
hmsBegin()
|
|
hmsSelect(8, ControlShapeAnime) /* for the eye animation */
|
|
hmsBegin()
|
|
hmsGfx(RM_SPRITE,RCP_egg1)
|
|
hmsGfx(RM_SPRITE,RCP_egg2)
|
|
hmsGfx(RM_SPRITE,RCP_egg3)
|
|
hmsGfx(RM_SPRITE,RCP_egg4)
|
|
hmsGfx(RM_SPRITE,RCP_egg5)
|
|
hmsGfx(RM_SPRITE,RCP_egg6)
|
|
hmsGfx(RM_SPRITE,RCP_egg7)
|
|
hmsGfx(RM_SPRITE,RCP_egg8)
|
|
hmsEnd()
|
|
hmsEnd()
|
|
hmsExit()
|
|
};
|