Answers for "how to call a function in godot with a signal"

1

custom signal godot

extends Node2D


signal my_signal


func _ready():
    emit_signal("my_signal")
Posted by: Guest on August-04-2020
0

hwo to fire custom signal in godot

signal is_a_signal
if isasignal:
	emit_signal(is_a_signal)
Posted by: Guest on August-22-2020

Browse Popular Code Answers by Language