this post was submitted on 24 Dec 2024
67 points (95.9% liked)

Godot

6014 readers
120 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

!roguelikedev@programming.dev

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
[–] QuazarOmega@lemy.lol 15 points 2 days ago (2 children)

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

[–] Ategon@programming.dev 14 points 2 days ago (1 children)

I dont

⠀⠀⠀⠀know what you're

talking

⠀⠀ab out

[–] QuazarOmega@lemy.lol 5 points 2 days ago
Hmmm:{
  yeah, actually...
  nothing wrong;
     }
[–] Thcdenton@lemmy.world 1 points 2 days ago

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

[–] astrsk@fedia.io 10 points 2 days 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 :)

[–] greybeard@lemmy.one 4 points 2 days 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.

[–] Mikelius@lemmy.ml 1 points 2 days 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.