12 lines
145 B
GDScript3
12 lines
145 B
GDScript3
|
extends Node
|
||
|
|
||
|
signal requested
|
||
|
|
||
|
var is_call_active: bool = false
|
||
|
var muted: bool = false
|
||
|
|
||
|
|
||
|
func request_call():
|
||
|
#emit_signal("requested")
|
||
|
pass
|