Bowen Zhu
Bowen Zhu
I left it blank. `git` is on my PATH. The issue only arises when I load up the plugin in conjunction with Obsidian; reloading the plugin allows it to work...
Yep - `EPERM`. Disabling and reenabling the plugin has proved temperamental recently too - sometimes, it takes two or three tries for it to load up successfully. The plugin has...
I've managed to open up the dev tools console, and it prints this whenever I render the graph: `Invalid bounds argument. Expected a bounds object with bounds.bottom < bounds.top, and...
Just run into a very similar issue. Code before GDFormat (runs fine): ```gdscript lines[1000] = Line.new().of_line_type(_lt.CALCULATION).with_desc("Write 10% of the previous line.").with_action( 2, func(current_index: int, current_list: Array): if current_list.size() > 1:...
FWIW this is accepted code: ```gdscript lines[1000] = ( Line . new() . of_line_type(_lt.CALCULATION) . with_desc("Write 10% of the previous line.") . with_action( 2, func(current_index: int, current_list: Array): if current_list.size()...
Ah - just found [this](https://github.com/godotengine/godot/issues/97204#issue-2537329851). Will just chalk this up to a Godot parsing error.