proceduralgeneration | Unsorted

Telegram-канал proceduralgeneration - procedural generation

99

Created by @r_channels

Subscribe to a channel

procedural generation

Beginnings of my procedural dungeon generator. What do you think?
https://redd.it/18r18i2
@proceduralgeneration

Читать полностью…

procedural generation

Random Directions To Follow

https://redd.it/18roac1
@proceduralgeneration

Читать полностью…

procedural generation

Finding Local maxima in 2D perlin noise
https://youtu.be/LWFzPP8ZbdU?si=mzsX9ktjZfbktL8V

https://redd.it/18rrkc3
@proceduralgeneration

Читать полностью…

procedural generation

What framework or program with low level control to create procedural games with?

I want to make procedural simulations and procedural games, but I only know of game engines like unity and godot or writing vulkan code myself. Is there a better way with low level control but less boilerplate?

https://redd.it/18qkyln
@proceduralgeneration

Читать полностью…

procedural generation

Merry Christmas Everyone! 🎄

https://redd.it/18qgms8
@proceduralgeneration

Читать полностью…

procedural generation

Whilst procedurally generating arches in the procgen editor / engine side-project I stumbled across the "Tesla CyberTrukk Arch"
https://redd.it/18pbzd4
@proceduralgeneration

Читать полностью…

procedural generation

Procedurally generated Aurora (Northern Lights)
https://www.youtube.com/watch?v=BOZRhO35x1g

https://redd.it/18p75ln
@proceduralgeneration

Читать полностью…

procedural generation

Been thinking about procedural slime mold
https://redd.it/18otinx
@proceduralgeneration

Читать полностью…

procedural generation

Generating Houses / Floor Plans

Hello,
I am trying to generate floor plans for houses procedurally. I need this for a small game.
My idea is basically to create houses from a few rules. The rules are something like. There is always a first floor. Second floor and basement is optional. There are room types that can only spawn in the basement, there are other that have to always be included and there are is a large pool of optional rooms. Then there are special optional rooms that can only be next to some other rooms.


As an example: There is always a bedroom. A bedroom CAN have an optional wardrobe room and/or a bathroom. Or another example there have to be a living room and a kitchen. But they can as well be put together into one large room.


I will make such rules for all my rooms. But from here i have no idea how to procede. I could just use BSP but then the rooms will be to much like a maze and all rectangular. Or i could just make a hallway and generate rooms next to it. I also have the problem that the house has to have a layout. So the second level can not be much larger than the first one. But then again when i generate the floor plan first, and then decide how the rooms are placed in the layout, it could result in not enough space for all rooms on one of the floors.


For now i think BSP fits best. But i dont know how to solve the problem with the hallways and how to make the houses look natural. I also dont want all houses to be a rectangle.


Does anyone have some tips for me?


https://redd.it/18oaxvv
@proceduralgeneration

Читать полностью…

procedural generation

AI Odyssey - Playable game levels generated by AI in real time
https://laby.ai/ai-odyssey

https://redd.it/18ns98c
@proceduralgeneration

Читать полностью…

procedural generation

Procedural character printer

https://redd.it/18nkai8
@proceduralgeneration

Читать полностью…

procedural generation

A walk with nice mountain vistas

https://redd.it/18mph4u
@proceduralgeneration

Читать полностью…

procedural generation

At twenty steps rivers are already forming and I have not yet programmed the water to carve the ground. Interesting... This model I started in Blender just playing with Geonodes, and now I have 'ported' it to Python. I am keeping it on a GPL 3.0 Licence and will share the Git repo in future.

https://redd.it/18m9sc9
@proceduralgeneration

Читать полностью…

procedural generation

How finding parking during Christmas shopping are like
https://redd.it/18lp35e
@proceduralgeneration

Читать полностью…

procedural generation

Gif of weigert's new procedural generation for meandering rivers.
https://redd.it/18kpj3d
@proceduralgeneration

Читать полностью…

procedural generation

Procedural Trees

