1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

GDScript: Lambda hot reloading

Co-authored-by: Adam Scott <ascott.ca@gmail.com>
This commit is contained in:
rune-scape
2023-09-13 00:40:48 -07:00
committed by Adam Scott
parent 30f2a6d611
commit 9fb8862d73
7 changed files with 309 additions and 3 deletions

View File

@@ -73,6 +73,7 @@ void GDScriptRPCCallable::call(const Variant **p_arguments, int p_argcount, Vari
}
GDScriptRPCCallable::GDScriptRPCCallable(Object *p_object, const StringName &p_method) {
ERR_FAIL_NULL(p_object);
object = p_object;
method = p_method;
h = method.hash();