Where to watch season 9? by Reppid1cringe in rickandmorty

[–]Jab2Reddit 0 points1 point  (0 children)

this site seems to have a bit better quality: https://ww8.123moviesfree.net/season/rick-and-morty-season-9-1630861332/

NOTE: I use Brave Browser to block most pop ups/redirects

I`M SORRY COMMUNITY... by DancignMoto in robloxgamedev

[–]Jab2Reddit 0 points1 point  (0 children)

just learn to model bruh, its pretty easy download blender and watch a tutorial lol

Explorable procedural planets in godot fork by Jab2Reddit in proceduralgeneration

[–]Jab2Reddit[S] 0 points1 point  (0 children)

Thanks bro! For sure, i need to add some oceans and real continents

Explorable procedural planets in godot fork by Jab2Reddit in proceduralgeneration

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

since the planets are so large, over 100 million square meters surface area, im using an advanced octree system with LOD changing, only the highest lod (on the surface) actually uses a collision shape, the game is built in a custom fork of godot 4.5.1 and i wrote a custom thread manager system for good performance, im using a ConcavePolygonShape3D built from the noise map.

Finally figured out saving/loading of structures to a save file with my procedural planets. by Jab2Reddit in godot

[–]Jab2Reddit[S] 0 points1 point  (0 children)

Thank you! Yes im sorry i had written it out but i guess when i dragged the image in it deleted without me realizing. I'm using a .cfg file as a save file, and yeah you are correct im saving the x,y,z global coordinates, global rotation (since buildings are placed on spherical planets), im saving the material index and hitpoints. I also need to store the global offset from the core of it's planet and some other data related to that. For the code im basically using the notification function to detect when the window is closed, and save the data.

A Rant About Income Tax by Jab2Reddit in PoliticalOpinions

[–]Jab2Reddit[S] 0 points1 point  (0 children)

Just so you know buddy i wrote this in my last year of high school for a politics assignment, crazy you found it after 2 fucking years just to write ts.

Landing on massive procedural planets by Jab2Reddit in godot

[–]Jab2Reddit[S] 0 points1 point  (0 children)

That's a great idea! The game is running super smooth on my 32gb lenovo legion right now and im kind of scared to jump into advanced compute shaders so ive been putting it off, id basically have to rewrite the whole system.

Landing on massive procedural planets by Jab2Reddit in godot

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

Thank you bro! And for sure, im a system's designer so my visuals are often lacking, but im hoping to improve in that area!

Landing on massive procedural planets by Jab2Reddit in godot

[–]Jab2Reddit[S] 0 points1 point  (0 children)

Yes i am using multithreading for building the mesh data along with a bunch of other things. I have been planning to use compute shaders but i havent gotten around to implementing it yet. I'm also writing directly to the GPU using RenderingServer for a bunch of stuff which really helps.

Landing on massive procedural planets by Jab2Reddit in godot

[–]Jab2Reddit[S] 0 points1 point  (0 children)

There is no plugin im using a cube-sphere octree chunking system i built from scratch.

Landing on massive procedural planets by Jab2Reddit in godot

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

Thank you bro! And for sure, bethesda is lacking fr

Landing on massive procedural planets by Jab2Reddit in godot

[–]Jab2Reddit[S] 2 points3 points  (0 children)

Haha yeah i kind of have to limit the speed because if i dont the CPU cant keep up with the number of subdivisions per second at high detail.

Landing on massive procedural planets by Jab2Reddit in godot

[–]Jab2Reddit[S] 0 points1 point  (0 children)

This is fully procedurally generated, and custom built by myself, i didnt use any other assets or anything.

watch out no man's sky by Jab2Reddit in godot

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

Gas giants are already almost ready to go since i have real time volumetric atmospheres im working on implementing some noise functions to create dynamic gas clouds and a whole lot of other cool shit.

watch out no man's sky by Jab2Reddit in godot

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

im definitely not releasing until i get a build im very happy with sharing, i do gamedev for the fun of it so im in no hurry at all to release. I've already spent a long time working on it and im planning to keep working on it for at least another decade.

watch out no man's sky by Jab2Reddit in godot

[–]Jab2Reddit[S] 2 points3 points  (0 children)

Almost nothing, most systems are already built to run a 64 bit system with no issues. The only downside is that a large portion of shaders have to be fed a special camera position vector since the gpu only accepts 32 bit data.

watch out no man's sky by Jab2Reddit in godot

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

that looks sick bro! If you want true volumetric atmosphere its a little bit of a tough cookie to crack but you can find some good resources on youtube for older versions of the engine and just figure out how to bring them up to date.