Zykino

joined 1 year ago
[–] Zykino@programming.dev 4 points 1 day ago (5 children)

Y a aussi Zorin (et une autre dont j'ai perdu le nom) pour leur interface ressemblant a la fenêtre.

[–] Zykino@programming.dev 3 points 1 month ago

SpaceX is a strange player in this field since they test their hardware to the limit. Here is an old video with thz falcon explosions https://www.youtube.com/watch?v=p9FzWPObsWA. It is 8 years old so does not contaign the starship tests.

On the other hand of the spectrum, you have all the national agencies that simulate a lot and test in controled environment. Did you see SaturnV explosions during development ? Or Artemis launch ? Ariane 5 only had 1 bug, Ariane 6 have a flowless start.

Just not the same test/development phylosohy.

[–] Zykino@programming.dev 2 points 1 month ago

Yeah, I'm on custom PC and Ubuntu 22 start to feel really old. All software are outdated which bring instabilities when using some binaries from the net or flatpaks. I think I'll either jump in the beta, or distro-hop soon

[–] Zykino@programming.dev 3 points 1 month ago (1 children)

Arn't AAA preload useless since you still needs to re-download the entire game as day1 patch anyway?

I mean I almost never buy day1, and also sporadicaly even AA games. So bringing from what I read.

[–] Zykino@programming.dev 2 points 2 months ago (1 children)

Maybe you should join forces with YuNoHost. It let peoples selfhost on a Raspberry Pi or any old computer. Can be a "when I start it spare board only visible at home".

They already have a lot of apps packages that are 1 click to install. Maybe you can discuss to propose an option in their package script to reduce network to the current machine?

The only downside to this approach is that their solution is targeted at being an entire OS. So I suspect most of the work would be to extract the app management from the rest?

One issue I have with your idea is that most open source servers/app are designed to be run on Linux right? Not every users use it on their main machine. You also talk a lot about docker… does it work on Windows? I mean WSL sounds like a nightmare to manage with script, for other peoples. From my point of view, YuNoHost solution is easy enough for a layman, and they will be happy not to break their main PC, have access from their phone, … even if only at home.

[–] Zykino@programming.dev 5 points 2 months ago

Pass thoses firewalls and other corporates proxy/VPN/… that block most ports. If what you build is at least partly used where user have internet access, you know this port is open. Even if 22, 8080 and all the others are closed.

[–] Zykino@programming.dev 0 points 2 months ago

Are you the one user of this OS Server side? /s

Graph showing global OS Market Share for 2023. Linux is at 62,7% while Windows is around 25%. Rest is Unix and others.

[–] Zykino@programming.dev 1 points 2 months ago

Always forget about this. That the tragedy of seeing the world through internet and mostly picture.

[–] Zykino@programming.dev 1 points 2 months ago

I don't really care about PI, and I think I saw this one last year (and kinda forgot about it).

But the fact is still interesting, the article show the equation and how it related to another one with depth while still being comprehensible.

Nerd snipped, thanks!

[–] Zykino@programming.dev 4 points 2 months ago (1 children)

Oh there is a whole video ? Can you share please, I'm sure everyone love to see them walk around.

[–] Zykino@programming.dev 9 points 2 months ago* (last edited 2 months ago) (5 children)

Maybe I'm just getting paranoid about it. First time I see their fur unaligned, and the rest of the picture is so smooth…

If not AI I guess it just hopped out of the water and the care giver made their hair before taking the picture.

[–] Zykino@programming.dev 7 points 2 months ago (11 children)

Is it AI generated comb?

Also, where are my nerd facts?

19
submitted 10 months ago* (last edited 10 months ago) by Zykino@programming.dev to c/godot@programming.dev
 

I have been looking for a way to move non player entities on the map. For example I want cars to move around road, a parking lot, … I found way too many options without comparaison to see pro/cons. Is there a ressource telling which option is privileged?

I saw (in 2D, but I suspect all/most have their 3D equivalent):

Option My understanding
Path2D Very rigid path to follow (only saw used with tween). Can be nice to follow tracks, insert cubes in slot, … But when trying to have a more natural movement, with a bit of variety thanks to physic I don’t see how to do it.
AStar2D (and the AStar2DGrid variant) Robust algo known everywhere. Can add weight to connections. I suspect to make it work we have to give points to reach so we should "cover" the maps with points and link them together
NavigationServer2D Same as AStar2D but experimental, more automatic. Instead of specifying all the point we specify accessible zones. But adding weight to the connection is less obvious (using NavigationObstacle2D?) may be less customizable also?

Are there more options?
Is my understanding of each correct or completely wrong?
What is "the best" one (in Godot 4.3)? Like is there big performance drawback for some (at 100 entities there are lags or whatever)?

Keep in mind that I want my game as little as I can to understand how Godot/game engines work (I’m a developer so that part is easy, Scenes and Nodes choice less so), I don’t really care if using experimental feature means it disappear at some point or change behavior.

Edit: Just found out the official page explaining the different methodes.
So AStar is for grid/pathing on a set of points while NavigationServer can navigate to any point on the accessible area and uses A* as an implementation detail.

=> I think for my use case A* is better suited since I want to move on roads (that look like a grid with weight being the length).

view more: next ›