WeaponSound

From Eternity Wiki
Revision as of 13:28, 12 September 2024 by Printz (talk | contribs) (Created page with "{{codepointer|description= Plays a sound from a weapon frame. |usage= '''A_WeaponSound'''(''sound'', ''full_volume'') |parameters= *''sound'': sound to play *''full_volume'': if 1, play this sound at full volume across the entire map. If 0 (default), play this sound normally. |notes= This is for player weapon frames only. Use PlaySound and related for things. |seealso= *PlaySound *PlaySoundEx}}")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Description

Plays a sound from a weapon frame.

Usage

A_WeaponSound(sound, full_volume)

Parameters

  • sound: sound to play
  • full_volume: if 1, play this sound at full volume across the entire map. If 0 (default), play this sound normally.

Examples

No examples given.

Notes

This is for player weapon frames only. Use PlaySound and related for things.

See also