Global refactor
This commit is contained in:
parent
3868af29e3
commit
0589ca4e23
180 changed files with 249 additions and 401 deletions
19
audio/audio_system/multiplayer_audio_3d.gd
Normal file
19
audio/audio_system/multiplayer_audio_3d.gd
Normal 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()
|
||||
1
audio/audio_system/multiplayer_audio_3d.gd.uid
Normal file
1
audio/audio_system/multiplayer_audio_3d.gd.uid
Normal file
|
|
@ -0,0 +1 @@
|
|||
uid://da0xv360va3b3
|
||||
Loading…
Add table
Add a link
Reference in a new issue