Lyra shooting not working on android

I make a lyra build for android to test it on my phone, but for some reason when i try to shoot only pistol shoots, all other weapons does not work. I haven’t changed any part of the logic/code

i checked W_FireButton and i don’t see any mistakes or bugs

This is my IA_Weapon_Fire

I think the issue is somewhere inside GA_Weapon_Fire





The real issue here is input action , IA_WeaponFire is for pistol only , for rifle and shotgun you need to use IA_WeaponFire_auto which fires from automatic weapon, the issue doest end here you need to constantly inject input for than to work otherwise it will fire only once when clicked. i tried but it is crashing the app somehow

1 Like

@Parinsolanki I managed to find a workaround.
I added some logic inside the tick function of my fire button to check every frame if the player is shooting and eject the input action.

You can ignore the Check Input touch

You can set the isFiring variable to true or false by detecting if the button is pressed or not.