Update on the tests.
By doing this source code change (in 4.18) ive been able to use the generator without crashing. Im going to try to use it on much more complicated and bigger cases, will return with results.
#line 2354 in World.cpp, function RemoveFromWorld
....
// Remove any pawns from the pawn list that are about to be streamed out
for( FConstPawnIterator Iterator = GetPawnIterator(); Iterator; ++Iterator )
{
APawn* Pawn = Iterator->Get();
if (Pawn == nullptr) { continue; } // add this line
if (Pawn->IsInLevel(Level))
{
RemovePawn(Pawn);
--Iterator;
}
....
Is it possible for you to add similar functionality to DA: https://.unrealengine.com/en-US/blog/discover-how-frogwares-city-generator-is-saving-valuable-time-during-development-of-the-sinking-city (making roads semi-manually, and then generating buildings around the roads)
Iām having a hard time figuring out how to add light fixtures to walls. When I try to spawn lights together with a wall mesh, the lights sometimes are outside the map. Is there a way to get the āinsideā side of a wall, so I can attach torches etc?
And since you asked^^, i made a very short video to show you how i manage DA UI-wise:
watch?v=KDjHAqoJyps
Iām currently not working on my DA related code because i have great difficulties to have steam work as i want, so thatās the struggle of the moment
Next big step after steam will be to allow the players to manually paint dungeons, so iāll have to see how it works, whether i can replicate and save that, etc.
Again, i canāt insist enough on how much i love and am impressed with the work youāve done with DA.
By the way, as you are surely aware, a voxel plugin has recently been released on the MP, but i didnāt buy it yet, still impatiently hoping and waiting to see what Landscape Architect will become, i hope youāre still on it
I tried to make my own voxel engine, the same way i had tried to make my own dungeons before knowing about DA, technically it works but i do not have the skills you have to get some great and efficient results, so really waiting
Thanks a lot for all your work and the exceptionnal support you provide with it !
This is seriously incredible. I just purchased DA last night, and I have what I think is a rather odd goal for it. I want to use it to procedurally generate realistic looking top down maps of dungeons for my D&D group. My ultimate goal is to have maybe 10-12 themes that I can create (Fire dungeon, Icelands, , City/Village, Graveyard, etc) that (after the themes are set up) can be pretty speedily procedurally generated whenever the group heads to a new town or encounters a new dungeon/area.
I have pretty much no experience in ue4 (my only remotely close to comp sci experience is running pipelines using python), and so far Iāve only got the basics of making the theme, putting in walls and floors and rescaling, etc. so 's my question:
I saw for the unity based engine, there are premade themes you provide which look incredible (especially the interiors and graveyard ones)- are there premade themes for ue4 that are available in a download the assets and plug in the theme file kind of way?
Are there premade themes for DA in ue4 as there are in Unity? I have very little experience, and just bought this last night. I want to use it for something weird: battlemaps for my D&D group procedurally generated around the themes. Iām learning the basics of theme generation now (just got through room selection logic which is working nicely, (thanks for the tutorials!) but was hoping there are some ue4 versions of the unity templates Iāve seen (, Graveyard, etc) or something similar to get me up and running while I learn. Thanks for your time!
Iāve been trying to use the SnapMap and not having any success. I blocked out some simple levels with Snap Connection actors pointing outwards, enabled World Composition on all of them, avoiding for collision between modules, and only the first module is appearing. Is there any extra set up required to use this? Also, are their any features that arenāt supported (landscape, foliage, etc)?
Its possible to generate more house indoors like dungeons ? Like some kind of hall/corridor control the rest of the rooms layout, connected to this hall all of them ? Some kind of branches aswell can have rooms connected between rooms.
UE4 ships with some high quality free assets (called Infinity Blade assets). The above link as samples that use Infinity Bladeās assets and other free assets, along with some paid assets as well
@Hevedy Thereās a simple floorplan generator available based on bsp partitioning. I might end up implementing a node based system like this using tree maps: https://.hindawi.com/journals/ijcgt/2010/624817/