não consigo colocar o sprite do player atacando
Enviado: Sáb Abr 13, 2024 1:57 pm
to tentando fazer meu primeiro projeto de jogo, mas aconteceu um problema. todas as animações funcionam perfeitamente, menos a que muda o sprite do personagem ao clicar "Q" pra atacar
meu codigo do tiro é:
#region Tiro
var flipped =direction;
var gun_x = (x+4)*(flipped)
var _xx = x + lengthdir_x(25,image_angle)
var y_offset = lengthdir_y(-20,image_angle)
if key_shoot and global.bullets > 0
{
with (instance_create_layer(_xx,y+10,"Shoot",obj_shoot))
{
global.bullets--;
//VELOCIDADE DO TIRO
speed = 20;
//DIREÇÃO
direction = -90 + 90 * other.image_xscale;
//ANGULO
image_angle = direction;
}
espero que alguem possa me ajudar!
meu codigo do tiro é:
#region Tiro
var flipped =direction;
var gun_x = (x+4)*(flipped)
var _xx = x + lengthdir_x(25,image_angle)
var y_offset = lengthdir_y(-20,image_angle)
if key_shoot and global.bullets > 0
{
with (instance_create_layer(_xx,y+10,"Shoot",obj_shoot))
{
global.bullets--;
//VELOCIDADE DO TIRO
speed = 20;
//DIREÇÃO
direction = -90 + 90 * other.image_xscale;
//ANGULO
image_angle = direction;
}
espero que alguem possa me ajudar!