Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
MusicManager.c
Go to the documentation of this file.
1/*
2===========================================
3Do not modify, this script is generated
4===========================================
5*/
6
11
12class MusicManagerClass: GenericEntityClass
13{
14}
15
16class MusicManager: GenericEntity
17{
19 proto external void Play(string musicName);
21 proto external void Stop(string musicName);
23 proto external void MuteCategory(MusicCategory musicCategory, bool mute, bool stopNow);
25 proto external void RequestServerMuteCategory(MusicCategory musicCategory, bool mute);
27 proto external bool ServerIsCategoryMuted(MusicCategory musicCategory);
29 proto external void SetManagerSignals();
31 proto external int GetSignalIndex(string name);
33 proto external void SetSignalValue(int index, float value);
35 proto external void SetSignalValueStr(string signal, float value);
36}
37
SCR_DestructionSynchronizationComponentClass ScriptComponentClass int index
void Stop()
Stop tracking time in this menu, prepare for sending data.
bool Play()
Start playing the animation. Call 'Prepare' first if you need to change the setup of a component!
proto external void MuteCategory(MusicCategory musicCategory, bool mute, bool stopNow)
(Un)Mutes a category locally. Does not influence any categories muted from server side
proto external void RequestServerMuteCategory(MusicCategory musicCategory, bool mute)
Requests server (from any client) to mute a category on the server, this muted category is seperated ...
proto external void SetSignalValueStr(string signal, float value)
Set signal value by signal name.
proto external void SetSignalValue(int index, float value)
Set signal value by 'index'. Index is obtained by GetSignalIndex method.
proto external int GetSignalIndex(string name)
Get index for signal name. Return -1 if signal not found.
proto external void SetManagerSignals()
Sets default used MusicManager signals.
proto external bool ServerIsCategoryMuted(MusicCategory musicCategory)
Checks whether a given category is muted by the server (game master).
MusicCategory