mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-11 17:51:04 +00:00
Sound API: Add fading sounds
This commit is contained in:
parent
f1d7a26b7c
commit
bd921a7916
14 changed files with 248 additions and 19 deletions
|
@ -153,9 +153,11 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||
PROTOCOL VERSION 31:
|
||||
Add tile overlay
|
||||
Stop sending TOSERVER_CLIENT_READY
|
||||
PROTOCOL VERSION 32:
|
||||
Add fading sounds
|
||||
*/
|
||||
|
||||
#define LATEST_PROTOCOL_VERSION 31
|
||||
#define LATEST_PROTOCOL_VERSION 32
|
||||
|
||||
// Server's supported network protocol range
|
||||
#define SERVER_PROTOCOL_VERSION_MIN 24
|
||||
|
@ -620,6 +622,13 @@ enum ToClientCommand
|
|||
v2f1000 speed
|
||||
*/
|
||||
|
||||
TOCLIENT_FADE_SOUND = 0x55,
|
||||
/*
|
||||
s32 sound_id
|
||||
float step
|
||||
float gain
|
||||
*/
|
||||
|
||||
TOCLIENT_SRP_BYTES_S_B = 0x60,
|
||||
/*
|
||||
Belonging to AUTH_MECHANISM_LEGACY_PASSWORD and AUTH_MECHANISM_SRP.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue