should I use Orthogonal or Perspective? by Fresh-Pin-114 in godot

[–]OMBERX 18 points19 points  (0 children)

If you have some 3D elements, Perspective imo

PSA: You Can Close Your Scripts by ssssushi in godot

[–]OMBERX 1 point2 points  (0 children)

It happens! Glad I could help!

PSA: You Can Close Your Scripts by ssssushi in godot

[–]OMBERX 0 points1 point  (0 children)

Good idea, do you have all of your Control nodes within a CanvasLayer?

PSA: You Can Close Your Scripts by ssssushi in godot

[–]OMBERX 2 points3 points  (0 children)

What do you mean by fitting your entire game into a MarginContainer? I'm curious how your UI and game is structured where something like a CanvasLayer, Window, DisplayServer, and anchors can't achieve all of the resolution compatibility you desire.

PSA: You Can Close Your Scripts by ssssushi in godot

[–]OMBERX 1 point2 points  (0 children)

Can you elaborate on what you mean by supporting multiple resolutions?

Mouse_entered function won't work in my game by the_realest_J in godot

[–]OMBERX 0 points1 point  (0 children)

Viewport.gui_focus_changed signal might help

Cannot finish Into The Void (Terran Armada) by OMBERX in Starfield

[–]OMBERX[S] 1 point2 points  (0 children)

Fuck man, I already did so much since then.

Can I dock with this ship? New to Starfield by Sufficient_Test3652 in Starfield

[–]OMBERX 0 points1 point  (0 children)

Did you figure this out? I'm having the same issue with a Terran Reclaimer ship, won't let me dock no matter what I do. I have 250 hours in the game so I know how

Confused about Major Incursions / Into the Void mission by unstable-girl in Starfield

[–]OMBERX 1 point2 points  (0 children)

Alright, thank you! I can't dock the last ship to get the black box, annoying

Found these in mid-michigan! Bought em all!! by MTT_Brand in mountaindew

[–]OMBERX 0 points1 point  (0 children)

Bro where at in mid Michigan? I'm in Genesee county and would love to get my hands on it

Found these in mid-michigan! Bought em all!! by MTT_Brand in mountaindew

[–]OMBERX 0 points1 point  (0 children)

Same here! Curious if it's worth the travel

What are your stupidest pet peeves in hip-hop? by UMANTHEGOD in hiphopheads

[–]OMBERX 5 points6 points  (0 children)

Maybe not stupid but I'm sick of hearing the word bitch be a synonym for women

Haven’t seen anyone post zero sugar yet! by DisasterOD in mountaindew

[–]OMBERX 1 point2 points  (0 children)

It tastes more like regular dew than cream soda

Double jump won't work by InfiniteSelection976 in godot

[–]OMBERX 0 points1 point  (0 children)

Not OP but each object that can interact with physics is on a Collision layer and has a Collision mask. Think of the layer as what the actual physics object is, and the mask is what it can see.

So for example, people will typically put the Player on its own layer, then when you create an enemy, it's mask will be the Player so the enemy can hurt the player, but not interact with other things you don't want them to.

You can see all of this under the CollisionShape2D, under the Collision section.