demo here: https://addisonprairie.github.io/Tree-Generator/

https://preview.redd.it/uqsmguu1tp8c1.png?width=800&format=png&auto=webp&s=c60b633258ba005d43c86219ab7ed5185a4e994e

https://redd.it/18rk1lr
@proceduralgeneration

Читать полностью…

procedural generation

consistently distort voronoi edges

I am creating an endless voronoi city using threejs. So far, all i can calculate is whether a given vertex is a road or a city block. it looks like this:

https://preview.redd.it/df3g159ios8c1.png?width=1447&format=png&auto=webp&s=7bed235e081f49d6510e066b6e2f37b81a1ffec3

i want to distort the roads using perlin noise, so they are windy rather than straight. However, when i try to do this (by adding a perlin noise generated value to the x and y of currentVertex), it seems to mess up the road width. I need the road width to stay consistent.

Here is my script. What is the best way to make my roads curvy?

export const getVertexData = (x: number, y: number) => {
const gridSize = 300;
const roadWidth = 20;
const currentGrid = Math.floor(x / gridSize), Math.floor(y / gridSize);
var points = ;

for (let ix = currentGrid0 - 1; ix <= currentGrid0 + 1; ix++) {
for (let iy = currentGrid1 - 1; iy <= currentGrid1 + 1; iy++) {
var pointX = math.seedrand(ix + "X" + iy);
var pointY = math.seedrand(ix + "Y" + iy);
var point = new THREE.Vector3(
(ix + pointX) gridSize,
(iy + pointY)
gridSize,
0
);
points.push(point);
}
}

var currentVertex = new THREE.Vector3(x, y, 0);
points.sort((a, b) => {
var distanceA = currentVertex.distanceTo(new THREE.Vector3(a.x, a.y, 0));
var distanceB = currentVertex.distanceTo(new THREE.Vector3(b.x, b.y, 0));

return distanceA - distanceB;
});
var closest = points0;

for (
let ix = currentVertex.x - roadWidth;
ix < currentVertex.x + roadWidth;
ix += roadWidth
) {
for (
let iy = currentVertex.y - roadWidth;
iy < currentVertex.y + roadWidth;
iy += roadWidth
) {
var nearbyVertex = new THREE.Vector3(ix, iy, 0);
points.sort((a, b) => {
var distanceA = nearbyVertex.distanceTo(new THREE.Vector3(a.x, a.y, 0));
var distanceB = nearbyVertex.distanceTo(new THREE.Vector3(b.x, b.y, 0));

return distanceA - distanceB;
});
var neighborClosest = points0;

if (closest != neighborClosest) return "road";
}
}

return "block";
};

Edit: while noise-based curvature is preferred, if it's way easier to curve the roads with a sine wave rather than perlin noise, i am open to that option as well.

https://redd.it/18rvlf0
@proceduralgeneration

Читать полностью…

procedural generation

Wake up babe, 21 of the 97,000,000 proc gen races just dropped
https://redd.it/18r9m5j
@proceduralgeneration

Читать полностью…

procedural generation

Fractal Xmas Tree ∞

https://redd.it/18qhpal
@proceduralgeneration

Читать полностью…

procedural generation

Glass Destruction with Slow Motion In Houdini | Houdini Tutorial
https://youtu.be/Fh-xCSRA3-0

https://redd.it/18p7juk
@proceduralgeneration

Читать полностью…

procedural generation

Happy Procedural Holidays ∞

https://redd.it/18p8bod
@proceduralgeneration

Читать полностью…

procedural generation

How do these tools generate these floor plans?

I should start off by saying I appreciate these are complex demos, so I'm not looking for an end to end breakdown. But I am curious to hear any insight anyone has.

A couple from Finch 3d: first, second

One from PlanFinder: here

I am particularly curious about:

