Looks like you're not logged in

Login or Register to continue

Lesson Q&A

Use this space for questions related to what you're learning. For any other type of support (website, learning platform, payments, etc...) please get in touch using the contact form.

  • Major Improvement over Previous VersionNoneApplicableGamesI really like how you've implemented the Godot Tours here. Having things explained to me in the editor drastically improves the flow of the learning process since I don't have to keep switching windows after each step. Ive been going through the Godot 3 version of learn to code with zero and I'm really hoping you're going to implement a version of this plug-in for that. It makes the learning process so much more tactile and so far I haven't experienced any issues. 3 8 Feb. 05, 2024
  • Thank you for the tour - Continue button issuestheSchroeThat tour was nice. Only thing I noticed is that when clicking on "Continue to next tour" for some reasons, it restarted the current tour again. I used the version of Godot that came within the ZIP-File. Great work on the tour you guys! 2 2 Feb. 04, 2024
  • plug.gdrewarding-chimpanzeeI was clicking around, as you should and stumbled onto the 1000 lines of magic that make this possible. Keep up the good work! 1 0 Sep. 11, 2024
  • Notes on Godot TourHam##### Godot has four essential concepts on which your games rely: - Scenes - Nodes - Scripts - Signals ## Scenes **Scenes** are reusable templates that represent anything in your game. **Examples:** 1. A main menu scene. 2. A level design scene for a specific area in your game. 3. A reusable enemy scene with predefined behaviours. ## Nodes **Nodes** are the building blocks of scenes. They are the elements you see in the viewport. **Examples:** 1. `Sprite2D` node for displaying images. 2. `CharacterBody2D` node for player or enemy movement. 3. `TileMap` node for creating grid-based levels. ## Scripts **Scripts** are text files that give instructions to the computer. You can attach them to nodes to control their behaviour. **Examples:** 1. A script to handle player movement and input. ```javascript extends CharacterBody2D @export var speed := 460.0 func _physics_process(_delta: float) -> void: var input_vector := Vector2( Input.get_action_strength("right") - Input.get_action_strength("left"), Input.get_action_strength("down") - Input.get_action_strength("up")) velocity = input_vector * speed move_and_slide() ``` 3. A script for controlling enemy AI behaviour. ```javascript extends CharacterBody2D @onready var player = $/path/to/player func _physics_process(delta): if player: direction = (player.position - position).normalized() ``` 5. A script that manages game progression and level transitions. ```javascript extends Node2D @onready var player = $/path/to/player func _ready(): if player: player.connect("died", Callable(self, "_on_Player_died")) func _on_Player_died() -> void: get_tree().change_scene_to_file("res://game_over.tscn") ``` ## Signals **Signals** are events that nodes emit to report what’s happening in the game. You can connect signals to scripts to run code when an event occurs. **Examples:** 1. `body_entered` signal from a `CollisionShape2D` when a player touches a hazard. 2. `button_pressed` signal from a `Button` node in the user interface. 3. `timeout` signal from a `Timer` node when a countdown is complete. 1 0 Aug. 27, 2024
  • LOVE the Godot Tours!Kuksiit's REALLY good! and the best part is that it's all inside the game engine, which makes you already feel familiar with the interface as you've already clicked it all before. 1 0 Aug. 23, 2024
  • Bridge Terrain issue with Godot Tour using v4.3.stable.official [77dcf97d8]WhiteFinchI can't continue the tour to add bridges (stuck on 5/15) because it won't let me select the bridge terrain. There is also a warning on the Bridges scene. "The tilemap node is deprecated as it is superseded by the use of multiple TileMapLayer nodes. To convert a TileMap to a set of TileMapLayer nodes, open the TileMap bottom panel with this node selected, click the toolbox icon in the top-right corner and choose Extract TileMap layers as individual TileMapLayer nodes" -- If I do that, selecting the bridge terrain also doesn't work. 5 0 Aug. 18, 2024
  • How can I move a Tilemap?raincloudAfter arranging the rooms, bridges, and invisible walls, I decided that I wanted to move everything over to line up more cleanly with the 2d viewport. In the scene list, I selected Bridges, InvisibleWalls, Player, RoomA, RoomB, and RoomC, and tried to use the move tool (with grid snap enabled) to adjust the nodes' positions. The Player and rooms all moved as expected, but the two tilemaps both stayed in the same place. When I tried moving them individually with the move tool, they still wouldn't move. It seemed my only options were to either manually edit the position of the Bridges and InvisibleWalls nodes in the Inspector, or redraw them using the TileMap tab. Is there an easier way to move TileMap objects? 1 0 Aug. 06, 2024
  • UXy_muradovAfter finishing first 30/30 - I wanted to go out and after that I opened the tour again - it started all over again - that is not cool. Also when I made those bridges I couldn't walk them - but tour told me that is ok, go next Fix please it And I can't fix my mistakes with bridges by myself - tour is telling me go next, if I quit - I will lost my 3-4 mini tours - like 30/30 and 21/21 and 15/15 etc 1 0 Aug. 04, 2024
  • Error in tourChefGorgeousEagle100When I try to hit the play button per the instructions in the tour, I'm getting an error message. "Parser error: could not resolve class pickup" 1 0 Aug. 01, 2024
  • Showing Hidden filesUltraJabroniI just wanted to let you guys know when troubleshooting and showing hidden files on a Mac the command is CMD + SHIFT + . 1 0 Jul. 05, 2024
  • Comgrats for the new course, really good!BelinI found a little thing, in the beginning of the tour when it outline the viewport it says "outlined in blue", but it's actually violet 1 0 Jun. 25, 2024
  • Download the game engine later?grateful-shrewFor Windows (and Linux) since the tutorial comes with a copy of Godot, am I correct that I will not need to download a separate copy later of the engine? 1 0 Jun. 14, 2024
  • In the M2 course: Why when I move the background in the viewport ...?HazlarI can't move this background decor in space and even if I move the 3 *abc* rooms simultaneously, when I launch the game the decor is placed in the background. What is the explanation please? 1 0 Jun. 03, 2024
  • 5th tour - updating the health barunhappy-hawkI am on the 2nd step of this tour, but when I select the Player node I am not able to move on to the next step. Can you help? 9 0 Jun. 01, 2024
  • Contradictory information on Godot version to get on macOSbronze-parrot> On MacOS, you currently need to [download Godot 4.2.2](https://godotengine.org/download/archive/4.2-stable/) separately > > [IMPORTANT: On macOS, download and use Godot 4.2.0 (exactly this version)!](https://school.gdquest.com/courses/learn_2d_gamedev_godot_4/get_to_know_godot/godot_tours#) So which one is it? 1 0 May. 29, 2024
  • 102.e Chest is not showing up directly in start scene after saveSeppo007Hi there, at first I want to say how thrilled I am with the godot plugin you provided. It works like a charm and is really aesthetic! I just noticed something that shouldn't work out as declared in the "Save the scene" textbox. You are stating that saving the room_a scene "... will save your change and update the Start scene". At least when I added the chest to room_a, saved via CTRL+S and opened the start scene in the navigation bar at the top of the screen I didn't see the chest there. After closing the start scene and reopen it again it was shown then. So i wonder if this has to do something with the settings of the provided Godot instance in the zip file or if it changed over the versions (of this tutorial or maybe of godot itself)? I'm currently using version 0.4.1 of the tutorial and therefor Godot 4.2.2 stable official, which is provided in the zip archive. 5 0 May. 19, 2024
  • Velocity = velocityslim-lemurIn the first lesson, at step 18/30, when reviewing the player script, on line 49, it says: velocity = velocity, and I was wondering why. This early on in the lessons, I think the shown code is demonstrating what code (in general) could look like, so no big deal. But maybe there's a godot-centric trick where that line might be advantageous. E.g. how is_on_floor() updates after move_and_slide() so there's things you can do with that. 1 0 May. 15, 2024
  • contoller support issueTobiasWwhen trying the game demo in step 1 of the interactive tour 101, I've noticed that the gamepad sticks move and aim the player and the buttons fire correctly however the sprite doesn't update with direction you move in and if you use the dpad to move the sprite changes direction correctly but doesn't move at all, is this a godot bug or somthing to do with the way the demo has been coded, using the arrow keys and mouse the player moves and fires as expected, I was using a Dualshock 5 via bluetooth 1 0 May. 14, 2024
  • Bug with the guided tourjuicyLuckily I understand enough to know where the issue was, but I imagine a complete beginner would struggle a bit. In the guided tour when adding the UI health bar, for some reason it had no function attached to the damage taken function, it simply had pass written. Which meant that the tour was telling me I should be losing hp, but visually nothing updated. Obviously I know why it wasn't updating, the function was empty, but I imagine someone taking the tour would not have noticed and be frustrated that the guide is checking green and telling you one thing but the actual behavior is different. Other than that I really like the guided tour a lot better than the previous version with just videos. Nothing wrong with the videos, but the constant switching between videos and sitting in the program made context switching harder. In the new version being guided within godot meant I could breeze through the same info at my own pace and usually a lot faster than the video could. Good job, really like this approach. 1 0 May. 07, 2024
  • Very Excited! FIVE STARS!Talan15Wow, this looks amazing! I just finished the learn-to-code course for Godot 3 and am redoing it to become more familiar with coding. Then I came across this new update, and after doing the first lesson, I was very impressed! The UI is so clean, and the interactive tours are stellar! I am looking forward to refining my skills with your FIVE STAR courses. If there is anywhere I can leave a helpful review, let me know. 1 0 Apr. 27, 2024
  • zip file extraction errorcomplicated-queleaWhen extracting I get an error message saying the "Path too long". How do I fix this? 5 0 Apr. 24, 2024
  • Snapping Grid and Bridge Terrain don't line up.CrazyGruntTrying to figure out why the snapping grid and bridge terrain painter don't line up. The bridges end up being 'off center' from the main grid somewhat and don't line up with my rooms. 1 0 Apr. 24, 2024
  • Godot Install & SetupHasimirI'm on Linux (PopOS_22.04) I downloaded the Tour zip, unpacked it, run Godot and... the Tour projects are not listed. In the Godot 3 lessons there were instructions about what happens when you first run Godot and how to load projects in the manager. I see these instructions are missing here, and don't seem to be part of subsequent Ms or Ls. If the Tuor project is supposed to be already listed, it's a bug. Else if (😜) it is not to be already listed, the instructions to do it are missing. 7 0 Apr. 17, 2024
  • Windows: Extracting Files, Name Too Longunfolded-gaurWhen I attempt to extract files from the zip the name is too long and windows throws up an error message and doesn't end up extracting some of the files. This is resolved easily by changing the name of the zip folder before extracting. But, in the future, you might want to make the name of the zip folder shorter so that this error doesn't come up for future students. 2 0 Apr. 16, 2024
  • Restart scene Fey ProjectThis is an interesting learning medium for me for the first time because I usually only watch videos. I've just started the 101 course, when I've gone through 2 chapters, I skip the tutorial and take a short break, but when I want to start again, why do I have to start from the beginning, are there any tips? 1 0 Apr. 13, 2024
  • Zip file for windows is emptyvigorous-gnudownloaded and unzipped on 4/11/24. file is empty. attempted 2x same result 3 0 Apr. 11, 2024
  • No Filespikminfan71Hello, When I download the files to my windows pc, It doesnt show any files inside the Downloaded Zip files. I already tried a couple of times to download it and everytime I do It's empty, Would love some Help. 7 0 Apr. 09, 2024
  • How do I find GlobalResources or How to need to create this one??CelsI just want to know this where the GlobalResources made of? func _ready() -> void: super._ready() var randomized_weapons: Array = GlobalResources.weapons.duplicate() randomized_weapons.shuffle() _weapon_scene = randomized_weapons.pop_back() _sprite.texture = ICONS_MAP[_weapon_scene] _audio.stream = SOUNDS_MAP[_weapon_scene] body_entered.connect(_pickup) 5 0 Apr. 06, 2024
  • My bridge glitched in tour 102.eA_Room_With_A_MooseI finished tours 102.a - 102.e in one session (great work on these, by the way), so the editor never closed during this time. Everything worked correctly through tour 102.d as I played the scene to test the health bar decrementing properly upon taking damage from the enemy sprites; upon testing the scene at the conclusion of tour 102.e, however, I was unable to cross the bridge between rooms a and b. My projectiles won't pass through whatever is acting as an invisible barrier here, either. The location on the bridge that I cannot pass through is located directly across from the health bar in the editor viewport. I recorded two short videos demonstrating the problem I encountered, if it would helpful to you in analyzing what caused this. Thanks in advance. 4 0 Apr. 04, 2024
  • How to make this Godot tutorials with this plug in enable? CelsI want to make this one for may future career. Is this one not easy to make? Can one individual create this Godot for educational purposes? 1 0 Apr. 02, 2024
  • Glossary, Scenes vs Nodessturdy-mongooseFirst of all, congrats on the tour, this is really well done ! This is just the beginning for me but the concepts of nodes & scenes are not yet entirely clear. I have the feeling that sometimes, some "things" are called both a scene and a node during the tour (like the start scene ?) **I've noticed that "scene" is missing from the glossary** ! My understanding is that a "scene" is like a "prefab" in Unity (so a template that does not per se exists in the game), while "nodes" are objects, and can be "stand-alone" (not created from a scene), or an instance from a scene (including an instance from a scene that has been further customized in the editor, and then is not "synced" anymore with the scene that was used to instanciate it in the first place). I think that would be useful to include a definition of a scene in the glossary, and maybe some kind of "formal" definition or statement of what are scenes vs nodes (especially due to the fact that those words seem to have a meaning quite different from their "real life" meaning). 1 0 Mar. 27, 2024
  • Updating course filesAleF2050How can i safely update the course files whenever a new version comes out? I don't want to risk to overwrite my progress i've done. I'm on 0.2.2 and 0.3.1 just came out so i'm a bit confused. 1 0 Mar. 26, 2024
  • Feedback on the Interactive Toursmotherly-codHi, First of all, I love the idea behind the Interactive Tours! It's really a pleasure to learn this way, great work there. I though of creating a single thread where I could share all my feedback about the tour so starting with the "101: The Godot Editor": out of all the 30 steps, I think most of them were good or great but I did not like 13/30 one in particular ([rbY0YTR.png (815×440) (imgur.com)](https://i.imgur.com/rbY0YTR.png)). I guess it might be confusing at first even though there is the 14/30 step which explains it pretty well. For a new user, seeing you only mentioned four nodes in a screen where there is a long list of items in the scene dock it might be confusing... making it frustrating as well by stating "we can see that (...)" - no, anybody who is not yet familiar what exactly is a node, and what is a nested scene, won't see that. This step needs some polishing, at least it's worth to change the "we can see that" part to "you might wonder why we only mentioned four nodes on the dock scene list, I got you covered on the next step", or similar :) Overall, great module and as soon as I will finish the next one, I will provide some more feedback. I will use my 5 min. breaks between learning sessions just for that. Cheers! 11 0 Mar. 23, 2024
  • Mac M1 Sonoma 14.4 CrashRyanI can't open the tour because of this crash. The report is below. Godot: v4.2.1.stable.official [b09f793f5] ------------------------------------- Translated Report (Full Report Below) ------------------------------------- Process: Godot [22445] Path: /Applications/Godot.app/Contents/MacOS/Godot Identifier: org.godotengine.godot Version: 4.2.1 (4.2.1) Code Type: ARM-64 (Native) Parent Process: launchd [1] User ID: 501 Date/Time: 2024-03-20 14:34:41.0473 -0400 OS Version: macOS 14.4 (23E214) Report Version: 12 Anonymous UUID: DE15C41D-12A8-040E-DE63-7A4A35EA5C5C Sleep/Wake UUID: 994BDA77-191E-400C-9507-64180CC547E0 Time Awake Since Boot: 180000 seconds Time Since Wake: 17989 seconds System Integrity Protection: enabled Crashed Thread: 0 Dispatch queue: com.apple.main-thread Exception Type: EXC_BAD_ACCESS (SIGABRT) Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000010 Exception Codes: 0x0000000000000001, 0x0000000000000010 Termination Reason: Namespace SIGNAL, Code 6 Abort trap: 6 Terminating Process: Godot [22445] VM Region Info: 0x10 is not in any region. Bytes before following region: 4369219568 REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL UNUSED SPACE AT START ---> __TEXT 1046d0000-10a1a4000 [ 90.8M] r-x/r-x SM=COW /Applications/Godot.app/Contents/MacOS/Godot Application Specific Information: abort() called Thread 0 Crashed:: Dispatch queue: com.apple.main-thread 0 libsystem_kernel.dylib 0x19a4aea60 __pthread_kill + 8 1 libsystem_pthread.dylib 0x19a4e6c20 pthread_kill + 288 2 libsystem_c.dylib 0x19a3f3a20 abort + 180 3 Godot 0x104e090ec 0x1046d0000 + 7573740 4 libsystem_platform.dylib 0x19a517584 _sigtramp + 56 5 libGLProgrammability.dylib 0x1f0bfd860 glpLLVMCGSwitchStatement + 176 6 libGLProgrammability.dylib 0x1f0bf40c0 glpLLVMCGNode + 588 7 libGLProgrammability.dylib 0x1f0bfd444 glpLLVMCGBlock + 444 8 libGLProgrammability.dylib 0x1f0bf4090 glpLLVMCGNode + 540 9 libGLProgrammability.dylib 0x1f0bfd444 glpLLVMCGBlock + 444 10 libGLProgrammability.dylib 0x1f0bf4090 glpLLVMCGNode + 540 11 libGLProgrammability.dylib 0x1f0c0ff84 glpLLVMCGIfStatementShortCircuit + 208 12 libGLProgrammability.dylib 0x1f0bf40a0 glpLLVMCGNode + 556 13 libGLProgrammability.dylib 0x1f0bfd444 glpLLVMCGBlock + 444 14 libGLProgrammability.dylib 0x1f0bf4090 glpLLVMCGNode + 540 15 libGLProgrammability.dylib 0x1f0bfd050 glpLLVMCGFunctionDefinition + 2664 16 libGLProgrammability.dylib 0x1f0bf2d18 glpLLVMCGTopLevel + 1480 17 libGLProgrammability.dylib 0x1f0c1a738 glpLinkProgram + 9992 18 libGLProgrammability.dylib 0x1f0c34614 ShLink + 208 19 GLEngine 0x1f0dda870 gleLinkProgram + 1128 20 GLEngine 0x1f0d53bbc glLinkProgramARB_Exec + 180 21 Godot 0x105a4f9c0 0x1046d0000 + 20445632 22 Godot 0x105a52710 0x1046d0000 + 20457232 23 Godot 0x105a90090 0x1046d0000 + 20709520 24 Godot 0x105a930c4 0x1046d0000 + 20721860 25 Godot 0x10795c7d4 0x1046d0000 + 53004244 26 Godot 0x104e58be4 0x1046d0000 + 7900132 27 Godot 0x104e0553c 0x1046d0000 + 7558460 28 Godot 0x104e36a1c 0x1046d0000 + 7760412 29 dyld 0x19a15e0e0 start + 2360 Thread 1: 0 libsystem_pthread.dylib 0x19a4e1d20 start_wqthread + 0 Thread 2: 0 libsystem_pthread.dylib 0x19a4e1d20 start_wqthread + 0 Thread 3: 0 libsystem_kernel.dylib 0x19a4a99ec __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x19a4e755c _pthread_cond_wait + 1228 2 libc++.1.dylib 0x19a40cb14 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28 3 Godot 0x107fd0eec _IP_ResolverPrivate::_thread_function(void*) + 152 4 Godot 0x107edb37c 0x1046d0000 + 58766204 5 Godot 0x107edb6e4 0x1046d0000 + 58767076 6 libsystem_pthread.dylib 0x19a4e6f94 _pthread_start + 136 7 libsystem_pthread.dylib 0x19a4e1d34 thread_start + 8 Thread 4: 0 libsystem_kernel.dylib 0x19a4a99ec __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x19a4e755c _pthread_cond_wait + 1228 2 libc++.1.dylib 0x19a40cb14 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28 3 Godot 0x1084000dc 0x1046d0000 + 64159964 4 Godot 0x107edb37c 0x1046d0000 + 58766204 5 Godot 0x107edb6e4 0x1046d0000 + 58767076 6 libsystem_pthread.dylib 0x19a4e6f94 _pthread_start + 136 7 libsystem_pthread.dylib 0x19a4e1d34 thread_start + 8 Thread 5: 0 libsystem_kernel.dylib 0x19a4a99ec __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x19a4e755c _pthread_cond_wait + 1228 2 libc++.1.dylib 0x19a40cb14 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28 3 Godot 0x1084000dc 0x1046d0000 + 64159964 4 Godot 0x107edb37c 0x1046d0000 + 58766204 5 Godot 0x107edb6e4 0x1046d0000 + 58767076 6 libsystem_pthread.dylib 0x19a4e6f94 _pthread_start + 136 7 libsystem_pthread.dylib 0x19a4e1d34 thread_start + 8 Thread 6: 0 libsystem_kernel.dylib 0x19a4a99ec __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x19a4e755c _pthread_cond_wait + 1228 2 libc++.1.dylib 0x19a40cb14 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28 3 Godot 0x1084000dc 0x1046d0000 + 64159964 4 Godot 0x107edb37c 0x1046d0000 + 58766204 5 Godot 0x107edb6e4 0x1046d0000 + 58767076 6 libsystem_pthread.dylib 0x19a4e6f94 _pthread_start + 136 7 libsystem_pthread.dylib 0x19a4e1d34 thread_start + 8 Thread 7: 0 libsystem_kernel.dylib 0x19a4a99ec __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x19a4e755c _pthread_cond_wait + 1228 2 libc++.1.dylib 0x19a40cb14 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28 3 Godot 0x1084000dc 0x1046d0000 + 64159964 4 Godot 0x107edb37c 0x1046d0000 + 58766204 5 Godot 0x107edb6e4 0x1046d0000 + 58767076 6 libsystem_pthread.dylib 0x19a4e6f94 _pthread_start + 136 7 libsystem_pthread.dylib 0x19a4e1d34 thread_start + 8 Thread 8: 0 libsystem_kernel.dylib 0x19a4a99ec __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x19a4e755c _pthread_cond_wait + 1228 2 libc++.1.dylib 0x19a40cb14 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28 3 Godot 0x1084000dc 0x1046d0000 + 64159964 4 Godot 0x107edb37c 0x1046d0000 + 58766204 5 Godot 0x107edb6e4 0x1046d0000 + 58767076 6 libsystem_pthread.dylib 0x19a4e6f94 _pthread_start + 136 7 libsystem_pthread.dylib 0x19a4e1d34 thread_start + 8 Thread 9: 0 libsystem_kernel.dylib 0x19a4a99ec __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x19a4e755c _pthread_cond_wait + 1228 2 libc++.1.dylib 0x19a40cb14 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28 3 Godot 0x1084000dc 0x1046d0000 + 64159964 4 Godot 0x107edb37c 0x1046d0000 + 58766204 5 Godot 0x107edb6e4 0x1046d0000 + 58767076 6 libsystem_pthread.dylib 0x19a4e6f94 _pthread_start + 136 7 libsystem_pthread.dylib 0x19a4e1d34 thread_start + 8 Thread 10: 0 libsystem_kernel.dylib 0x19a4a99ec __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x19a4e755c _pthread_cond_wait + 1228 2 libc++.1.dylib 0x19a40cb14 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28 3 Godot 0x1084000dc 0x1046d0000 + 64159964 4 Godot 0x107edb37c 0x1046d0000 + 58766204 5 Godot 0x107edb6e4 0x1046d0000 + 58767076 6 libsystem_pthread.dylib 0x19a4e6f94 _pthread_start + 136 7 libsystem_pthread.dylib 0x19a4e1d34 thread_start + 8 Thread 11: 0 libsystem_kernel.dylib 0x19a4a99ec __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x19a4e755c _pthread_cond_wait + 1228 2 libc++.1.dylib 0x19a40cb14 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28 3 Godot 0x1084000dc 0x1046d0000 + 64159964 4 Godot 0x107edb37c 0x1046d0000 + 58766204 5 Godot 0x107edb6e4 0x1046d0000 + 58767076 6 libsystem_pthread.dylib 0x19a4e6f94 _pthread_start + 136 7 libsystem_pthread.dylib 0x19a4e1d34 thread_start + 8 Thread 12:: com.apple.NSEventThread 0 libsystem_kernel.dylib 0x19a4a61f4 mach_msg2_trap + 8 1 libsystem_kernel.dylib 0x19a4b8b24 mach_msg2_internal + 80 2 libsystem_kernel.dylib 0x19a4aee34 mach_msg_overwrite + 476 3 libsystem_kernel.dylib 0x19a4a6578 mach_msg + 24 4 CoreFoundation 0x19a5c6058 __CFRunLoopServiceMachPort + 160 5 CoreFoundation 0x19a5c491c __CFRunLoopRun + 1208 6 CoreFoundation 0x19a5c3e0c CFRunLoopRunSpecific + 608 7 AppKit 0x19df45cb4 _NSEventThread + 144 8 libsystem_pthread.dylib 0x19a4e6f94 _pthread_start + 136 9 libsystem_pthread.dylib 0x19a4e1d34 thread_start + 8 Thread 13:: caulk.messenger.shared:17 0 libsystem_kernel.dylib 0x19a4a6170 semaphore_wait_trap + 8 1 caulk 0x1a4a57624 caulk::semaphore::timed_wait(double) + 212 2 caulk 0x1a4a574d8 caulk::concurrent::details::worker_thread::run() + 36 3 caulk 0x1a4a571d8 void *caulk::thread_proxy<std::__1::tuple<caulk:*🧵*:attributes, void (caulk::concurrent::details::worker_thread::*)(), std::__1::tuple<caulk::concurrent::details::worker_thread*>>>(void*) + 96 4 libsystem_pthread.dylib 0x19a4e6f94 _pthread_start + 136 5 libsystem_pthread.dylib 0x19a4e1d34 thread_start + 8 Thread 14:: caulk.messenger.shared:high 0 libsystem_kernel.dylib 0x19a4a6170 semaphore_wait_trap + 8 1 caulk 0x1a4a57624 caulk::semaphore::timed_wait(double) + 212 2 caulk 0x1a4a574d8 caulk::concurrent::details::worker_thread::run() + 36 3 caulk 0x1a4a571d8 void *caulk::thread_proxy<std::__1::tuple<caulk:*🧵*:attributes, void (caulk::concurrent::details::worker_thread::*)(), std::__1::tuple<caulk::concurrent::details::worker_thread*>>>(void*) + 96 4 libsystem_pthread.dylib 0x19a4e6f94 _pthread_start + 136 5 libsystem_pthread.dylib 0x19a4e1d34 thread_start + 8 Thread 15:: caulk::deferred_logger 0 libsystem_kernel.dylib 0x19a4a6170 semaphore_wait_trap + 8 1 caulk 0x1a4a57624 caulk::semaphore::timed_wait(double) + 212 2 caulk 0x1a4a574d8 caulk::concurrent::details::worker_thread::run() + 36 3 caulk 0x1a4a571d8 void *caulk::thread_proxy<std::__1::tuple<caulk:*🧵*:attributes, void (caulk::concurrent::details::worker_thread::*)(), std::__1::tuple<caulk::concurrent::details::worker_thread*>>>(void*) + 96 4 libsystem_pthread.dylib 0x19a4e6f94 _pthread_start + 136 5 libsystem_pthread.dylib 0x19a4e1d34 thread_start + 8 Thread 16:: com.apple.audio.IOThread.client 0 libsystem_kernel.dylib 0x19a4a61f4 mach_msg2_trap + 8 1 libsystem_kernel.dylib 0x19a4b8b24 mach_msg2_internal + 80 2 libsystem_kernel.dylib 0x19a4aee34 mach_msg_overwrite + 476 3 libsystem_kernel.dylib 0x19a4a6578 mach_msg + 24 4 CoreAudio 0x19ce7f898 HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int) + 96 5 CoreAudio 0x19cd53b44 HALC_ProxyIOContext::IOWorkLoop() + 4272 6 CoreAudio 0x19cd5235c invocation function for block in HALC_ProxyIOContext::HALC_ProxyIOContext(unsigned int, unsigned int) + 108 7 CoreAudio 0x19ced84e4 HALC_IOThread::Entry(void*) + 88 8 libsystem_pthread.dylib 0x19a4e6f94 _pthread_start + 136 9 libsystem_pthread.dylib 0x19a4e1d34 thread_start + 8 Thread 17: 0 libsystem_kernel.dylib 0x19a4a99ec __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x19a4e755c _pthread_cond_wait + 1228 2 libc++.1.dylib 0x19a40cb14 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28 3 Godot 0x1056cff10 0x1046d0000 + 16776976 4 Godot 0x1056cfd9c 0x1046d0000 + 16776604 5 Godot 0x1056cfd24 0x1046d0000 + 16776484 6 libsystem_pthread.dylib 0x19a4e6f94 _pthread_start + 136 7 libsystem_pthread.dylib 0x19a4e1d34 thread_start + 8 Thread 18: 0 libsystem_kernel.dylib 0x19a4a97e8 __semwait_signal + 8 1 libsystem_c.dylib 0x19a38a274 nanosleep + 220 2 Godot 0x105988988 0x1046d0000 + 19630472 3 Godot 0x105adafe4 0x1046d0000 + 21016548 4 Godot 0x107edb37c 0x1046d0000 + 58766204 5 Godot 0x107edb6e4 0x1046d0000 + 58767076 6 libsystem_pthread.dylib 0x19a4e6f94 _pthread_start + 136 7 libsystem_pthread.dylib 0x19a4e1d34 thread_start + 8 Thread 19: 0 libsystem_kernel.dylib 0x19a4a97e8 __semwait_signal + 8 1 libsystem_c.dylib 0x19a38a274 nanosleep + 220 2 Godot 0x105988988 0x1046d0000 + 19630472 3 Godot 0x105b2f858 0x1046d0000 + 21362776 4 Godot 0x107edb37c 0x1046d0000 + 58766204 5 Godot 0x107edb6e4 0x1046d0000 + 58767076 6 libsystem_pthread.dylib 0x19a4e6f94 _pthread_start + 136 7 libsystem_pthread.dylib 0x19a4e1d34 thread_start + 8 Thread 20: 0 libsystem_kernel.dylib 0x19a4a97e8 __semwait_signal + 8 1 libsystem_c.dylib 0x19a38a274 nanosleep + 220 2 Godot 0x105988988 0x1046d0000 + 19630472 3 Godot 0x105ba4a6c 0x1046d0000 + 21842540 4 Godot 0x107edb37c 0x1046d0000 + 58766204 5 Godot 0x107edb6e4 0x1046d0000 + 58767076 6 libsystem_pthread.dylib 0x19a4e6f94 _pthread_start + 136 7 libsystem_pthread.dylib 0x19a4e1d34 thread_start + 8 Thread 21: 0 libsystem_kernel.dylib 0x19a4a99ec __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x19a4e755c _pthread_cond_wait + 1228 2 libc++.1.dylib 0x19a40cb14 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28 3 Godot 0x106702204 0x1046d0000 + 33759748 4 Godot 0x107edb37c 0x1046d0000 + 58766204 5 Godot 0x107edb6e4 0x1046d0000 + 58767076 6 libsystem_pthread.dylib 0x19a4e6f94 _pthread_start + 136 7 libsystem_pthread.dylib 0x19a4e1d34 thread_start + 8 Thread 22: 0 libsystem_kernel.dylib 0x19a4a99ec __psynch_cvwait + 8 1 libsystem_pthread.dylib 0x19a4e755c _pthread_cond_wait + 1228 2 libc++.1.dylib 0x19a40cb14 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 28 3 Godot 0x10635abe4 0x1046d0000 + 29928420 4 Godot 0x105e810dc 0x1046d0000 + 24842460 5 Godot 0x105e8223c 0x1046d0000 + 24846908 6 Godot 0x105e80270 0x1046d0000 + 24838768 7 Godot 0x107edb37c 0x1046d0000 + 58766204 8 Godot 0x107edb6e4 0x1046d0000 + 58767076 9 libsystem_pthread.dylib 0x19a4e6f94 _pthread_start + 136 10 libsystem_pthread.dylib 0x19a4e1d34 thread_start + 8 Thread 0 crashed with ARM Thread State (64-bit): x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x0000000000000000 x3: 0x0000000000000000 x4: 0x0000000000000000 x5: 0x000000002e800000 x6: 0x0000600001c27bc0 x7: 0x0000000000000000 x8: 0x39f0d77670d1118a x9: 0x39f0d77472ce2b4a x10: 0x0000000000000002 x11: 0x00000000fffffffd x12: 0x0000010000000000 x13: 0x0000000000000000 x14: 0x0000000000000000 x15: 0x0000000000000000 x16: 0x0000000000000148 x17: 0x000000020c55ec30 x18: 0x0000000000000000 x19: 0x0000000000000006 x20: 0x00000002021f3ac0 x21: 0x0000000000000103 x22: 0x00000002021f3ba0 x23: 0x000000000000001b x24: 0x0000000109f11a4f x25: 0x0000000109f11a6f x26: 0x000000016b72d228 x27: 0x0000000109f11a64 x28: 0x0000000000000000 fp: 0x000000016b72c920 lr: 0x000000019a4e6c20 sp: 0x000000016b72c900 pc: 0x000000019a4aea60 cpsr: 0x40001000 far: 0x0000000000000000 esr: 0x56000080 Address size fault Binary Images: 0x12fde4000 - 0x12fe2ffff com.apple.cmio.DAL.VDC-4 (810.0) <ecd3262f-1e01-3e3d-a309-4828482eb4c6> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/Resources/VDC.plugin/Contents/MacOS/VDC 0x11ec50000 - 0x11ed87fff com.apple.audio.units.Components (1.14) <261ddb64-4aeb-3916-961f-46dad090dd47> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio 0x10fe30000 - 0x10fe9bfff com.apple.AppleMetalOpenGLRenderer (1.0) <83d94df2-aca8-3695-a3a1-bf8ca16657ac> /System/Library/Extensions/AppleMetalOpenGLRenderer.bundle/Contents/MacOS/AppleMetalOpenGLRenderer 0x10eb50000 - 0x10eb5bfff libobjc-trampolines.dylib (*) <e8a1b184-0349-3c61-a119-6543eb038317> /usr/lib/libobjc-trampolines.dylib 0x1046d0000 - 0x10a1a3fff org.godotengine.godot (4.2.1) <b5054342-bde5-37a3-aa96-222efb3e1083> /Applications/Godot.app/Contents/MacOS/Godot 0x19a4a5000 - 0x19a4dfffb libsystem_kernel.dylib (*) <1889ce0a-52e7-3122-8907-81af920ac472> /usr/lib/system/libsystem_kernel.dylib 0x19a4e0000 - 0x19a4ecfff libsystem_pthread.dylib (*) <45239f06-cc53-36d0-9933-7776ac7ea2fa> /usr/lib/system/libsystem_pthread.dylib 0x19a37d000 - 0x19a3fbff3 libsystem_c.dylib (*) <49477e07-e77b-332f-b98d-79ca210a866d> /usr/lib/system/libsystem_c.dylib 0x19a513000 - 0x19a51afe7 libsystem_platform.dylib (*) <031f3e8c-5227-3138-a444-68174c1c28cf> /usr/lib/system/libsystem_platform.dylib 0x1f0b73000 - 0x1f0cd0ff7 libGLProgrammability.dylib (*) <94228af9-086f-32a9-8fa2-3a3f97b0a283> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib 0x1f0cdb000 - 0x1f0e3bfff GLEngine (*) <1cd5be54-e9cc-3e6d-b61e-6d13e18af751> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine 0x19a158000 - 0x19a1e09db dyld (*) <8e1e5ee2-f89a-33a7-bb0a-74bdc06b7828> /usr/lib/dyld 0x0 - 0xffffffffffffffff ??? (*) <00000000-0000-0000-0000-000000000000> ??? 0x19a3fc000 - 0x19a488ff7 libc++.1.dylib (*) <08c4329e-407f-310b-b037-75a8020b2963> /usr/lib/libc++.1.dylib 0x19a548000 - 0x19aa20fff com.apple.CoreFoundation (6.9) <33908a83-098f-3437-973e-fb848c4f39df> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation 0x19dde2000 - 0x19f11efff com.apple.AppKit (6.9) <8b85317d-d56a-3370-8b78-da6c1d0fb53c> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit 0x1a4a55000 - 0x1a4a7efff com.apple.audio.caulk (1.0) <e15b7222-ecda-3de9-bfa0-07c070986d41> /System/Library/PrivateFrameworks/caulk.framework/Versions/A/caulk 0x19cb68000 - 0x19d268fff com.apple.audio.CoreAudio (5.0) <82edac97-3b60-3b67-8ca4-08d3acd21c1a> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio External Modification Summary: Calls made by other processes targeting this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by this process: task_for_pid: 0 thread_create: 0 thread_set_state: 0 Calls made by all processes on this machine: task_for_pid: 0 thread_create: 0 thread_set_state: 0 VM Region Summary: ReadOnly portion of Libraries: Total=994.2M resident=0K(0%) swapped_out_or_unallocated=994.2M(100%) Writable regions: Total=3.3G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=3.3G(100%) VIRTUAL REGION REGION TYPE SIZE COUNT (non-coalesced) =========== ======= ======= Accelerate framework 128K 1 Activity Tracing 256K 1 CG image 288K 9 ColorSync 624K 29 CoreAnimation 608K 37 CoreGraphics 32K 2 CoreUI image data 1456K 11 Foundation 16K 1 Foundation (reserved) 16K 1 reserved VM address space (unallocated) Kernel Alloc Once 32K 1 MALLOC 3.3G 143 MALLOC guard page 384K 24 MALLOC_LARGE (reserved) 16K 1 reserved VM address space (unallocated) OpenGL GLSL 864K 12 STACK GUARD 56.4M 23 Stack 19.7M 23 VM_ALLOCATE 17.6M 658 VM_ALLOCATE (reserved) 32K 1 reserved VM address space (unallocated) __AUTH 1032K 222 __AUTH_CONST 17.5M 393 __CTF 824 1 __DATA 6266K 382 __DATA_CONST 22.5M 400 __DATA_DIRTY 1035K 126 __FONT_DATA 2352 1 __GLSLBUILTINS 5174K 1 __LINKEDIT 532.5M 6 __OBJC_RO 71.7M 1 __OBJC_RW 2195K 1 __TEXT 461.7M 415 dyld private memory 656K 4 mapped file 179.5M 28 shared memory 976K 17 =========== ======= ======= TOTAL 4.7G 2976 TOTAL, minus reserved VM space 4.7G 2976 ----------- Full Report ----------- {"app_name":"Godot","timestamp":"2024-03-20 14:34:41.00 -0400","app_version":"4.2.1","slice_uuid":"b5054342-bde5-37a3-aa96-222efb3e1083","build_version":"4.2.1","platform":1,"bundleID":"org.godotengine.godot","share_with_app_devs":0,"is_first_party":0,"bug_type":"309","os_version":"macOS 14.4 (23E214)","roots_installed":0,"name":"Godot","incident_id":"56FA6CF3-16B8-4A4A-B5A4-8D26929D23BA"} { "uptime" : 180000, "procRole" : "Foreground", "version" : 2, "userID" : 501, "deployVersion" : 210, "modelCode" : "MacBookPro17,1", "coalitionID" : 27235, "osVersion" : { "train" : "macOS 14.4", "build" : "23E214", "releaseType" : "User" }, "captureTime" : "2024-03-20 14:34:41.0473 -0400", "codeSigningMonitor" : 1, "incident" : "56FA6CF3-16B8-4A4A-B5A4-8D26929D23BA", "pid" : 22445, "translated" : false, "cpuType" : "ARM-64", "roots_installed" : 0, "bug_type" : "309", "procLaunch" : "2024-03-20 14:34:31.4819 -0400", "procStartAbsTime" : 4406653864981, "procExitAbsTime" : 4406882885910, "procName" : "Godot", "procPath" : "\/Applications\/Godot.app\/Contents\/MacOS\/Godot", "bundleInfo" : {"CFBundleShortVersionString":"4.2.1","CFBundleVersion":"4.2.1","CFBundleIdentifier":"org.godotengine.godot"}, "storeInfo" : {"deviceIdentifierForVendor":"6AD765B9-FBBF-597F-AE60-510A00F2E099","thirdParty":true}, "parentProc" : "launchd", "parentPid" : 1, "coalitionName" : "org.godotengine.godot", "crashReporterKey" : "DE15C41D-12A8-040E-DE63-7A4A35EA5C5C", "codeSigningID" : "org.godotengine.godot", "codeSigningTeamID" : "6K46PWY5DM", "codeSigningFlags" : 570491393, "codeSigningValidationCategory" : 6, "codeSigningTrustLevel" : 4294967295, "instructionByteStream" : {"beforePC":"fyMD1f17v6n9AwCRW+D\/l78DAJH9e8Go\/w9f1sADX9YQKYDSARAA1A==","atPC":"AwEAVH8jA9X9e7+p\/QMAkVDg\/5e\/AwCR\/XvBqP8PX9bAA1\/WcAqA0g=="}, "wakeTime" : 17989, "sleepWakeUUID" : "994BDA77-191E-400C-9507-64180CC547E0", "sip" : "enabled", "vmRegionInfo" : "0x10 is not in any region. Bytes before following region: 4369219568\n REGION TYPE START - END [ VSIZE] PRT\/MAX SHRMOD REGION DETAIL\n UNUSED SPACE AT START\n---> \n __TEXT 1046d0000-10a1a4000 [ 90.8M] r-x\/r-x SM=COW \/Applications\/Godot.app\/Contents\/MacOS\/Godot", "exception" : {"codes":"0x0000000000000001, 0x0000000000000010","rawCodes":[1,16],"type":"EXC_BAD_ACCESS","signal":"SIGABRT","subtype":"KERN_INVALID_ADDRESS at 0x0000000000000010"}, "termination" : {"flags":0,"code":6,"namespace":"SIGNAL","indicator":"Abort trap: 6","byProc":"Godot","byPid":22445}, "vmregioninfo" : "0x10 is not in any region. Bytes before following region: 4369219568\n REGION TYPE START - END [ VSIZE] PRT\/MAX SHRMOD REGION DETAIL\n UNUSED SPACE AT START\n---> \n __TEXT 1046d0000-10a1a4000 [ 90.8M] r-x\/r-x SM=COW \/Applications\/Godot.app\/Contents\/MacOS\/Godot", "asi" : {"libsystem_c.dylib":["abort() called"]}, "extMods" : {"caller":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"system":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"targeted":{"thread_create":0,"thread_set_state":0,"task_for_pid":0},"warnings":0}, "faultingThread" : 0, "threads" : [{"triggered":true,"id":1716596,"threadState":{"x":[{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":780140544},{"value":105553145789376},{"value":0},{"value":4175073758271312266},{"value":4175073749714742090},{"value":2},{"value":4294967293},{"value":1099511627776},{"value":0},{"value":0},{"value":0},{"value":328},{"value":8796892208},{"value":0},{"value":6},{"value":8625535680,"symbolLocation":0,"symbol":"_main_thread"},{"value":259},{"value":8625535904,"symbolLocation":224,"symbol":"_main_thread"},{"value":27},{"value":4461763151},{"value":4461763183},{"value":6097654312},{"value":4461763172},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6883798048},"cpsr":{"value":1073745920},"fp":{"value":6097652000},"sp":{"value":6097651968},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883568224,"matchesCrashFrame":1},"far":{"value":0}},"queue":"com.apple.main-thread","frames":[{"imageOffset":39520,"symbol":"__pthread_kill","symbolLocation":8,"imageIndex":5},{"imageOffset":27680,"symbol":"pthread_kill","symbolLocation":288,"imageIndex":6},{"imageOffset":485920,"symbol":"abort","symbolLocation":180,"imageIndex":7},{"imageOffset":7573740,"imageIndex":4},{"imageOffset":17796,"symbol":"_sigtramp","symbolLocation":56,"imageIndex":8},{"imageOffset":567392,"symbol":"glpLLVMCGSwitchStatement","symbolLocation":176,"imageIndex":9},{"imageOffset":528576,"symbol":"glpLLVMCGNode","symbolLocation":588,"imageIndex":9},{"imageOffset":566340,"symbol":"glpLLVMCGBlock","symbolLocation":444,"imageIndex":9},{"imageOffset":528528,"symbol":"glpLLVMCGNode","symbolLocation":540,"imageIndex":9},{"imageOffset":566340,"symbol":"glpLLVMCGBlock","symbolLocation":444,"imageIndex":9},{"imageOffset":528528,"symbol":"glpLLVMCGNode","symbolLocation":540,"imageIndex":9},{"imageOffset":642948,"symbol":"glpLLVMCGIfStatementShortCircuit","symbolLocation":208,"imageIndex":9},{"imageOffset":528544,"symbol":"glpLLVMCGNode","symbolLocation":556,"imageIndex":9},{"imageOffset":566340,"symbol":"glpLLVMCGBlock","symbolLocation":444,"imageIndex":9},{"imageOffset":528528,"symbol":"glpLLVMCGNode","symbolLocation":540,"imageIndex":9},{"imageOffset":565328,"symbol":"glpLLVMCGFunctionDefinition","symbolLocation":2664,"imageIndex":9},{"imageOffset":523544,"symbol":"glpLLVMCGTopLevel","symbolLocation":1480,"imageIndex":9},{"imageOffset":685880,"symbol":"glpLinkProgram","symbolLocation":9992,"imageIndex":9},{"imageOffset":792084,"symbol":"ShLink","symbolLocation":208,"imageIndex":9},{"imageOffset":1046640,"symbol":"gleLinkProgram","symbolLocation":1128,"imageIndex":10},{"imageOffset":494524,"symbol":"glLinkProgramARB_Exec","symbolLocation":180,"imageIndex":10},{"imageOffset":20445632,"imageIndex":4},{"imageOffset":20457232,"imageIndex":4},{"imageOffset":20709520,"imageIndex":4},{"imageOffset":20721860,"imageIndex":4},{"imageOffset":53004244,"imageIndex":4},{"imageOffset":7900132,"imageIndex":4},{"imageOffset":7558460,"imageIndex":4},{"imageOffset":7760412,"imageIndex":4},{"imageOffset":24800,"symbol":"start","symbolLocation":2360,"imageIndex":11}]},{"id":1716599,"frames":[{"imageOffset":7456,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":6}],"threadState":{"x":[{"value":6098219008},{"value":5123},{"value":6097682432},{"value":0},{"value":409604},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6098219008},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883777824},"far":{"value":0}}},{"id":1716600,"frames":[{"imageOffset":7456,"symbol":"start_wqthread","symbolLocation":0,"imageIndex":6}],"threadState":{"x":[{"value":6098792448},{"value":10243},{"value":6098255872},{"value":0},{"value":409602},{"value":18446744073709551615},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":0},"cpsr":{"value":4096},"fp":{"value":0},"sp":{"value":6098792448},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883777824},"far":{"value":0}}},{"id":1716611,"frames":[{"imageOffset":18924,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":5},{"imageOffset":30044,"symbol":"_pthread_cond_wait","symbolLocation":1228,"imageIndex":6},{"imageOffset":68372,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":13},{"imageOffset":59772652,"symbol":"_IP_ResolverPrivate::_thread_function(void*)","symbolLocation":152,"imageIndex":4},{"imageOffset":58766204,"imageIndex":4},{"imageOffset":58767076,"imageIndex":4},{"imageOffset":28564,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":6},{"imageOffset":7476,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}],"threadState":{"x":[{"value":260},{"value":0},{"value":0},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6100512424},{"value":0},{"value":5629065320},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":8796892136},{"value":0},{"value":5629065296},{"value":5629065360},{"value":6100512992},{"value":0},{"value":0},{"value":0},{"value":1},{"value":256},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6883800412},"cpsr":{"value":1610616832},"fp":{"value":6100512544},"sp":{"value":6100512400},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883547628},"far":{"value":0}}},{"id":1716612,"frames":[{"imageOffset":18924,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":5},{"imageOffset":30044,"symbol":"_pthread_cond_wait","symbolLocation":1228,"imageIndex":6},{"imageOffset":68372,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":13},{"imageOffset":64159964,"imageIndex":4},{"imageOffset":58766204,"imageIndex":4},{"imageOffset":58767076,"imageIndex":4},{"imageOffset":28564,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":6},{"imageOffset":7476,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}],"threadState":{"x":[{"value":4},{"value":0},{"value":0},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6101085880},{"value":0},{"value":5619463016},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":8796892136},{"value":0},{"value":5619462992},{"value":5619463056},{"value":6101086432},{"value":0},{"value":0},{"value":0},{"value":1},{"value":256},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6883800412},"cpsr":{"value":1610616832},"fp":{"value":6101086000},"sp":{"value":6101085856},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883547628},"far":{"value":0}}},{"id":1716613,"frames":[{"imageOffset":18924,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":5},{"imageOffset":30044,"symbol":"_pthread_cond_wait","symbolLocation":1228,"imageIndex":6},{"imageOffset":68372,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":13},{"imageOffset":64159964,"imageIndex":4},{"imageOffset":58766204,"imageIndex":4},{"imageOffset":58767076,"imageIndex":4},{"imageOffset":28564,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":6},{"imageOffset":7476,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}],"threadState":{"x":[{"value":4},{"value":0},{"value":0},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6101659320},{"value":0},{"value":5619463016},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":8796892136},{"value":0},{"value":5619462992},{"value":5619463056},{"value":6101659872},{"value":0},{"value":0},{"value":0},{"value":0},{"value":512},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6883800412},"cpsr":{"value":1610616832},"fp":{"value":6101659440},"sp":{"value":6101659296},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883547628},"far":{"value":0}}},{"id":1716614,"frames":[{"imageOffset":18924,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":5},{"imageOffset":30044,"symbol":"_pthread_cond_wait","symbolLocation":1228,"imageIndex":6},{"imageOffset":68372,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":13},{"imageOffset":64159964,"imageIndex":4},{"imageOffset":58766204,"imageIndex":4},{"imageOffset":58767076,"imageIndex":4},{"imageOffset":28564,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":6},{"imageOffset":7476,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}],"threadState":{"x":[{"value":4},{"value":0},{"value":0},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6102232760},{"value":0},{"value":5619463016},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":8796892136},{"value":0},{"value":5619462992},{"value":5619463056},{"value":6102233312},{"value":0},{"value":0},{"value":0},{"value":0},{"value":1280},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6883800412},"cpsr":{"value":1610616832},"fp":{"value":6102232880},"sp":{"value":6102232736},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883547628},"far":{"value":0}}},{"id":1716615,"frames":[{"imageOffset":18924,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":5},{"imageOffset":30044,"symbol":"_pthread_cond_wait","symbolLocation":1228,"imageIndex":6},{"imageOffset":68372,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":13},{"imageOffset":64159964,"imageIndex":4},{"imageOffset":58766204,"imageIndex":4},{"imageOffset":58767076,"imageIndex":4},{"imageOffset":28564,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":6},{"imageOffset":7476,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}],"threadState":{"x":[{"value":4},{"value":0},{"value":0},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6102806200},{"value":0},{"value":5619463016},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":8796892136},{"value":0},{"value":5619462992},{"value":5619463056},{"value":6102806752},{"value":0},{"value":0},{"value":0},{"value":0},{"value":1536},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6883800412},"cpsr":{"value":1610616832},"fp":{"value":6102806320},"sp":{"value":6102806176},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883547628},"far":{"value":0}}},{"id":1716616,"frames":[{"imageOffset":18924,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":5},{"imageOffset":30044,"symbol":"_pthread_cond_wait","symbolLocation":1228,"imageIndex":6},{"imageOffset":68372,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":13},{"imageOffset":64159964,"imageIndex":4},{"imageOffset":58766204,"imageIndex":4},{"imageOffset":58767076,"imageIndex":4},{"imageOffset":28564,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":6},{"imageOffset":7476,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}],"threadState":{"x":[{"value":4},{"value":0},{"value":0},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6103379640},{"value":0},{"value":5619463016},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":8796892136},{"value":0},{"value":5619462992},{"value":5619463056},{"value":6103380192},{"value":0},{"value":0},{"value":0},{"value":0},{"value":768},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6883800412},"cpsr":{"value":1610616832},"fp":{"value":6103379760},"sp":{"value":6103379616},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883547628},"far":{"value":0}}},{"id":1716617,"frames":[{"imageOffset":18924,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":5},{"imageOffset":30044,"symbol":"_pthread_cond_wait","symbolLocation":1228,"imageIndex":6},{"imageOffset":68372,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":13},{"imageOffset":64159964,"imageIndex":4},{"imageOffset":58766204,"imageIndex":4},{"imageOffset":58767076,"imageIndex":4},{"imageOffset":28564,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":6},{"imageOffset":7476,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}],"threadState":{"x":[{"value":260},{"value":0},{"value":0},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6103953080},{"value":0},{"value":5619463016},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":8796892136},{"value":0},{"value":5619462992},{"value":5619463056},{"value":6103953632},{"value":0},{"value":0},{"value":0},{"value":0},{"value":1024},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6883800412},"cpsr":{"value":1610616832},"fp":{"value":6103953200},"sp":{"value":6103953056},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883547628},"far":{"value":0}}},{"id":1716618,"frames":[{"imageOffset":18924,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":5},{"imageOffset":30044,"symbol":"_pthread_cond_wait","symbolLocation":1228,"imageIndex":6},{"imageOffset":68372,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":13},{"imageOffset":64159964,"imageIndex":4},{"imageOffset":58766204,"imageIndex":4},{"imageOffset":58767076,"imageIndex":4},{"imageOffset":28564,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":6},{"imageOffset":7476,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}],"threadState":{"x":[{"value":4},{"value":0},{"value":0},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6104526520},{"value":0},{"value":5619463016},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":8796892136},{"value":0},{"value":5619462992},{"value":5619463056},{"value":6104527072},{"value":0},{"value":0},{"value":0},{"value":0},{"value":2048},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6883800412},"cpsr":{"value":1610616832},"fp":{"value":6104526640},"sp":{"value":6104526496},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883547628},"far":{"value":0}}},{"id":1716619,"frames":[{"imageOffset":18924,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":5},{"imageOffset":30044,"symbol":"_pthread_cond_wait","symbolLocation":1228,"imageIndex":6},{"imageOffset":68372,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":13},{"imageOffset":64159964,"imageIndex":4},{"imageOffset":58766204,"imageIndex":4},{"imageOffset":58767076,"imageIndex":4},{"imageOffset":28564,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":6},{"imageOffset":7476,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}],"threadState":{"x":[{"value":4},{"value":0},{"value":0},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6105099960},{"value":0},{"value":5619463016},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":8796892136},{"value":0},{"value":5619462992},{"value":5619463056},{"value":6105100512},{"value":0},{"value":0},{"value":0},{"value":0},{"value":1792},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6883800412},"cpsr":{"value":1610616832},"fp":{"value":6105100080},"sp":{"value":6105099936},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883547628},"far":{"value":0}}},{"id":1716630,"name":"com.apple.NSEventThread","threadState":{"x":[{"value":268451845},{"value":21592279046},{"value":8589934592},{"value":204556407406592},{"value":0},{"value":204556407406592},{"value":2},{"value":4294967295},{"value":18446744073709550527},{"value":47627},{"value":0},{"value":1},{"value":47627},{"value":1954676},{"value":0},{"value":0},{"value":18446744073709551569},{"value":8796876304},{"value":0},{"value":4294967295},{"value":2},{"value":204556407406592},{"value":0},{"value":204556407406592},{"value":6105669736},{"value":8589934592},{"value":21592279046},{"value":21592279046},{"value":4412409862}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6883609380},"cpsr":{"value":4096},"fp":{"value":6105669584},"sp":{"value":6105669504},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883533300},"far":{"value":0}},"frames":[{"imageOffset":4596,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":5},{"imageOffset":80676,"symbol":"mach_msg2_internal","symbolLocation":80,"imageIndex":5},{"imageOffset":40500,"symbol":"mach_msg_overwrite","symbolLocation":476,"imageIndex":5},{"imageOffset":5496,"symbol":"mach_msg","symbolLocation":24,"imageIndex":5},{"imageOffset":516184,"symbol":"__CFRunLoopServiceMachPort","symbolLocation":160,"imageIndex":14},{"imageOffset":510236,"symbol":"__CFRunLoopRun","symbolLocation":1208,"imageIndex":14},{"imageOffset":507404,"symbol":"CFRunLoopRunSpecific","symbolLocation":608,"imageIndex":14},{"imageOffset":1457332,"symbol":"_NSEventThread","symbolLocation":144,"imageIndex":15},{"imageOffset":28564,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":6},{"imageOffset":7476,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}]},{"id":1716647,"name":"caulk.messenger.shared:17","threadState":{"x":[{"value":14},{"value":105553120385466},{"value":0},{"value":6106247274},{"value":105553120385440},{"value":25},{"value":0},{"value":0},{"value":0},{"value":4294967295},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":18446744073709551580},{"value":8796881920},{"value":0},{"value":105553175076608},{"value":105553175076608},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":7057274404},"cpsr":{"value":2147487744},"fp":{"value":6106247040},"sp":{"value":6106247008},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883533168},"far":{"value":0}},"frames":[{"imageOffset":4464,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":5},{"imageOffset":9764,"symbol":"caulk::semaphore::timed_wait(double)","symbolLocation":212,"imageIndex":16},{"imageOffset":9432,"symbol":"caulk::concurrent::details::worker_thread::run()","symbolLocation":36,"imageIndex":16},{"imageOffset":8664,"symbol":"void* caulk::thread_proxy<std::__1::tuple<caulk:🧵:attributes, void (caulk::concurrent::details::worker_thread::*)(), std::__1::tuple<caulk::concurrent::details::worker_thread*>>>(void*)","symbolLocation":96,"imageIndex":16},{"imageOffset":28564,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":6},{"imageOffset":7476,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}]},{"id":1716648,"name":"caulk.messenger.shared:high","threadState":{"x":[{"value":14},{"value":86275},{"value":86275},{"value":11},{"value":4294967295},{"value":0},{"value":0},{"value":0},{"value":0},{"value":4294967295},{"value":1},{"value":105553129720840},{"value":0},{"value":0},{"value":0},{"value":0},{"value":18446744073709551580},{"value":8796881920},{"value":0},{"value":105553175075152},{"value":105553175075152},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":7057274404},"cpsr":{"value":2147487744},"fp":{"value":6106820480},"sp":{"value":6106820448},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883533168},"far":{"value":0}},"frames":[{"imageOffset":4464,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":5},{"imageOffset":9764,"symbol":"caulk::semaphore::timed_wait(double)","symbolLocation":212,"imageIndex":16},{"imageOffset":9432,"symbol":"caulk::concurrent::details::worker_thread::run()","symbolLocation":36,"imageIndex":16},{"imageOffset":8664,"symbol":"void* caulk::thread_proxy<std::__1::tuple<caulk:🧵:attributes, void (caulk::concurrent::details::worker_thread::*)(), std::__1::tuple<caulk::concurrent::details::worker_thread*>>>(void*)","symbolLocation":96,"imageIndex":16},{"imageOffset":28564,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":6},{"imageOffset":7476,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}]},{"id":1716654,"name":"caulk::deferred_logger","threadState":{"x":[{"value":14},{"value":105553158064503},{"value":0},{"value":6107394151},{"value":105553158064480},{"value":22},{"value":0},{"value":0},{"value":0},{"value":4294967295},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":18446744073709551580},{"value":8796881920},{"value":0},{"value":105553177405560},{"value":105553177405560},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":7057274404},"cpsr":{"value":2147487744},"fp":{"value":6107393920},"sp":{"value":6107393888},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883533168},"far":{"value":0}},"frames":[{"imageOffset":4464,"symbol":"semaphore_wait_trap","symbolLocation":8,"imageIndex":5},{"imageOffset":9764,"symbol":"caulk::semaphore::timed_wait(double)","symbolLocation":212,"imageIndex":16},{"imageOffset":9432,"symbol":"caulk::concurrent::details::worker_thread::run()","symbolLocation":36,"imageIndex":16},{"imageOffset":8664,"symbol":"void* caulk::thread_proxy<std::__1::tuple<caulk:🧵:attributes, void (caulk::concurrent::details::worker_thread::*)(), std::__1::tuple<caulk::concurrent::details::worker_thread*>>>(void*)","symbolLocation":96,"imageIndex":16},{"imageOffset":28564,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":6},{"imageOffset":7476,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}]},{"id":1716655,"name":"com.apple.audio.IOThread.client","threadState":{"x":[{"value":268451845},{"value":17179869187},{"value":103079215123},{"value":115715},{"value":3354369458176},{"value":435419489501184},{"value":32},{"value":0},{"value":18446744073709550527},{"value":101379},{"value":781},{"value":1},{"value":101379},{"value":0},{"value":0},{"value":0},{"value":18446744073709551569},{"value":8796876304},{"value":0},{"value":0},{"value":32},{"value":435419489501184},{"value":3354369458176},{"value":115715},{"value":6107966672},{"value":103079215123},{"value":17179869187},{"value":17179869187},{"value":3}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6883609380},"cpsr":{"value":536875008},"fp":{"value":6107966336},"sp":{"value":6107966256},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883533300},"far":{"value":0}},"frames":[{"imageOffset":4596,"symbol":"mach_msg2_trap","symbolLocation":8,"imageIndex":5},{"imageOffset":80676,"symbol":"mach_msg2_internal","symbolLocation":80,"imageIndex":5},{"imageOffset":40500,"symbol":"mach_msg_overwrite","symbolLocation":476,"imageIndex":5},{"imageOffset":5496,"symbol":"mach_msg","symbolLocation":24,"imageIndex":5},{"imageOffset":3242136,"symbol":"HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, bool, unsigned int)","symbolLocation":96,"imageIndex":17},{"imageOffset":2014020,"symbol":"HALC_ProxyIOContext::IOWorkLoop()","symbolLocation":4272,"imageIndex":17},{"imageOffset":2007900,"symbol":"invocation function for block in HALC_ProxyIOContext::HALC_ProxyIOContext(unsigned int, unsigned int)","symbolLocation":108,"imageIndex":17},{"imageOffset":3605732,"symbol":"HALC_IOThread::Entry(void*)","symbolLocation":88,"imageIndex":17},{"imageOffset":28564,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":6},{"imageOffset":7476,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}]},{"id":1716663,"frames":[{"imageOffset":18924,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":5},{"imageOffset":30044,"symbol":"_pthread_cond_wait","symbolLocation":1228,"imageIndex":6},{"imageOffset":68372,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":13},{"imageOffset":16776976,"imageIndex":4},{"imageOffset":16776604,"imageIndex":4},{"imageOffset":16776484,"imageIndex":4},{"imageOffset":28564,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":6},{"imageOffset":7476,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}],"threadState":{"x":[{"value":260},{"value":0},{"value":485376},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6108540520},{"value":0},{"value":105553171057480},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":8796892136},{"value":0},{"value":105553171057456},{"value":105553171057520},{"value":6108541152},{"value":0},{"value":0},{"value":485376},{"value":485377},{"value":485632},{"value":105553171057408},{"value":105553171057408}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6883800412},"cpsr":{"value":1610616832},"fp":{"value":6108540640},"sp":{"value":6108540496},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883547628},"far":{"value":0}}},{"id":1716684,"frames":[{"imageOffset":18408,"symbol":"__semwait_signal","symbolLocation":8,"imageIndex":5},{"imageOffset":53876,"symbol":"nanosleep","symbolLocation":220,"imageIndex":7},{"imageOffset":19630472,"imageIndex":4},{"imageOffset":21016548,"imageIndex":4},{"imageOffset":58766204,"imageIndex":4},{"imageOffset":58767076,"imageIndex":4},{"imageOffset":28564,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":6},{"imageOffset":7476,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}],"threadState":{"x":[{"value":4},{"value":0},{"value":1},{"value":1},{"value":0},{"value":200000000},{"value":52},{"value":0},{"value":8625573304,"symbolLocation":0,"symbol":"clock_sem"},{"value":16387},{"value":17},{"value":96592},{"value":5082464156},{"value":29},{"value":5082447872},{"value":2148925439},{"value":334},{"value":8796892256},{"value":0},{"value":6377565520},{"value":6377565536},{"value":4461761313},{"value":5573447792},{"value":4294967295},{"value":4376783268,"symbolLocation":0,"symbol":"DefaultAllocator::alloc(unsigned long)"},{"value":0},{"value":6683252},{"value":5573447808},{"value":4464243276}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6882370164},"cpsr":{"value":1610616832},"fp":{"value":6377565504},"sp":{"value":6377565456},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883547112},"far":{"value":0}}},{"id":1716685,"frames":[{"imageOffset":18408,"symbol":"__semwait_signal","symbolLocation":8,"imageIndex":5},{"imageOffset":53876,"symbol":"nanosleep","symbolLocation":220,"imageIndex":7},{"imageOffset":19630472,"imageIndex":4},{"imageOffset":21362776,"imageIndex":4},{"imageOffset":58766204,"imageIndex":4},{"imageOffset":58767076,"imageIndex":4},{"imageOffset":28564,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":6},{"imageOffset":7476,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}],"threadState":{"x":[{"value":4},{"value":0},{"value":1},{"value":1},{"value":0},{"value":200000000},{"value":52},{"value":0},{"value":8625573304,"symbolLocation":0,"symbol":"clock_sem"},{"value":16387},{"value":17},{"value":4294967293},{"value":1099511627776},{"value":0},{"value":0},{"value":0},{"value":334},{"value":8796892256},{"value":0},{"value":6378139088},{"value":6378139104},{"value":4},{"value":5573626344},{"value":5573626336},{"value":4462311106},{"value":0},{"value":9500655},{"value":2999999},{"value":4294967295}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6882370164},"cpsr":{"value":1610616832},"fp":{"value":6378139072},"sp":{"value":6378139024},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883547112},"far":{"value":0}}},{"id":1716687,"frames":[{"imageOffset":18408,"symbol":"__semwait_signal","symbolLocation":8,"imageIndex":5},{"imageOffset":53876,"symbol":"nanosleep","symbolLocation":220,"imageIndex":7},{"imageOffset":19630472,"imageIndex":4},{"imageOffset":21842540,"imageIndex":4},{"imageOffset":58766204,"imageIndex":4},{"imageOffset":58767076,"imageIndex":4},{"imageOffset":28564,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":6},{"imageOffset":7476,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}],"threadState":{"x":[{"value":4},{"value":0},{"value":1},{"value":1},{"value":0},{"value":6900000},{"value":52},{"value":0},{"value":8625573304,"symbolLocation":0,"symbol":"clock_sem"},{"value":16387},{"value":17},{"value":4294967293},{"value":1099511627776},{"value":0},{"value":0},{"value":0},{"value":334},{"value":8796892256},{"value":0},{"value":6378712896},{"value":6378712912},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6882370164},"cpsr":{"value":1610616832},"fp":{"value":6378712880},"sp":{"value":6378712832},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883547112},"far":{"value":0}}},{"id":1716734,"frames":[{"imageOffset":18924,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":5},{"imageOffset":30044,"symbol":"_pthread_cond_wait","symbolLocation":1228,"imageIndex":6},{"imageOffset":68372,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":13},{"imageOffset":33759748,"imageIndex":4},{"imageOffset":58766204,"imageIndex":4},{"imageOffset":58767076,"imageIndex":4},{"imageOffset":28564,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":6},{"imageOffset":7476,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}],"threadState":{"x":[{"value":260},{"value":0},{"value":0},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6379285864},{"value":0},{"value":5697245256},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":8796892136},{"value":0},{"value":5697245232},{"value":5697245296},{"value":6379286752},{"value":0},{"value":0},{"value":0},{"value":1},{"value":256},{"value":6379286176},{"value":5697245440}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6883800412},"cpsr":{"value":1610616832},"fp":{"value":6379285984},"sp":{"value":6379285840},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883547628},"far":{"value":0}}},{"id":1716759,"frames":[{"imageOffset":18924,"symbol":"__psynch_cvwait","symbolLocation":8,"imageIndex":5},{"imageOffset":30044,"symbol":"_pthread_cond_wait","symbolLocation":1228,"imageIndex":6},{"imageOffset":68372,"symbol":"std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&)","symbolLocation":28,"imageIndex":13},{"imageOffset":29928420,"imageIndex":4},{"imageOffset":24842460,"imageIndex":4},{"imageOffset":24846908,"imageIndex":4},{"imageOffset":24838768,"imageIndex":4},{"imageOffset":58766204,"imageIndex":4},{"imageOffset":58767076,"imageIndex":4},{"imageOffset":28564,"symbol":"_pthread_start","symbolLocation":136,"imageIndex":6},{"imageOffset":7476,"symbol":"thread_start","symbolLocation":8,"imageIndex":6}],"threadState":{"x":[{"value":260},{"value":0},{"value":0},{"value":0},{"value":0},{"value":160},{"value":0},{"value":0},{"value":6379858840},{"value":0},{"value":5699126512},{"value":2},{"value":0},{"value":0},{"value":0},{"value":0},{"value":305},{"value":8796892136},{"value":0},{"value":5699126488},{"value":5699126552},{"value":6379860192},{"value":0},{"value":0},{"value":0},{"value":1},{"value":256},{"value":4460508128,"symbolLocation":222428,"symbol":"CanvasSdfShaderRD::CanvasSdfShaderRD()::_compute_code"},{"value":0}],"flavor":"ARM_THREAD_STATE64","lr":{"value":6883800412},"cpsr":{"value":1610616832},"fp":{"value":6379858960},"sp":{"value":6379858816},"esr":{"value":1442840704,"description":" Address size fault"},"pc":{"value":6883547628},"far":{"value":0}}}], "usedImages" : [ { "source" : "P", "arch" : "arm64e", "base" : 5098061824, "CFBundleShortVersionString" : "810.0", "CFBundleIdentifier" : "com.apple.cmio.DAL.VDC-4", "size" : 311296, "uuid" : "ecd3262f-1e01-3e3d-a309-4828482eb4c6", "path" : "\/System\/Library\/Frameworks\/CoreMediaIO.framework\/Versions\/A\/Resources\/VDC.plugin\/Contents\/MacOS\/VDC", "name" : "VDC", "CFBundleVersion" : "426.3.1" }, { "source" : "P", "arch" : "arm64e", "base" : 4811194368, "CFBundleShortVersionString" : "1.14", "CFBundleIdentifier" : "com.apple.audio.units.Components", "size" : 1277952, "uuid" : "261ddb64-4aeb-3916-961f-46dad090dd47", "path" : "\/System\/Library\/Components\/CoreAudio.component\/Contents\/MacOS\/CoreAudio", "name" : "CoreAudio", "CFBundleVersion" : "1.14" }, { "source" : "P", "arch" : "arm64e", "base" : 4561502208, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.AppleMetalOpenGLRenderer", "size" : 442368, "uuid" : "83d94df2-aca8-3695-a3a1-bf8ca16657ac", "path" : "\/System\/Library\/Extensions\/AppleMetalOpenGLRenderer.bundle\/Contents\/MacOS\/AppleMetalOpenGLRenderer", "name" : "AppleMetalOpenGLRenderer", "CFBundleVersion" : "1" }, { "source" : "P", "arch" : "arm64e", "base" : 4541710336, "size" : 49152, "uuid" : "e8a1b184-0349-3c61-a119-6543eb038317", "path" : "\/usr\/lib\/libobjc-trampolines.dylib", "name" : "libobjc-trampolines.dylib" }, { "source" : "P", "arch" : "arm64", "base" : 4369219584, "CFBundleShortVersionString" : "4.2.1", "CFBundleIdentifier" : "org.godotengine.godot", "size" : 95240192, "uuid" : "b5054342-bde5-37a3-aa96-222efb3e1083", "path" : "\/Applications\/Godot.app\/Contents\/MacOS\/Godot", "name" : "Godot", "CFBundleVersion" : "4.2.1" }, { "source" : "P", "arch" : "arm64e", "base" : 6883528704, "size" : 241660, "uuid" : "1889ce0a-52e7-3122-8907-81af920ac472", "path" : "\/usr\/lib\/system\/libsystem_kernel.dylib", "name" : "libsystem_kernel.dylib" }, { "source" : "P", "arch" : "arm64e", "base" : 6883770368, "size" : 53248, "uuid" : "45239f06-cc53-36d0-9933-7776ac7ea2fa", "path" : "\/usr\/lib\/system\/libsystem_pthread.dylib", "name" : "libsystem_pthread.dylib" }, { "source" : "P", "arch" : "arm64e", "base" : 6882316288, "size" : 520180, "uuid" : "49477e07-e77b-332f-b98d-79ca210a866d", "path" : "\/usr\/lib\/system\/libsystem_c.dylib", "name" : "libsystem_c.dylib" }, { "source" : "P", "arch" : "arm64e", "base" : 6883979264, "size" : 32744, "uuid" : "031f3e8c-5227-3138-a444-68174c1c28cf", "path" : "\/usr\/lib\/system\/libsystem_platform.dylib", "name" : "libsystem_platform.dylib" }, { "source" : "P", "arch" : "arm64e", "base" : 8333504512, "size" : 1433592, "uuid" : "94228af9-086f-32a9-8fa2-3a3f97b0a283", "path" : "\/System\/Library\/Frameworks\/OpenGL.framework\/Versions\/A\/Libraries\/libGLProgrammability.dylib", "name" : "libGLProgrammability.dylib" }, { "source" : "P", "arch" : "arm64e", "base" : 8334979072, "size" : 1445888, "uuid" : "1cd5be54-e9cc-3e6d-b61e-6d13e18af751", "path" : "\/System\/Library\/Frameworks\/OpenGL.framework\/Versions\/A\/Resources\/GLEngine.bundle\/GLEngine", "name" : "GLEngine" }, { "source" : "P", "arch" : "arm64e", "base" : 6880067584, "size" : 559580, "uuid" : "8e1e5ee2-f89a-33a7-bb0a-74bdc06b7828", "path" : "\/usr\/lib\/dyld", "name" : "dyld" }, { "size" : 0, "source" : "A", "base" : 0, "uuid" : "00000000-0000-0000-0000-000000000000" }, { "source" : "P", "arch" : "arm64e", "base" : 6882836480, "size" : 577528, "uuid" : "08c4329e-407f-310b-b037-75a8020b2963", "path" : "\/usr\/lib\/libc++.1.dylib", "name" : "libc++.1.dylib" }, { "source" : "P", "arch" : "arm64e", "base" : 6884196352, "CFBundleShortVersionString" : "6.9", "CFBundleIdentifier" : "com.apple.CoreFoundation", "size" : 5083136, "uuid" : "33908a83-098f-3437-973e-fb848c4f39df", "path" : "\/System\/Library\/Frameworks\/CoreFoundation.framework\/Versions\/A\/CoreFoundation", "name" : "CoreFoundation", "CFBundleVersion" : "2420" }, { "source" : "P", "arch" : "arm64e", "base" : 6943547392, "CFBundleShortVersionString" : "6.9", "CFBundleIdentifier" : "com.apple.AppKit", "size" : 20172800, "uuid" : "8b85317d-d56a-3370-8b78-da6c1d0fb53c", "path" : "\/System\/Library\/Frameworks\/AppKit.framework\/Versions\/C\/AppKit", "name" : "AppKit", "CFBundleVersion" : "2487.50.124" }, { "source" : "P", "arch" : "arm64e", "base" : 7057264640, "CFBundleShortVersionString" : "1.0", "CFBundleIdentifier" : "com.apple.audio.caulk", "size" : 172032, "uuid" : "e15b7222-ecda-3de9-bfa0-07c070986d41", "path" : "\/System\/Library\/PrivateFrameworks\/caulk.framework\/Versions\/A\/caulk", "name" : "caulk" }, { "source" : "P", "arch" : "arm64e", "base" : 6924173312, "CFBundleShortVersionString" : "5.0", "CFBundleIdentifier" : "com.apple.audio.CoreAudio", "size" : 7344128, "uuid" : "82edac97-3b60-3b67-8ca4-08d3acd21c1a", "path" : "\/System\/Library\/Frameworks\/CoreAudio.framework\/Versions\/A\/CoreAudio", "name" : "CoreAudio", "CFBundleVersion" : "5.0" } ], "sharedCache" : { "base" : 6879313920, "size" : 4189880320, "uuid" : "664c17e3-f7ed-3226-8594-589aa9bf8fd2" }, "vmSummary" : "ReadOnly portion of Libraries: Total=994.2M resident=0K(0%) swapped_out_or_unallocated=994.2M(100%)\nWritable regions: Total=3.3G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=3.3G(100%)\n\n VIRTUAL REGION \nREGION TYPE SIZE COUNT (non-coalesced) \n=========== ======= ======= \nAccelerate framework 128K 1 \nActivity Tracing 256K 1 \nCG image 288K 9 \nColorSync 624K 29 \nCoreAnimation 608K 37 \nCoreGraphics 32K 2 \nCoreUI image data 1456K 11 \nFoundation 16K 1 \nFoundation (reserved) 16K 1 reserved VM address space (unallocated)\nKernel Alloc Once 32K 1 \nMALLOC 3.3G 143 \nMALLOC guard page 384K 24 \nMALLOC_LARGE (reserved) 16K 1 reserved VM address space (unallocated)\nOpenGL GLSL 864K 12 \nSTACK GUARD 56.4M 23 \nStack 19.7M 23 \nVM_ALLOCATE 17.6M 658 \nVM_ALLOCATE (reserved) 32K 1 reserved VM address space (unallocated)\n__AUTH 1032K 222 \n__AUTH_CONST 17.5M 393 \n__CTF 824 1 \n__DATA 6266K 382 \n__DATA_CONST 22.5M 400 \n__DATA_DIRTY 1035K 126 \n__FONT_DATA 2352 1 \n__GLSLBUILTINS 5174K 1 \n__LINKEDIT 532.5M 6 \n__OBJC_RO 71.7M 1 \n__OBJC_RW 2195K 1 \n__TEXT 461.7M 415 \ndyld private memory 656K 4 \nmapped file 179.5M 28 \nshared memory 976K 17 \n=========== ======= ======= \nTOTAL 4.7G 2976 \nTOTAL, minus reserved VM space 4.7G 2976 \n", "legacyInfo" : { "threadTriggered" : { "queue" : "com.apple.main-thread" } }, "logWritingSignature" : "122d5ce1865c4b28d7898bad9cc08feea95e05ea", "trialInfo" : { "rollouts" : [ { "rolloutId" : "61675b89201f677a9a4cbd65", "factorPackIds" : { "HEALTH_FEATURE_AVAILABILITY" : "65a855f5f087695cfac03d1f" }, "deploymentId" : 240000095 }, { "rolloutId" : "5fb4245a1bbfe8005e33a1e1", "factorPackIds" : { }, "deploymentId" : 240000021 } ], "experiments" : [ ] } } Model: MacBookPro17,1, BootROM 10151.101.3, proc 8:4:4 processors, 16 GB, SMC Graphics: Apple M1, Apple M1, Built-In Display: LG Ultra HD, 3840 x 2160 (2160p/4K UHD 1 - Ultra High Definition), Main, MirrorOff, Online Memory Module: LPDDR4, Hynix AirPort: spairport_wireless_card_type_wifi (0x14E4, 0x4378), wl0: Jan 13 2024 03:06:59 version 18.20.440.9.7.8.167 FWID 01-7be24857 AirPort: Bluetooth: Version (null), 0 services, 0 devices, 0 incoming serial ports Network Service: Wi-Fi, AirPort, en0 USB Device: USB31Bus USB Device: USB3.1 Hub USB Device: Opal C1 USB Device: USB2.1 Hub USB Device: Razer DeathAdder Elite USB Device: hub_device USB Device: ALT Keyboard USB Device: USB31Bus USB Device: hub_device USB Device: TUSB3410 EECode Ser USB Device: Texas Instruments USB Billboard Device Thunderbolt Bus: MacBook Pro, Apple Inc. Thunderbolt Bus: MacBook Pro, Apple Inc. 1 0 Mar. 20, 2024
  • Getting this error on Windows JesterBells[https://imgur.com/a/mxTu27x](https://imgur.com/a/mxTu27x) Tried fixing broken dependancies but nothing, any ideas? 1 0 Mar. 18, 2024
  • UI Health BarKiddBrainerI double clicked the UI Health Bar node twice in step 7 or 8 but couldnt continue to the next step even though I did everything correctly. 4 0 Mar. 09, 2024
  • Adblocker make the images not visiblejimlIf you are using Ublock origin, turn it off on this site, otherwise you would not be able to see the images in the lessons 1 0 Mar. 07, 2024
  • Kudos to you for this module!Mauri090I have to say that I was extremely happy with this module. The Godot Tours is a perfect starting point for someone like me, who doesn't have any idea what's going on :D. 1 0 Mar. 04, 2024
  • Quick QOL issueFoobzStep 1 of the tour had us play around in a test version of the game. At least on my machine, when I hit play it immediately made the screen full size and I was unable to select the edges of the screen to close out of the test window. I know you can use F8 shortcut to force close it that way, but I couldn't remember the keybind at first and had to google it on a separate machine to get out of the test window. Not sure if there's a workaround for that but thought I'd mention it! 1 0 Feb. 20, 2024
  • Unable to extract some files from the Windows ZIP FolderLitNightHello, I've tried downloading and extracting the ZIP file, but some of the ZIP file folders are showing as "path too long" and unable to extract, therefore missing these files, I've included gyazo screenshots of all the files I am missing, I'm not sure what the problem is here as usually extraction works when I'm extracting ZIP files. See screenshots for missing files/folders: [https://gyazo.com/a78ca9f88be9257f95e4e643cbf85597](https://gyazo.com/a78ca9f88be9257f95e4e643cbf85597) [https://gyazo.com/70a761d5032180a31879f77847976b07](https://gyazo.com/70a761d5032180a31879f77847976b07) [https://gyazo.com/5d1dd6b195d69c524c2d2a8060e079c8](https://gyazo.com/5d1dd6b195d69c524c2d2a8060e079c8) [https://gyazo.com/2a6ea45f7159757af54b2e074a42e61f](https://gyazo.com/2a6ea45f7159757af54b2e074a42e61f) [https://gyazo.com/2b307b891c0d0221601990d804cf1fcb](https://gyazo.com/2b307b891c0d0221601990d804cf1fcb) [https://gyazo.com/55e4889ea4e0f982049dc5d432166347](https://gyazo.com/55e4889ea4e0f982049dc5d432166347) [https://gyazo.com/7b161ca2700574f7791656b298348062](https://gyazo.com/7b161ca2700574f7791656b298348062) [https://gyazo.com/7ef94a60008d65d9f4a2a4004777c523](https://gyazo.com/7ef94a60008d65d9f4a2a4004777c523) [https://gyazo.com/30d3d10689f945f11a8d9b4280d41bed](https://gyazo.com/30d3d10689f945f11a8d9b4280d41bed) [https://gyazo.com/f7b70ef986cc86b572f4081595cbd4ca](https://gyazo.com/f7b70ef986cc86b572f4081595cbd4ca) [https://gyazo.com/6872f04ef1a7a263af8ed74e053386d2](https://gyazo.com/6872f04ef1a7a263af8ed74e053386d2) [https://gyazo.com/79e5b0aebce9e8947e6ecc9e621cd3b1](https://gyazo.com/79e5b0aebce9e8947e6ecc9e621cd3b1) [https://gyazo.com/d47d28e695da5f326dc31617c56c7dc9](https://gyazo.com/d47d28e695da5f326dc31617c56c7dc9) [https://gyazo.com/75928b8b8b3104eda1c6bdcb9b6d060d](https://gyazo.com/75928b8b8b3104eda1c6bdcb9b6d060d) If anyone can suggest a fix or how I can get these missing files? I was really excited to start learning but I'm stuck if I'm missing files from the extraction. Many thanks!! 3 0 Feb. 18, 2024
  • Back button issue in adding roomsthird-squirrelHello, awesome content so far. I can't wait to get into the actual coding. While goin' through the second lesson of *getting to know Godot(102.a)*, I hit back to re-read something and to take take notes. The dialogue box no longer had a yellow next step option . I believe you're aware of the issue, as it was stated in the early access notes, but if not. it happened to me here. If it helps to pin-point issues, hitting back on the dialogue "open the RoomA scene" caused the problem. I just restarted the section and skipped ahead to get back to my spot. Again, great stuff so far. I love how you use mechanics gamers are aware of to intro aspects of Godot and coding, helping to create a mental connection. 1 0 Feb. 16, 2024
  • 103 Can not select terrain bridgekrauthauptThe blue cursor when asked to select terrain bridges goes to the upper left corner of the screen and I can not select anything. I checked and my editor language is set to en. 2 0 Feb. 15, 2024
  • List of tiny bugs/typos/feedbackCornflakes- The **game's title** is "**Zelda: Link's Awakening**", not "A Link's Awakening" 😅 - You write "Let's add a CanvasLayer node to the scene so that our user interface **also** moves with the player." I don't see **the point of the word "also"** in this sentence, I think it would reduce confusion if you removed it. - At the step where we first start adding nodes (the CanvasLayer), **CTRL+A** should probably give you the **green checkmark** as well. Currently, only clicking the Add Node button does that. - While connecting nodes, I saw the **sentence** "It is the case of the UIHealthBar node." This sounds **pretty weird**. I suggest changing it to: "[...] such as the UIHealthBar node." - In "The connected function": "Godot indicates that with the green icon in the margin on the left." <- **Changing the word "that" to "this"** prevents this line from becoming a garden-path sentence. - And finally... I don't mean to discount your many hours designing the tour. Neither do I want to express that I am better at that sort of thing. It's simply my opinion that the **white layer on top of the editor** is a bit **too opaque**. I would turn this down a little or remove it for the section users are supposed to look at. 3 0 Feb. 13, 2024
  • Unable to scrollwelcome-sardineWhen placing the rooms, I'm unable to scroll down to select and place rooms B and C. There are several situations where my screen size (using a 14-inch MacBook Pro) limited my ability to follow along with the tutorial. Note, that I finally figured out a way to scroll the list by scrolling using my trackpad while my cursor was within the selectable view range. If I tried scrolling anywhere else in the window (including by selecting the scrollbar), it would not scroll. 2 0 Feb. 12, 2024
  • Missing files?MartinBI've downloaded the ZIP file for Mac but there's no Godot_v4 in the parent file? 1 0 Feb. 08, 2024
  • 02.getting-to-know-godot crashes, even after deleting .godot folderElementalTJHello, 02.getting-to-know-godot project crashes even after deleting .godot folder as FAQ recommended. I have tried to use both the supplied Godot .exe as well as my own 4.2.1 that I had before. Neither work. Project crashes when loading up. GDTour worked in the past but cannot get M2 working. Any suggestions? Thank you! To Space and Beyond also does not work. I should note that while attempting to load, there is audio crackling before the crash. 5 0 Feb. 08, 2024
  • How to list all scenes of a project?fussy-caribouHi, and thank you for the tour. I'm curious to know if it's possible to view all the scenes within a project. The scene view in the top left corner displays the selected scene, which is great. However, when examining a tutorial project, it would be really helpful to have an overview of all the existing scenes. 1 0 Feb. 08, 2024
  • Mac M1 crashGuz GontijoEven after cleaning .godot cash folder, and restarting everything it still crashes. It starts loading the file and freezes at 99% with some .wav file being loaded. What else should I try? Running on Godot 4.2.1, Mac OS Sonoma 14.3 3 0 Feb. 08, 2024
  • Suggested changesgullible-storkI tried to reset the tutorial when I got an error (it has already been reported as an error with the lesson restarting when I clicked "continue"), but it didn't reset the scene that I had created in Lesson 104, and kept crashing when I tried to restart at Lesson 101. I fixed this by deleting the scenes I created but it may be useful to have an option to reset the entire tutorial. Another suggestion is to have some indicator that you have completed the lessons in the Lesson select interface. 1 0 Feb. 07, 2024
  • 105: Tour starts asking to add bridgesNoneApplicableGames[https://imgur.com/a/9R82wzr](https://imgur.com/a/9R82wzr) Wasn't able to replicate this on my own but I was going through the tutorial and suddenly it started asking me to add bridges again even though I had already done it. Restarting the tour seems to have fixed it though... 1 0 Feb. 06, 2024
  • 105 Godot Tour Dialogue being drawn under the signals menuNoneApplicableGamesExample Image [https://imgur.com/a/hr2fUb2](https://imgur.com/a/hr2fUb2) Not a major bug since the window is moved in the next step but still worth pointing out as it covers the back button in the tour. 1 0 Feb. 06, 2024
  • 104: No check in place for existing canvas groupNoneApplicableGamesWas going through the tutorial and when I noticed it was asking me to add a canvas layer group node I used my prexisiting knowlage to add one myself before the actual step that required me to do so. I know I could just add another one to progress but it would make sense to check to see if one already exists in the starter scene. 2 0 Feb. 06, 2024
  • Un-expected crash with lesson 102NoneApplicableGamesHi there. I was going through lesson 102 when I got to the second talking about grid snapping and grid set when I noticed that the back and next button had stopped working. When I tried to launch the project again it now displays an updating scene bar and then crashes. For reference I am using Godot 4.2 running through steam and Windows 10 3 0 Feb. 05, 2024
  • How to run Godot in secondary display by default?gorohaI use MacBook Air M1 (macOS Monterey 12.4), with 27 inches secondary display. Anytime I open Godot, it's always in the MacBook display. I need to drag it into secondary display manually. It's a little bit annoying. I've already googled how to open Godot in secondary display by default but not found the solutions yet. If you know any solution, please let me know. Thank you so much! :) 3 0 Feb. 05, 2024
  • Double-clicked room c and couldn't get outfine-cattleWhen placing rooms, I accidentally double-clicked on room C. It then opened room C in its own window in the center screen. But since the tour restricts what I could click on, it wouldn't let me click on anything outside of the center viewing window and I couldn't close room C. I was completely stuck. Had to start over. 4 0 Feb. 04, 2024
  • Bug found in lesson 103PurisukinWhen I was asked to use terrains, the blue cursor would go in the upper left corner of my window and not on the Terrain section, so I was stuck. 2 0 Feb. 04, 2024
  • Mono version is also not workingDragonByte79I have installed the Godot 4.2.stable.mono.official [46dc27791] on my Mac because I also like to learn to script in C#. I realized the mono version also did not work with the interactive course. It doesn't recognize that you played the game. I installed the normal 4.2.0 version, and the course is working. All in all, I love that course so much. After a long Godot break, starting again with that interactive tour is a good point. Thank you so much! We had to wait long for the Godot 4 version :) Now it's here! 1 0 Feb. 04, 2024
  • DimmersRomanRiot**Wow, that's a cool feature!** Are we going to be able to learn how to use Dimmers ourselves in a future lesson? 1 0 Feb. 03, 2024
Site is in BETA!found a bug?