Is there a way to add sounds to a Idle Weapon Pickup ?
No, I'm not talking about When Pickup sounds.
Idle Weapon Sounds
Moderators: GZDoom Developers, Raze Developers
Forum rules
Before asking on how to use a ZDoom feature, read the ZDoom wiki first. If you still don't understand how to use a feature, then ask here.
Before asking on how to use a ZDoom feature, read the ZDoom wiki first. If you still don't understand how to use a feature, then ask here.
-
- Posts: 4929
- Joined: Sun Nov 14, 2010 12:59 am
- Graphics Processor: ATI/AMD (Modern GZDoom)
Re: Idle Weapon Sounds
If you mean like the chainsaw, then there is [wiki=Weapon_properties#Weapon.ReadySound]Weapon.ReadySound[/wiki] property. If what you mean, however, a sound the weapon's pickup makes, then you can do this:
Code: Select all
Spawn:
CSAW A -1 NoDelay A_StartSound("weapons/sawidle", CHAN_BODY, CHANF_LOOPING);
Stop;