putgeminmouth

Results 1 comments of putgeminmouth

I've run into a similar situation with lambda captures that creates unavoidable errors: ```gdscript func _ready(): var x = Object.new() var f = func(): print(is_instance_valid(x)) pass x.free() f.call() ``` It...