learn-gdscript
learn-gdscript copied to clipboard
Learn Godot's GDScript programming language from zero, right in your browser, for free.
Lesson 1: What Code is Like The tutorial should run the user through using the practice interface Lesson 2: Your first error The tutorial should explain how errors work and...
**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the bug: 1. Go to '...' 2. Click on '....' 3. Scroll...
Close #556
Close #608
Added a GUT test that iterates over the practices and runs the given solution. There are some tests that fail and it might be due to how the `UIPractice._practece_completed` flag...

In lesson 16, scaling 2d vectors, we're asked to increase the robot's scale by 0.2. The code " scale += vector2(0.2,0.2) " doesn't work but " scale += Vector2(0.2,0.2) "...
> I think the visual example of executing the code (with the robot character) could use a subtle background. Especially when executing code that moves the character it is just...
The interactive widget with cards in modulo lessons confuses people. We probably need a more concrete breakdown of a whole number division, showing all of the steps in the division.
There are very few uses of modulo in Godot due to alternate functions being available. While the concept can be useful in code, it shouldn't be in the middle of...