Generated from a seed at the center using 3-state CA & stylized with a gradient. Looks like a CPU under microscope
https://redd.it/12rbkjt
@proceduralgeneration
https://redd.it/12rbkjt
@proceduralgeneration
This media is not supported in your browser
VIEW IN TELEGRAM
Incredible displays of difficult and complex movements using Mocap Suit.
https://redd.it/12rd6hk
@proceduralgeneration
https://redd.it/12rd6hk
@proceduralgeneration
Media is too big
VIEW IN TELEGRAM
Developing procedural generation for my VR God Simulator game!
https://redd.it/12t6n5m
@proceduralgeneration
https://redd.it/12t6n5m
@proceduralgeneration
procedual generated track/ambient sounds eldritch
https://www.youtube.com/watch?v=u77vb-8mvqk
https://redd.it/12txprd
@proceduralgeneration
https://www.youtube.com/watch?v=u77vb-8mvqk
https://redd.it/12txprd
@proceduralgeneration
YouTube
Don't worry, he just wants to play (and harvest your soul)
Another randomly generated strange/unsetteling track, now with more eldritch content. I hope you like the new style. Of course there will be more relaxxing soundtracks soon but i kinda fell in love with the creepy ones.
Feel free to comment and subscripe.…
Feel free to comment and subscripe.…
Media is too big
VIEW IN TELEGRAM
Hooking up generative vector shapes to my Ableton instance
https://redd.it/12ua25j
@proceduralgeneration
https://redd.it/12ua25j
@proceduralgeneration
Added noise-based placement, terracing and increased the draw distance in the procedural generation city game engine side-project
Added noise-based placement, terracing and increased the draw distance in the procedural generation city game engine side-project: https://youtu.be/7KyO6fMvAWA
https://redd.it/12uzxin
@proceduralgeneration
Added noise-based placement, terracing and increased the draw distance in the procedural generation city game engine side-project: https://youtu.be/7KyO6fMvAWA
https://redd.it/12uzxin
@proceduralgeneration
YouTube
Terraced terrain, noise-based placement & greater draw distance
A quick preview of terraced terrain, noise-based placement and larger draw distance. Available here: https://benmorris.itch.io/sanctuary . Music is opening riff to Extreme's new single "Banshee" - https://youtu.be/gYQ6MIjoY_k
Unreal Procedural Voxel Generation - How to add details to terrain
Hello guys,
I've been scratching my head wit this one for about 2-3 days now. I have an Unreal game where i was able to setup Voxel Procedural generation for terrain generation that uses Perlin noise for height map. i was getting to the point of adding details to the terrain such as trees and shrubs and such and can't figure out how to go about it.
Because of how I have my chunk generation setup, I'm unable to localize details to a specific chunk (which act as the terrain type/biome) and can at best spread out details over the whole world space.
Please share any advice if you have any, thank you!
https://redd.it/12vjr99
@proceduralgeneration
Hello guys,
I've been scratching my head wit this one for about 2-3 days now. I have an Unreal game where i was able to setup Voxel Procedural generation for terrain generation that uses Perlin noise for height map. i was getting to the point of adding details to the terrain such as trees and shrubs and such and can't figure out how to go about it.
Because of how I have my chunk generation setup, I'm unable to localize details to a specific chunk (which act as the terrain type/biome) and can at best spread out details over the whole world space.
Please share any advice if you have any, thank you!
https://redd.it/12vjr99
@proceduralgeneration
Reddit
r/proceduralgeneration on Reddit: Unreal Procedural Voxel Generation - How to add details to terrain
Posted by u/BlakStar07 - No votes and no comments
Media is too big
VIEW IN TELEGRAM
"If You Stay With Me". New 80's sounding song generated by my TuneStar program. Please give improvement feedback if you don't like.
https://redd.it/12wveyw
@proceduralgeneration
https://redd.it/12wveyw
@proceduralgeneration
Adding deterministic path to procedurally generated map
Hello,
I am currently working with a team on a University project, right now we are creating 3D terrain visualization for a train simulator, the railway is provided for us from a database (it is deterministic) and terrain around it should be pseudo-randomly generated.
I am really new to Unity and 3D modelling in general, I read some some articles and watched some videos and decided to create the terrain using Perlin noise. It works great, but I have no idea how I would connect the railway to this terrain.
I was thinking about blending the heightmaps, but I am really unsure if that a way to go, if anyone could provide any resources or personal experience I would be really thankful!
https://redd.it/12x59bp
@proceduralgeneration
Hello,
I am currently working with a team on a University project, right now we are creating 3D terrain visualization for a train simulator, the railway is provided for us from a database (it is deterministic) and terrain around it should be pseudo-randomly generated.
I am really new to Unity and 3D modelling in general, I read some some articles and watched some videos and decided to create the terrain using Perlin noise. It works great, but I have no idea how I would connect the railway to this terrain.
I was thinking about blending the heightmaps, but I am really unsure if that a way to go, if anyone could provide any resources or personal experience I would be really thankful!
https://redd.it/12x59bp
@proceduralgeneration
Reddit
r/proceduralgeneration on Reddit: Adding deterministic path to procedurally generated map
Posted by u/Schrodl - No votes and no comments
Work in Progress on some semi-procedural dandelions. What do you think?
https://redd.it/12xz6gh
@proceduralgeneration
https://redd.it/12xz6gh
@proceduralgeneration
Algorithm suggestions for a 2D cave generation system with distinct hand-made terrain features
Hello, r/proceduralgeneration!
I recently started to develop a side-2D terraria-like underwater exploration game and need a robust procedural map generation to bump up the replayability. For now, I only speak about the "cave structure", no plants, resources, since that should be pretty easy to add with procedurally generated masks later.
I've tried several different methods to achieve what I want:
1. Noise-distorted voronoi diagram with simplex noise + fractional brownian noise.
2. Wave function collapse.
3. Cellular automata / cave generation (but that went pretty badly, I feel like I have no control on anything)
I actually got furthest with voronoi + simplex, and I got pretty convincing results so far. I still struggle with proper "biome blending", since right now it's pretty obvious where biomes start / end, but I imagine I could apply some smoothing to the voronoi diagram to make things a bit less jarring.
The biggest issue so far is how would I go about applying hand-made terrain features to such a noise-map? I thought about masks, but those wouldn't work for more complex features that interact with the cave walls or floors, like big spikes in the wall or something. I fear that the algorithm just isn't suitable for such a thing since everything is basically a multiplier on several noise values like freq/persistence/lacunarity, no easy way to actually control distinct areas manually.
My next bet was wave function collapse, I'm still very much a beginner in this kind of procedural generation, but it was kind of promising, since wfc is basically made for hand-made structures. Unfortunately I can't really achieve a nice, organic cave structure like I did with voronoi + simplex, and biomes are a much bigger beast to handle with wfc, but it's quite possible I just don't know enough about wfc.
I'd love some suggestions for algorithms that I could try since I'm pretty stuck right now. Thanks in advance!
https://redd.it/12ybj4x
@proceduralgeneration
Hello, r/proceduralgeneration!
I recently started to develop a side-2D terraria-like underwater exploration game and need a robust procedural map generation to bump up the replayability. For now, I only speak about the "cave structure", no plants, resources, since that should be pretty easy to add with procedurally generated masks later.
I've tried several different methods to achieve what I want:
1. Noise-distorted voronoi diagram with simplex noise + fractional brownian noise.
2. Wave function collapse.
3. Cellular automata / cave generation (but that went pretty badly, I feel like I have no control on anything)
I actually got furthest with voronoi + simplex, and I got pretty convincing results so far. I still struggle with proper "biome blending", since right now it's pretty obvious where biomes start / end, but I imagine I could apply some smoothing to the voronoi diagram to make things a bit less jarring.
The biggest issue so far is how would I go about applying hand-made terrain features to such a noise-map? I thought about masks, but those wouldn't work for more complex features that interact with the cave walls or floors, like big spikes in the wall or something. I fear that the algorithm just isn't suitable for such a thing since everything is basically a multiplier on several noise values like freq/persistence/lacunarity, no easy way to actually control distinct areas manually.
My next bet was wave function collapse, I'm still very much a beginner in this kind of procedural generation, but it was kind of promising, since wfc is basically made for hand-made structures. Unfortunately I can't really achieve a nice, organic cave structure like I did with voronoi + simplex, and biomes are a much bigger beast to handle with wfc, but it's quite possible I just don't know enough about wfc.
I'd love some suggestions for algorithms that I could try since I'm pretty stuck right now. Thanks in advance!
https://redd.it/12ybj4x
@proceduralgeneration
Reddit
r/proceduralgeneration on Reddit: Algorithm suggestions for a 2D cave generation system with distinct hand-made terrain features
Posted by u/SocketByte - No votes and no comments
Media is too big
VIEW IN TELEGRAM
I have been rendering my planet for a 4K calming orbit ambiance video (full 4K video in comments)
https://redd.it/12ykrzf
@proceduralgeneration
https://redd.it/12ykrzf
@proceduralgeneration