12 lines
174 B
GDScript3
12 lines
174 B
GDScript3
|
@tool
|
||
|
extends Node
|
||
|
|
||
|
func _ready():
|
||
|
process_mode = PROCESS_MODE_ALWAYS
|
||
|
|
||
|
func _process(delta):
|
||
|
FmodServer.update()
|
||
|
|
||
|
func _notification(what):
|
||
|
FmodServer.notification(what)
|