43 lines
959 B
Plaintext
43 lines
959 B
Plaintext
/********************************************************************************
|
|
Ultra 64 MARIO Brothers
|
|
|
|
Fish hierarcky data module
|
|
|
|
1995.11.13
|
|
********************************************************************************/
|
|
|
|
extern Gfx RCP_f_body[];
|
|
extern Gfx RCP_f_fin[];
|
|
|
|
|
|
Hierarchy RCP_HmsEnemyfish_shadow[] = {
|
|
hmsShadow(50, 155, 1)
|
|
hmsBegin()
|
|
hmsScale(0.25f)
|
|
hmsBegin()
|
|
hmsJoint(RM_SURF,NULL,-16,0,0) /* chn1_1 */
|
|
hmsBegin()
|
|
hmsJoint(RM_SURF,RCP_f_body,0,0,0) /* f_body1 */
|
|
hmsBegin()
|
|
hmsJoint(RM_SURF,RCP_f_fin,97,0,0) /* f_tail2 */
|
|
hmsEnd()
|
|
hmsEnd()
|
|
hmsEnd()
|
|
hmsEnd()
|
|
hmsExit()
|
|
};
|
|
|
|
Hierarchy RCP_HmsEnemyfish[] = {
|
|
hmsScale(0.25f)
|
|
hmsBegin()
|
|
hmsJoint(RM_SURF,NULL,-16,0,0) /* chn1_1 */
|
|
hmsBegin()
|
|
hmsJoint(RM_SURF,RCP_f_body,0,0,0) /* f_body1 */
|
|
hmsBegin()
|
|
hmsJoint(RM_SURF,RCP_f_fin,97,0,0) /* f_tail2 */
|
|
hmsEnd()
|
|
hmsEnd()
|
|
hmsEnd()
|
|
hmsExit()
|
|
};
|