ThingSound: Difference between revisions

From Eternity Wiki
Jump to navigationJump to search
(Created page with "ACS built-in function. {{Action|description=Plays a sound from tagged things. |usage='''ThingSound'''(''int tid'', ''str sound'', ''int volume'') |parameters= *''tid'': [[tid]...")
 
No edit summary
Line 1: Line 1:
ACS built-in function.
{{ACSFunction|id=ACC internal
{{Action|description=Plays a sound from tagged things.
|description=Plays a sound from tagged things.
|usage='''ThingSound'''(''int tid'', ''str sound'', ''int volume'')
|usage='''ThingSound'''(''int tid'', ''str sound'', ''int volume'')
|parameters=
|parameters=
Line 8: Line 8:
|examples=
|examples=
This makes the activator play the <code>telept</code> sound at half volume.
This makes the activator play the <code>telept</code> sound at half volume.
  ThingSound(0, "telept", 64);
  ThingSound(0, "telept", 64);}}
|seealso=
*[[ACS built-in functions]]}}
[[Category:ACS]]

Revision as of 10:42, 21 November 2020

Description

This is an ACS built-in function.

Plays a sound from tagged things.

Usage

ThingSound(int tid, str sound, int volume)

Parameters

  • tid: tid of things to play the sound.
  • sound: name of sound to play.
  • volume: volume of sound to play. 127 is full volume, 0 is quiet.

Return value

Examples

This makes the activator play the telept sound at half volume.

ThingSound(0, "telept", 64);

Notes

No particular notes.

This function's identification in zspecial.acs is: ACC internal.

See also