Felix Hellman

Results 5 comments of Felix Hellman

I decided to write a proof of concept implementation of injecting instrumented code in gdscript separate from GUT. It seems to solve all the major "problems" however I still need...

Sweet! 1. It does return the same object that went in however it is mutated. So actually we don't need to assign node again, since this basically does nothing. It's...

You are correct, but you can circumvent this with a bit of a hack. Here is a minimal example ``` func _ready() var other : Other = Other.new() add_child(other) modify_impl(other)...

I have gotten the following to work in GUT so far. - Enable test coverage via a flag in the plugin_control. - Listen to signal for test end to log...

@bitwes @hootener I got stuck on some issue last time and kind of forgot about this, sorry. Turns out the other implementation was a bit hacky and naive which made...