21 lines
513 B
Plaintext
21 lines
513 B
Plaintext
|
|
extern Gfx gfx_polystar[];
|
|
extern Gfx gfx_polystar_eye[];
|
|
|
|
|
|
/* ===============================================================================
|
|
: Hierarchy map data of PolygonStar.
|
|
================================================================================== */
|
|
Hierarchy RCP_HmsPolygonStar[] = {
|
|
hmsShadow(100, 155, 1)
|
|
hmsBegin()
|
|
hmsScale(0.25f)
|
|
hmsBegin()
|
|
hmsGfx(RM_SURF , gfx_polystar)
|
|
hmsGfx(RM_SPRITE, gfx_polystar_eye)
|
|
hmsEnd()
|
|
hmsEnd()
|
|
hmsExit()
|
|
};
|
|
|