this post was submitted on 24 Dec 2024
77 points (100.0% liked)

Godot

6509 readers
60 users here now

Welcome to the programming.dev Godot community!

This is a place where you can discuss about anything relating to the Godot game engine. Feel free to ask questions, post tutorials, show off your godot game, etc.

Make sure to follow the Godot CoC while chatting

We have a matrix room that can be used for chatting with other members of the community here

Links

Other Communities

Rules

We have a four strike system in this community where you get warned the first time you break a rule, then given a week ban, then given a year ban, then a permanent ban. Certain actions may bypass this and go straight to permanent ban if severe enough and done with malicious intent

Wormhole

[email protected]

Credits

founded 2 years ago
MODERATORS
 

Putting a backslash after a part of the statement basically means ignore any newlines between this and the next characters so you can indent it however you want

top 6 comments
sorted by: hot top controversial new old
[–] [email protected] 16 points 3 months ago (2 children)

Good to know, but this goes in the TIHI category, what's that indentation? 👀

[–] [email protected] 14 points 3 months ago (1 children)

I dont

⠀⠀⠀⠀know what you're

talking

⠀⠀ab out

[–] [email protected] 5 points 3 months ago
Hmmm:{
  yeah, actually...
  nothing wrong;
     }
[–] [email protected] 1 points 3 months ago

Hey us bath salt enjoyers like code once in a while!

[–] [email protected] 12 points 3 months ago

This is one of the reasons why I don’t like gdscript. I get that it’s based on python and interpreted but I will never enjoy alignment sensitive languages. Just let me format it how I want and control EOL with semicolons.

On a related note, might be cool to see some tips on the mono side of things here :)

[–] [email protected] 1 points 3 months ago

I tend to us the backslash syntax for longer if statements. One thing I do differently than documention mentions though is double tab the following lines in my if statements. Keeps it easier to read where it ends and where the actual code block begins.