Aaron Record

Results 12 issues of Aaron Record

![image](https://user-images.githubusercontent.com/50304111/149680183-e8b85ba4-3b36-44ed-9d42-cade36d816a2.png)

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...

enhancement
topic:editor

**Your Godot version:** 3.4.4 **Issue description:** 3.5 is still in beta as of the time writing this, so either this warning: ![image](https://user-images.githubusercontent.com/50304111/167518201-aa7071bb-bce2-411b-a39d-3e72dde86666.png) should not show up, or the tutorial links:...

enhancement
topic:website

I just installed version 1.1.4 and I copied and pasted this sample code: ![Screenshot 2020-10-18 224902](https://user-images.githubusercontent.com/50304111/96402852-22b43700-1194-11eb-8aa9-4ac9fa9269b3.png) 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) ![20200711_091718](https://user-images.githubusercontent.com/50304111/87227330-8807b900-c357-11ea-9bfd-451a6dde77d7.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 2020-11-27 205726](https://user-images.githubusercontent.com/50304111/100493379-8ca8f000-30f3-11eb-8c68-07ba214e89a6.png) ![Screenshot...

bug
ui

### 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,...

discussion
topic:gdscript

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,...