Aaron Record
Aaron Record

See https://craftinginterpreters.com/compiling-expressions.html#parsers-for-tokens (Note) And https://craftinginterpreters.com/chunks-of-bytecode.html#challenges (Challenge 2) Not a big deal, but it's a little confusing. Should there be `OP_CONSTANT_8`, `OP_CONSTANT_16`, and `OP_CONSTANT_24` instructions? I know it probably depends largely...
Essentially turns EditorNode into `gui_base`. `theme_base` is redundant either way. From a quick inspection everything seems to working just fine as before ¯\\_(ツ)_/¯ I could be missing something, but I...
**Your Godot version:** 3.4.4 **Issue description:** 3.5 is still in beta as of the time writing this, so either this warning:  should not show up, or the tutorial links:...
I just installed version 1.1.4 and I copied and pasted this sample code:  And it's saying it can't find the reference for "title_choose_file". The other 2 r.string's...
I've had a lot of trouble with scrolling horizontally in the text editor (see the gif) 
I'm using a high dpi display (System scaling is 250% and resolution is 3200x1800). `Screen Scaling` set to 400% and `UI Elements Scaling` set to 100%:  ![Screenshot...
### Godot version v4.0.dev.custom_build [a851012b1] ### System information Windows 10 ### Issue description The following code: ```gdscript signal test(a: Node2D, b: Camera3D) func _ready(): test.connect(func(a, b): print(a + b)) test.emit(Vector2.UP,...
This is largely opinion based, however changing `serverInfo` to be snake_case be more in keeping with the GDScript official guidelines. (For example https://docs.godotengine.org/en/stable/classes/class_dictionary.html)
Previous: ```cpp set_rect_rotation(0.1); set_rect_scale(Vector2(1.642, 1)); set_rect_clip_content(true); set_h_size_flags(Control::SIZE_EXPAND_FILL); set_v_size_flags(9); set_size_flags_stretch_ratio(3); set_modulate(Color(0.219608, 1, 0, 1)); set_material(nullptr /* TODO resource here */); // MyControl Control *control = memnew(Control); control->set_margin(MARGIN_RIGHT, 40 * EDSCALE); control->set_margin(MARGIN_BOTTOM,...