I love that the ships look more like "skyscrapers in space" then airplane like spaceships we usually see in tv shows/movies. This is most likely (according to multiple hard scifi authors) a much more realistic depiction of how spaceships are going to look like. Example given: The Expanse - "Flip and Burn" https://www.youtube.com/watch?v=X4EiW1bHwsQ
Spaceship Generator
51–60 of 132 posts
Re: Spaceship Generator
#52Re: Spaceship Generator
#53Add a skybox and a couple of simple particle effects in PlayCanvas.
And we have some WebGL spaceships :-)
Re: Spaceship Generator
#54There is an error in script. seed = 'tweer' obj = generate_spaceship(seed) Python can't redefine functions as variables. Seed is a function.
i'm not the author but i frequently code in python and am unable to understand what you're saying from that snipped of code. 1. you can overwrite everything in python 2. seed has been set to a string 3. obj uses the value of previously set 'seed' variable, which should be a string at that point. its not a good idea, like overwriting the id variable, but it should work... and just in case somebody wonders: its still p…
>>> from random import seed
>>> def f(): return seed(10)
>>> seed = 50
>>> f()
Traceback (most recent call last):
File "", line 1, in
f()
File "", line 1, in f
def f(): return seed(10)
TypeError: 'int' object is not callable
>>>
I haven't run the script, so take this with a grain of salt.EDIT: Since generate_spaceship is always called with an empty random_seed parameter, this error won't happen when the script is run.
Re: Spaceship Generator
#55Re: Spaceship Generator
#56Oh wow - I can procedurally generate 3D models ?!!! Blender tutorial needed :-)
Re: Spaceship Generator
#57Awesome stuff. Would love to see concept artists incorporating procedural generated assets in their workflow. Produce 100 samples like this, teach the computer which ones they prefer, produce 100 more, take a few and refine them by hand.
I like to use the ms reading on my stopwatch when I don't have anything else nearby. I'll draw up a few scales like inorganic organic, long short, heavily armed unarmed, and then get a 0-99 ms reading for each by pausing my stopwatch.
Edit: Example. https://www.instagram.com/p/BG0Gr5BRBs7/
The same can be done for character gen, scenario gen, life choices :), etc.
Re: Spaceship Generator
#58Sadly it doesn't seem to generate UVs for the models. But using the cube projection in Blender seems to do an OK job. Add a skybox and a couple of simple particle effects in PlayCanvas. And we have some WebGL spaceships :-) https://playcanv.as/p/kZtPZpnH/
Re: Spaceship Generator
#59Re: Spaceship Generator
#60Very cute, although the ships look samish (would probably be interesting to start with different base templates etc. Still, it's only a few steps away from "random British 1970s SF book cover".
Do you have a link to the book cover generator? Or is that a metaphor?