Audio system

This commit is contained in:
Rendo 2025-11-30 16:22:11 +05:00
commit de2736c701
38 changed files with 2538 additions and 78 deletions

View file

@ -0,0 +1,19 @@
extends AudioStreamPlayer3D
class_name MultiplayerAudio3D
func multiplayer_play():
play()
internal_play.rpc()
func multiplayer_stop():
stop()
internal_stop.rpc()
@rpc
func internal_play():
play()
@rpc
func internal_stop():
play()