this post was submitted on 24 Dec 2024
70 points (96.1% liked)

Godot

6008 readers
30 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 7 comments
sorted by: hot top controversial new old
[–] [email protected] 11 points 1 day ago (1 children)

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] 4 points 21 hours ago

Of course it's a matter of personal preference, but I'm exactly the opposite. I'm ending a line by hitting the enter key, why should I have to go through the trouble of hitting the ; key for every single line, when more often than not I'm not breaking single lines up to multi-line. On those rarer occasions I can use \ key. It probably helps that I was "raised" on a white space sensitive language. But to me, it makes way more sense to let the whitespace mean the same thing to the computer that it does to me.

All of that said, I'm still wrapping my if statements in () though. I don't care if is not required. Just looks better to me.

[–] [email protected] 15 points 1 day ago (2 children)

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

[–] Ategon 14 points 1 day ago (1 children)

I dont

⠀⠀⠀⠀know what you're

talking

⠀⠀ab out

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

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

[–] [email protected] 1 points 20 hours 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.