Skip to content
#

Open Source

Open source is a term denoting that a product includes permission to use its source code, design documents, or content. It most commonly refers to the open source model, in which open source software or other products are released under an open source license as part of the open source-software movement. Use of the term originated with software, but has expanded beyond the software sector to cover other open content and forms of open collaboration.

Here are 9,221 public repositories matching this topic...

akien-mga
akien-mga commented Feb 15, 2022

Godot version

4.0.dev (98b97d34df7f3ab2cafc3847358c231c3d357b40)

Issue description

Following #58151, the rest of the codebase should be given the same treatment to review all _notification methods and ensure that they use switch statements instead of a list of if (p_what == NOTIFICATION_*).

See the above PR for details of what the preferred style should be like.

#58151

docusaurus
SwifterSwift
TheStalwart
TheStalwart commented Mar 11, 2021

🚀
Is your feature request related to a problem? Please describe.
Doc string states:
Date().weekday -> 5 // fifth day in the current week.
Guess what, 5 is not friday. It's thursday. It makes some sense after i dug deeper, but as a programmer, i assumed monday could be 0 or 1, therefore thursday should be 3 or 4. Monday is 2! Because sunday is 1!

**Describe the solution you'd li