Comments

Log in with itch.io to leave a comment.

Viewing most recent comments 44 to 83 of 302 · Next page · Previous page · First page · Last page
(+1)

Amazing work!

Thank you!

(+1)

Does anyone have a code i can copy that looks like jupiter?

no

(+1)

This tool is incredible. 

I am working on a space monopoly-esque browser game. 

I imported your Planets folder into my game, mounted one on the board to see how it looked, and it's freaking amazing. I will be attributing you big time on these, hands down you'll bring our circle graphics to AAA pixel game graphics :D 

But, when I export it to web, they don't render, and they output a ton of console logs in my browser.

If I want to use this in my own project, should I instead just be using the shaders?

Thanks for the help :) 

(+1)

Ah, I think I found the problem. I was targetting GLES2. 
Since you are a god of shading, I'm curious if you know off-hand what functions / vars you're using that would be breaking on GLES2 web?

Glad you like the tool! Weird that it doesn't work. I did some testing for and it seems like it doesn't like looping over non constants in GLES2. So you can either set the value directly in the loop by changing:
  for(int i = 0; i < OCTAVES ; i++) {
to:
  for(int i = 0; i < 5; i++) { // some number

Or you can change the octave declaration to be a constant:
  uniform int OCTAVES : hint_range(0, 20, 1);
to:
  const int OCTAVES  = 5; // some number

You'd have to do this for every shader you want to use. Hope that works!

(+1)

Wow thank you so much I just dove in to the source code, while also reading the entirety of the book of shaders. Look like you're right! I remember reading somewhere, WebGL1.0 can't do dynamic loops, they have to be fixed, and I found this myself :) Pretty proud of myself! haha. 

I'm going through one line at a time learning how your genius came up with this.

Thank you so much for looking in to this for me!

(+1)

Hey! I just released an update to our rendering engine using your tool! It looks so damn amazing. The game is so far from being ready to be put online, but feel free to check out what I did at https://prometheusgame.servegame.com/edit ! 

Mind you, you'll need to sign in with a gmail account at https://prometheusgame.servegame.com before the planets will load.

Still trying to figure out where I'll put your credits on this, but don't worry no one uses it yet except close family :P 

Awesome! Glad it all worked out. Don't worry about the credits too much haha, wherever is fine. Good luck with the game!

(+1)

Is it only me, or does the planet rotate too quickly when I download it with a spritesheet? Can I solve it somehow to make the planet's animation not as fast?
By the way, it's really cool!

Deleted 218 days ago

Glad you like it! How long it takes for it to rotate depends on how fast you play it back. I think in the preview it takes 50 seconds for a rotation, so at 60 fps you would need 50*60=3000 frames to play it back at that same speed. If you need very slow rotations I recommend using the shaders directly.

(+1)

Starfield Pixel Game here we go xD

(+1)

Now just for a release of Pixel Skyrim lol.

(+1)

Thank you! This was a big help for my top-down space shooter game. I was redoing the 8 planets of the solar system's art but then I found this to hurry up the process! This can do everything I need! I'll make sure to put this in the credits of the game.

Devlogs: Taco Shooter: The Final DEVLOGS by CoolGames.Co (itch.io)

Glad this was useful to you! Thanks for the credit and good luck with the game.

(+1)

Hey ! Really cool, simple and beautiful generator !
Do you plan to add a "Generate random" button ? For the extra surprises !

Thanks! There is already a random color and random seed button, do you mean just one button that scrambles everything?

Exactly yes ^^

(+1)

This tool is REALLY COOL !!!

Thank you!

(+1)

woaw, cool stuff! <3

Thank you!

(+1)

These are really cool! love it!

Glad you like em!

(+1)

Hey! Do you have any plans for additional Pixel Generators?

I'd get a lot of use out of a Continent/City generator.

I do have some ideas, I have a WIP for a pixel spaceship generator, but still working on improving that. A continent or maybe a map generator is actually pretty interesting also. Thanks for the suggestions!

(+1)

very good, anyone know if we can remove the clouds from the wet planrt and island planet?

(+1)

Thank you! You can remove the clouds by clicking on  "layers" and toggling the layers you don't need.

(+1)

For anybody that wants a smoother looking animation, I find that you can ramp up the pixel rate to 2000 before the animation starts to lag.

Good to know, If you want to go beyond that without any lag you can also use the shaders directly to have any pixel rate. That might require a bit more knowledge of shaders though.

(+1)

So amazing, can i embed your generator into my game? 

Thank you! You can, but if you want to embed the entire generator then please give credit to this page.

(+1)

Does MIT license mean i can use i can use it for commercial android game ? I will credit you, of course, this thing is awesome!

Yes, you can do that under the MIT license. Looking forward to seeing what you do with it!

(+1)

Using these amazing shaders for planets in my game: Arcadium - Space Odyssey. Thank you!

(https://store.steampowered.com/app/2352670/Arcadium__Space_Odyssey/)

Wow, that looks really awesome!  You really made the shaders look beautiful.
Great job on the game, I'll definitely check it out!

(+1)

This is awesome !! 

Thank you! glad you enjoy!

(+1)

How do you add rings to an Islands-Type planet?

Currently the ring only works for one of the gas planet types, in a future update I'll change it so that it can be enabled for any planet type.

(+1)

This is absolutely AMAZING!!!
I was about to start working on a planet generator using perlin noise until I came across this beauty.
Thank you my friend, you gave me a lot of inspiration to start.

Glad you enjoy, would love to see your result if you decide to make your own generator!

(+1)

Hey I'm trying to use these shaders in Godot 4. They all work fine accept for the IceWorld's `Lakes` shader, which is now coloring the box that contains the planet (see screenshot). The shader code from Godot 3 -> 4 is identical aside from the the 3 colors in the shader being defined as `source_color` instead of `hint_color`.

I don't know anywhere near enough about shaders to troubleshoot this myself, so I'm hoping you might understand why this is happening, and maybe be able to provide me with a quick fix?

Cheers!

(+1)

Hey. thanks for letting me know. Here's a quick little fix:  

  • Click on the "shader" button to see the shader code.
  • Add this line: "float d_circle = distance(uv, vec2(0.5));" on line 74. Just before the line "uv = spherify(uv);".
  • On line 96, replace "a *= step(distance(vec2(0.5), uv), 0.5);" with the line "a *= step(d_circle, 0.5);"

I just tested it and that works for me. It's actually a mistake I made in the original shader code, but it seems like godot 3 handles it different than 4.

Hope that helps!

It does, thank you!

(2 edits) (+1)

can I use the source code in my game and edit it, and thank you

Yes, feel free to use the source code and shaders for your game

(+1)

Thank you very much I really appreciate this

(+1)

I loved this so much that I used it in my demo! 
This will be credited of course. 

I took the sprite png for my animations. It had to juggle between frames and imagesize to get the right quality, but it still look great. 

Thank you!

(https://loodico.itch.io/little-green-planet)

Glad you like it! Yeah juggling between quality and size is always a bit of a challenge.
Great job on the demo/game, looks awesome!

Thanks!

(+1)

Nice generator.   The following suggestions are provided.

1.   Add a hint to spawn: The number of frames it takes for the planet to make one revolution.   Games often require continuously rotating planets, but the number of frames generated is often not enough to make the planet rotate perfectly 360 degrees, and the user of this generator has no way of knowing how many frames it will take.

2.  "star" planets generate with a lot of white space around them, which is different from other planets, maybe this is a bug.

Thank you for the suggestions! The planet should always make exactly one full rotation, regardless of number of frames. If you increase the amount of frames it will simply make the animation more smooth, but still one rotation. You're right on the amount of white space for a star, it's due to the way the generator is programmed. I haven't really seen it as a problem, but if it's an issue I can try a fix.
Thanks for the feedback, appreciate it!

(+1)

Is a MacOS version possible?

Unfortunately not anymore, due to some changes it's now required I own a Mac to build the app, and I don't own one.

(+1)

This is amazing, keep it up!

Thank you!

(+1)

I already broke it by adding 2 more zeros to the 100 in the pixels textbox lmao but its very cool!!!

Haha, yeah that's a little bug with the rng. I think any number ending in multiple zeroes has that issue.

(+1)

Oooh this is so amazing! I was working on a retro galaxy map for a sci-fi dnd campaign and had some basic planets drawn up, but these are 20x better. Thank you so much for sharing this!

Really glad you enjoy it, hope they work well in your campaign! Thanks!

(+2)

Have you tried migrating this project to Godot 4?

Not yet, I might soon, but don't have a good reason for it right now. The shaders themselves should work fine in godot 4 at least.

(2 edits) (+1)

Yeah I gave it a go and got it mostly working. There are issues with exporting gifs and the javascript downloading so I removed them. I was left with a weird tiling and sizing issue, but it seemed to generate planets just fine.

If you're interested I can fork the repo and share my changes.

Okay thanks, good to know. Yes the forked repo would be useful, would be interested in seeing that.

(+1)

Sorry for the delay. Here's the repository https://github.com/jacob-winkler/pixel-planets-godot4

No worries, thank you very much for the repo. Really appreciate it!
I'll take a look at the gifs and tiling. Might also just leave it as a Godot 3.0 project if it's too much of a hassle though.

(1 edit) (+1)

Needed planets for my 2D space game (being built in Godot). Googled: "pixel planet generator". Clicked the first link. Jaw dropped.

Amazing how well I believe this going to suit my needs. Huge cheers to you for making this project free. I'll be sure to donate if I ever make any money I swear it lol

Haha, amazing that you searched for the exact project by accident. Glad you like it, hope you can make some good use of it!

(+1)

Hello, I absolutely love this and i've used it many times, but something I recommend that would make getting what you want alot easier, is making an option to choose what tpye of something you want like for stars you could say like, generic star, neutron star, red giant, stuff like that. And maybe for galaxies, there could be, ring galaxy spiral galaxy.

Hey, glad you like it! Yeah more types would be cool, it does take some time to create each one so not sure if I want to add that many. Thanks for the suggestion though!

(+2)

Hello. im a proto-dev (aka basic game developer that has no-code experience)

Hi :)

i wanted to make a full version of Deep space.

with new weapons.

bosses.

and Enamies.

so as planets.

Sounds awesome! Might require some coding experience, but you can learn while you try to make something like that.

(1 edit) (-1)

For the greater good. i swaped my Game engine from gdevelop to Gamemaker studio 

-Terragold.

With my Ai named Dan, (or youchat (also known as a copy of chatgpt))

(+1)

uh is there a mac port, and if here is i can't find it cause i kinda wanna export it yet i can't do that in the browser thingy

There was a Mac port but unfortunately I had to remove it as I could no longer notarize the export from my windows machine. Maybe newer versions of godot do something about that, but I haven't looked yet.

(+1)

Is it possible to put a camera to move sideways? To make a side view boulder like in "Rick Dangerous": 

 

No, unfortunately because of the way the planet is generated you can't rotate it that way. however if you want to change the lighting you can just click/hold mouse on the planet where you want the light to be.

(+2)

Nice !

(+1)

thanks!

(+2)

Hey! Amazing tool! Really saves a lot of time. Is it possible to add a seed for colors? Could be a chain of the actual color hexes. Example for a 2 color planet with black and white: FFFFFF000000

It would save us even more time. 

Hi, glad you like it! So you mean a way to import/export colors? Yeah I think that could be a nice addition, I'll put that in a next update.

Yes, exactly! Amazing implication! Thank you!

(+1)

Very great tool, planet looks very cute and ready to be used in any sci-fi game (cut scene, intro/outro, background, scenery), I can't even believe what I see as being randomly generated ! Great job and congratulations on keep the will to continue improving it over and over.

There is still work to do on asteroids which looks mostly odd for now.

I've started years ago to create such tool for one of my project, didn't go too far and I got something like this: 

with using only blue color for this sample (Perlin noise), with MonoGame in C#. I've plan to add atmosphere but never did it.

Thank you! Yes it's really cool what can be achieved with just some simple noise and coordinate transformations. I guess the asteroids don't really fit because they don't looks as 3 dimensional.

(+1)

This is sick~ Love it :D

thanks, glad you like it!

(+1)

this is really nice

thanks!

(+1)

what happend to bieng able to make space

I think you're looking for this project? https://deep-fold.itch.io/space-background-generator

(+1)

thanks!(bit late aint i)

haha no worries

(1 edit) (+1)

Thank you this is amazing for my game. How did you manage to slow down the sprite animation like that and be smooth? 

Glad you enjoy it! The reason the animation is slow in the program is because it's rendered through a shader. So it actually just renders a new sprite every frame. If you want that same smoothness you probably have to use the shader files themselves in whatever engine you are using, they are available in the source. Otherwise you have to export a high number of frames in a spritesheet, and then loop through those at 60 fps.

(1 edit) (+1)

Thank you very much! Also where can I learn to be master of shaders like you?

Haha, I still have a lot to learn with shaders. In order to get better at them I would say just practice a lot and try to make new stuff with shaders, you'll pick up a lot of tricks along the way. Also thanks for the credits, congrats on making a game!

(+1)

This is where I used your planets and I gave credit:

https://goldspark.itch.io/universe-prime 

(+1)

I really love the look of these planets and the customization is amazing!

I am wanting to use generated planets in a project of mine, my question is: how can I generate and save large quantities of pngs? How would I automate downloading hundreds of each planet type? It is important that I have the sprite sheets in storage, I cannot simply generate them dynamically based on a seed #.  I am not sure where to start.

Any help helps. Thanks!

Glad you like it! There is currently no way to batch export a bunch of planets, I'm not sure if I'm going to add that either. However you could use a macro program or something to automate randomizing and exporting a bunch of planet. Hope that helps!

Viewing most recent comments 44 to 83 of 302 · Next page · Previous page · First page · Last page