You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
447 B
8 lines
447 B
/// draw_character_to_surface()
|
|
if (surface_exists(oCharacter.surf)) {
|
|
surface_set_target(oCharacter.surf);
|
|
draw_clear_alpha(c_blue, 0);
|
|
draw_character(oCharacter.sprite_index, 32, 54, oCharacter.aspr1, oCharacter.asprx, oCharacter.aspry, oCharacter.aspr2, oCharacter.aspr2x, oCharacter.aspr2y, oCharacter.aspr2a, oCharacter.mirror, oCharacter.image_blend, oCharacter.image_alpha, oCharacter.armmsl, -1);
|
|
surface_reset_target();
|
|
}
|