- Constraining key objects in a room (e.g. a bed) by the room size. Notice how in some of the examples, the beds change from double to single to accommodate room size
- Resizing a wall doesn't cause an entirely new arrangement, leading me to believe this isn't randomly densly packed items. For example, Finch's first video has a kitchen table in the middle bottom room which seems stuck to the left wall but resizes as necessary. Eventually disappearing.
- Both plans seem to not rely on "room types". PlanFinder turns the room into a studio when it's small enough, and Finch has an open plan kitchen that is affecting the amount of sofa chairs.
- They are both very fast indicating to me the resizing is causing incremental updates (rather than a full recalculation of positions)

Anyone have any insights into the techniques that may be being used here? The person behind Finch mentioned their patented graph technology. But I'm not entirely sure I understand what that implies from a technical standpoint.

https://redd.it/18ovify
@proceduralgeneration

Читать полностью…

procedural generation

Possible of interest from Factorio

https://www.reddit.com/r/factorio/comments/18odbxu/friday_facts_390_noise_expressions_20/?utm_source=share&amp;utm_medium=mweb3x&amp;utm_name=mweb3xcss&amp;utm_term=1&amp;utm_content=share_button

https://redd.it/18ofn4l
@proceduralgeneration

Читать полностью…

procedural generation

Took inspiration from Pinterest and made some new models for this video!!!

https://redd.it/18o6zqq
@proceduralgeneration

Читать полностью…

procedural generation

Houdini.FairMarket.Land needs You!

Hi Procedural enthusiasts!

After the recent opening of Blender's hub thanks to some awesome creators, Houdini hub on FairMarket.Land is looking for Procedural Setups to be published on it!

If you're willing to find a place where your setups can be purchased at a Fair Price regarding country of purchase, your search is over :D

I invite you to discover FairMarket.Land's Philosophy page to learn more about it.

Don't hesitate to reach out if you have any questions!

Cheers!

https://redd.it/18nkl0c
@proceduralgeneration

Читать полностью…

procedural generation

Procedural Paper Stars (babylon.js/paper.js/lasercutter)

https://redd.it/18n23yd
@proceduralgeneration

Читать полностью…

procedural generation

Bi-product
https://redd.it/18mhch0
@proceduralgeneration

Читать полностью…

procedural generation

Around The World, Part 8: Seasons - generating a different weather pattern for each season
https://frozenfractal.com/blog/2023/12/19/around-the-world-8-seasons/

https://redd.it/18m1hor
@proceduralgeneration

Читать полностью…

procedural generation

Procedural planet with Unreal Engine 5

Hey guys.

I made a small project with Unreal Engine 5, experimenting to see what's possible for a space game. And here's the result: https://www.youtube.com/watch?v=tp2xak-ISVE

The technique used is the inflated cube technique, I use a quad tree for LOD, and the nice atmosphere is using the built-in UE Sky Atmosphere.

Let me know what you guys think of it !

https://redd.it/18kyo61
@proceduralgeneration

Читать полностью…

procedural generation

Procedurally generated mazes with hexagonal or square grid cells in my game Steinstern - check out the demo!

Hello, i'm making a game (a top-down space shooter) that features proc-gen maze levels.

here's how the generation currently works:

1. in the beginning of the generation a maze is created by always picking a random cell and break the walls to one of its neighbors.

2. when all cells are connected the path from the start cell to the end cell is checked to meet a certain threshold. if not, generation is restarted from the beginning.

3. doors are then added along the 'solution path', attempting to be spread out equally based on the sizes if the 'rooms'.

4. random walls get deleted in the rooms (only if they do not connect to another room)

5. locks for the doors are added in each room at positions far away from both doors.

i'm quite happy with the results. the mazes offer a good amount of variety and every level feels fresh with often times unexpected (but fun) results.
at first i only had square grid cells and recently added hexagonal cells, which play even more interesting, i think.

Please check out the preview of my game and let me know what you think about it (just speak up, i think i can handle it)
https://steinstern.itch.io/steinstern

https://redd.it/18kfgeo
@proceduralgeneration

Читать полностью…
Subscribe to a channel