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.

  • Just thanksstupid-grouseNathan you are one of the finest and most thoughtful educators I have ever come across in my entire life. You leave absolutely no stone unturned and the deliberate care and quality of your approach the the way that you anticipate questions is something to behold and an absolute gold standard of an approach. The breadth of reference and the way you take a complete computing science education and by implication of the way you walk people through this practice force your students brain to really impress upon themselves the practical implications of what this means in terms of future frameworks and what they can build and iterate on is something else, especially in your deeper segues into formats and teaching by voluntary depth. This is one of the most remarkable ways I have seen the notion of computing science thought being conveyed in a practical fashion that conveys important theoretical concepts in a way that students naturally understand if they follow along. I just had to say that because I've been learning and teaching in my on way professionally for a long time and you have really blown me away in the way you have presented this course. No one is walking away from this feeling they did not get their moneys worth. I'm a working data scientist and economist and i wish that data science and economics were taught this way. Had to get that off my chest. 1 3 Jul. 25, 2024
  • Is there a way to stop exported resources getting reset?EmFirst off, thank you all for the work you've been putting into these courses! They've been so thorough, fun, and extremely helpful. I saw M8 was up just as I started tackling a dialogue system in my own practice project, and it answered a lot of questions I was about to start experimenting with - particularly with using resources to load dialogue branches. An issue I've run into with exported resources is that changing certain things about the scene composition or script ends up completely resetting all resource data I've put in via the inspector. For instance several times through this module, I spent some time configuring a sample dialogue in the exported field in the inspector, customizing the sprite expressions, etc. Then I went to update the export variable's name to something more fitting and... it all completely vanished, and I had to start from scratch tediously clicking through and re-filling everything all over again (but with much less effort this time, haha). In this case, it's a small practice setting so it's frustrating, but not that big of a deal. But this would be a huge problem if you were working on an actual game with more involved scenes and lots of settings to adjust per item. Is there a way to stop this from happening, or is it just a limitation of exporting resources? If you risk losing everything due to a misclick or typo, would it be better to just load dialogue data from an external file or script instead? Sorry for the wall of text, and thanks again! 3 1 Jul. 18, 2024
  • Multiline Docstringssebbianuuushort version: it's possible to do it by adding the BBCode tag [br] wherever you want to be a new line. long version: In the Documenting your code section you have an example docstring like this: ```gdscript ## DialogueChoice takes: ## - a text ## - a target dialogue line index to go to when picked ## - optionally, [member is_quit] can be set to [code]true[/code] ``` I'd guess the intention is that it's supposed to be a sort of a list with each entry on a new line. However looking at the in editor documentation now, we can see it put everything on a single line and it's looking a little awkward. ```gdscript DialogueChoice takes: - a text - a target dialogue line index to go to when picked - optionally, is_quit can be set to true ``` It's ignoring all the line breaks in the docstring! We can fix that by putting the BBCode tag [br] in front of every line that's supposed to be on its own line ```gdscript ## DialogueChoice takes: ## [br]- a text ## [br]- a target dialogue line index to go to when picked ## [br]- optionally, [member is_quit] can be set to [code]true[/code] ``` Now it shows up in the documentation as expected: ```gdscript DialogueChoice takes: - a text - a target dialogue line index to go to when picked - optionally, is_quit can be set to true ``` The same thing applies to docstrings for any property, even when displaying them by hovering in the inspector. 1 0 Sep. 14, 2024
  • Did I understand this part of the lesson correctly?HazlarHello, Here is the diagram that illustrates how I understand the script but I have a question. [https://ibb.co/nQHxyKS](https://ibb.co/nQHxyKS) Does c`hoices = new_choice` become real only when I click where the red arrow points? or is it already created implicitly? When I read the script I am a little confused I have the impression that line 12 and 13 do the same thing from the inspector's point of view. Thanks 3 0 Sep. 11, 2024
  • Just here to say that this lesson was great!iDieHello, I really enjoyed this lesson and today, I was able to reuse almost everything I learned in it to create some configurable scenes -> it was a great feeling! It might not be visible in-game but it makes things much cleaner in the editor. Keep up the good work! Dai 0 0 Sep. 04, 2024
  • Setter function not populating in the DocsStonemonkeyWhen I add the `Set = Setter_Function` syntax to the `dialogue_items` variable the **Method** entry for the Setter Function won't appear. Adding functions before and after the set_choice_items function appear just fine in the documentation. When I try the inline method of writing the Set code it still won't appear. ```gdscript @tool @icon("res://assets/dialogue_item_icon.svg") ## This resource represents a complete dialogue entry. ## ## Dialogue Item takes: ## - a choices array class_name DialogueItem extends SlideShowEntry @export_group("Choices") ## The array of choices in text format along with their target index and optional quit state. @export var choices: Array[DialogueChoice] = []: set = set_choice_items ## This setter adds a blank Dialogue choice incase there is none. func set_choice_items(new_choice_items: Array[DialogueChoice]) -> void: for item in new_choice_items.size(): if new_choice_items[item] == null: new_choice_items[item] = DialogueChoice.new() choices = new_choice_items ``` 1 0 Sep. 04, 2024
  • Tools are amazing!grave-toadJust wanted to drop a comment highlighting how valuable I find this type of lesson! Most tutorials I have done in the past only focus on the flashy front-end parts of making a game, shying away from more "boring" topics like this one. But lessons like this really help me understand how important it is to learn how to mould the game engine to your needs. Creating powerful tools to liberate and lubricate the creative process. I feel like learning this stuff is a total game changer. So thanks to the whole team at GDQuest for taking such a holistic, thorough and thoughtful approach with this course! 1 0 Aug. 24, 2024
  • Changing character voices!AJ StudiosBefore I jump into the question I want to say that: This has been the toughest module so far, at least for me. I like that it pushed me to my limits, I even experienced a lot of frustration but now I have a general idea of how classes and resources work. I can see the importance of resources and how it can make our lives a lot simpler in Godot, specially been able to customize the editor based on our needs. **Thank you for the great effort that was put into this module!** Ok, back to the question. How can I change the second character's voice? I added 5 elements to the Array, the 4th one contains the texture of "*Pink*, but the "*talking synth*" still plays the original voice even after I change it in the editor. Note: I removed the synth's `@export var voice := preload("res://assets/talking_synth.ogg")` but the synth still plays. Here's the Zipped file: [https://drive.google.com/file/d/1zMdE6gbvgfmJ5yASNYSWkIHjoBuoBFKy/view?usp=sharing](https://drive.google.com/file/d/1zMdE6gbvgfmJ5yASNYSWkIHjoBuoBFKy/view?usp=sharing) 2 0 Aug. 24, 2024
  • Incorporating AnimationPlayer / AnimatedSpritelean-flyHi! First, thanks for making this course, as an artist I started from mostly 0 coding knowledge and have learned a lot so far! Now I am working on a project that is purposely animation-heavy with hand-drawn assets. Is there a "clean" way to refactor this dialogue system to allow for animation playback and/or selected animated sprite frames together within the dialogue? I have tried to look this up for a while and tested a few things without luck, so I am expect my technical knowledge is not quite there (yet). 4 0 Aug. 17, 2024
  • Sentence ChangeStevenThis sentence "While static typing is a good starting to make your code less error-prone" is missing a word. "While static typing is a good starting *point* to make your code less error-prone." It's in the Editor Warnings sections at the beginning. 1 0 Aug. 12, 2024
  • Editor Warning Confusionwell-to-do-owlJust had a bit of confusion on the editor warning section. It's mentioned to get editor warnings to override the virtual function `_get_editor_warning()` However in the provided code and in the code reference at the end `_get_configuration_warnings()` is used instead. I thought overriding virtual functions means you'd use the same function name, is there a typo or something I am missing? 1 0 Jul. 21, 2024
Site is in BETA!found a bug?