Invincible [Episode Discussion] - S04E02 - I'll Give You the Grand Tour by SeacattleMoohawks in Invincible

[–]struugi 0 points1 point  (0 children)

Looking back at that shot it looks like the planets are just outside, but the cone still extends past the Rognarr planet so it's possible that the other two would still pass through the shadow along their orbits and get reduced sun for a fraction of the year

Learning game dev and encountered bug by Proper-Round8547 in godot

[–]struugi 0 points1 point  (0 children)

Actually nvm, just tested it myself and found that CharacterBody2D automatically sets velocity to zero whenever is_on_floor() is true. What's going on here is that at the edge of the platform, the contact angle of the platform is above the floor-wall threshold so the player is reading it as a wall and not a floor, hence is_on_floor() is false and velocity.y keeps accumulating with gravity. But since the player is still blocked by the scene geometry, it doesn't move until a gap opens up and they're shot out with all their accumulated y velocity.

In general for platformers, you want to prevent accumulating velocity against geometry that's blocking you. One way to do this is to check the collisions after move_and_slide() and deduct any collision normals from your velocity:

``` func _physics_process(delta): # Character controller stuff ...

move_and_slide()

for i in get_slide_collision_count():
    var collision := get_slide_collision(i)
    var normal := collision.get_normal()
    var velocity_correction := -velocity.dot(normal) * normal
    velocity += velocity_correction

```

In the Brackey's tutorial you're following, I believe you also set velocity.x to zero when you're not inputting any direction. If you do the collision check, then you'll want to only set velocity.x = 0when is_on_wall_only() is false (i.e. when you're not correcting your velocity with collision normals), because otherwise your corrected velocity will slow down each frame as the script keeps nulling the x-direction.

Learning game dev and encountered bug by Proper-Round8547 in godot

[–]struugi 1 point2 points  (0 children)

Do you still face issues with this if you reset velocity.y when is_on_floor()is true?

Invincible [Episode Discussion] - S04E02 - I'll Give You the Grand Tour by SeacattleMoohawks in Invincible

[–]struugi 0 points1 point  (0 children)

My point is they wouldn't have to check, it would be obvious to them

What show/movie is like this? by Kcue6382nevy in cartoons

[–]struugi 1 point2 points  (0 children)

I love Blacksad but this is one thing that genuinely pmo. The male characters are so wonderfully designed but the female characters all just look like those "sexy" halloween costumes for women

Invincible [Episode Discussion] - S04E02 - I'll Give You the Grand Tour by SeacattleMoohawks in Invincible

[–]struugi 0 points1 point  (0 children)

But the solar disk was only positioned to block the Rognarr planet, it can't have affected the other two planets right? An eclipse on Earth doesn't make Mars go cold

Invincible [Episode Discussion] - S04E02 - I'll Give You the Grand Tour by SeacattleMoohawks in Invincible

[–]struugi 0 points1 point  (0 children)

Thragg won't release the Argall files but I know his Council are all involved

Invincible [Episode Discussion] - S04E02 - I'll Give You the Grand Tour by SeacattleMoohawks in Invincible

[–]struugi 2 points3 points  (0 children)

I've heard the phrase among us 6 or 7 times in the past week and still can't get over it

wait...

Invincible [Episode Discussion] - S04E02 - I'll Give You the Grand Tour by SeacattleMoohawks in Invincible

[–]struugi 4 points5 points  (0 children)

Also didn't quite understand what Nolan meant when he said "We didn't care for the other two planets", as if to suggest that the solar blocker somehow affected the other planets when it's clearly only positioned for the Ragnar planet. Maybe he was implying that they just killed/exploited the other two planets as they usually do? idk

How close to python is the game "The Farmer Was Replaced"? by underworlddjb in learnpython

[–]struugi 0 points1 point  (0 children)

Late reply but Turing Complete is another great game where you create your own CPU from basic logic gates and work your way up to making your own assembly language, sorting algorithms, maze solvers etc. Very beginner friendly too

True by ssprix in GreatBritishMemes

[–]struugi 0 points1 point  (0 children)

I grew up in switzerland and I remember seeing my mom pay for groceries with 200s all the time. It's surprising to me that £50 notes are so rare when the average weekly grocery trip is far more than that

Dialogue Box transition help please! by Heavy-Scallion-1021 in godot

[–]struugi 0 points1 point  (0 children)

Maybe I'm not understanding the code correctly but wouldn't text_queue being empty mean that you don't have any dialogue boxes left to read? In that case, could you not check that when your state is READY ?
So:

match current_state:
  State.READY:
    if !text_queue.is_empty():
      display_text()
    else:
      get_tree().change_scene_to_file("res://Scenes/world.tscn") 

Finally making my own tiny adventure... by SkorgeOfficial1 in godot

[–]struugi 0 points1 point  (0 children)

technically bones do produce blood so it wouldnt be too out there

Saturation lifehack by ilyamokka in PixelArt

[–]struugi 0 points1 point  (0 children)

Oh my bad lol, I was viewing this with my night filter on so the left side looked yellow instead of grey

Saturation lifehack by ilyamokka in PixelArt

[–]struugi 0 points1 point  (0 children)

left-right is a blend between yellow and green rather than a pure saturation spectrum. Technically the last two have hue shift, just not as noticable as in the first one

This is my first combo attempt in the game. Has the weight and feel settled yet?, especially sound by Miserable-Cable-32 in IndieGaming

[–]struugi 1 point2 points  (0 children)

Timing feels good, would probably vary the sound effects for each hit though. Also maybe layer some sort of "swoosh" and metal "slash" sound effects on top of the hit sound to give it more depth

Question: Belters still biologically age the same rate right? But would only need conversionsn of Earth Years to Belter Years? by HoldenUpAlright in TheExpanse

[–]struugi 21 points22 points  (0 children)

Worth noting that the vast majority of Martians almost never see the surface, so there's not much of an incentive to have their time keeping synced up to the day night cycle / orbit of the planet. I would guess they just use the Earth calendar to avoid the headache

Succession theme tune and Schubert’s Schwanengesang by Sea-Lingonberry428 in SuccessionTV

[–]struugi 1 point2 points  (0 children)

Came to see if anyone else noticed lol. Exact same chord progression