[USER=“28980”][/USER] Are you still going to post a tutorial how to create a larger City Scene in DA? I cannot figure out how to add the Larger buildings and create a City Block. I been trying to figure out how to make this happen. Any help would be appreciated.
I appreciate you taking time to respond. The Procedural Growth Network looks really neat (and kind of creepy). Working with Procedural Meshes is definitely on my to list. I’m a blueprints scripter so ill have to figure out how to translate the C++ into a blueprints equivalent.
I have a problem with dungeon selector logic. I would like to do traces to determine the space between the dungeon and landscape however because the selector BP is not an actor child the trace functions are not available.
Does anyone know how i can make the trace functions available in the selector BP?
I currently use SnapBuilder level generation (as I have much more control over the rooms compared to gridbuilder - and I need this for a topdown view game).
The level generation with the Blueprint version of SnapDungeonBuilder works ok and is fast, but I wonder if this is further in developement.
The SnapBuilder version stitching rooms defined as levels does not work, is VERY slow and crashes unreal editor way too often!
So will the blueprint version SnapDungeonBuilder be developed any further? I really need options for limiting rotation of rooms that I read about a year or so…
Setting Side Branches > 0 does not work at all … the rooms overlap all the time.
And the SnapConnectors show the little red arrow not at the origin of the actor - I don’t know why.
I pored through the engine code tried a few different approaches for the snap builder crash issues but I still seem to be doing something wrong It crashes due to a invalid memory reference while the engine tries to tick the level’s callback function.
I’ll continue working on this and update tomorrow on the status
As I said … the version using Blueprint as their “rooms” is working OK for me - no crashes and fast generation (compared to the level stiching version WAY faster).
And the problem designing those Blueprint can be perfectly solved by using the Prefab addon from the Marketplace. You actually design the Blueprints in the level editor of Unreal - works good.
But the DA side need some bugfixing and a little more features (as I described above).
What’s also needed is the ability to suppress some actor types from the Blueprints (if this is possible) and the ability to restrict some “rooms” to occur only once (or a definable amount) - no one want’s 2 boss rooms of the same type in one level
And rooms occurring in an exact order would be nice for gameplay, too.
Sorry for reviving this old response, first of all thank you very much to Konflict for his response, it completely fixed my reported bug.@, did you found something wrong with this fixes? I’m asking because I plan to use this feature and it’s not very usefull in it’s broken state. I’d love it if this fix made it into the code so we don’t have to keep track of fixes we make and merge every time a new update gets released.
I’m also using the Blueprint version of Snap dungeon to great effect! Works really well for my game that needs some crazy types of room placement (very vertical gameplay that normal dungeons can’t build.)
Lars - which Prefab addon are you talking about? Sounds helpful!
I concur with some features that would take Snap dungeon to the next level:
a way to weight or limit rooms to avoid too many of the same (Lars, how I’m doing it is a Boss room would only be an End room in a level, so you’d only have one, or you build a level chunk that can turn itself into a non-boss room if one had already been spawned
a way to prevent the same room from attaching multiple times in a row (sometimes I get the same room 3-4 times in a row and want to avoid that)
For my game, those two things and a general stability pass and I think SnapDungeon would be shippable! I wrote my own method of using HISMs with SnapDungeon and it works pretty well, but I guess HISM support would also help
Just tried to add this to my new project and I get a crash instantly on the editor. The crash is related to some deep engine code with UI updates to the editor. It does not happen on a fresh new project, however we are using “gameAbilities” from the paragaon and fortnite system. Possible conflict there?
Assertion failed: (Index >= 0) & (Index < ArrayNum) [File:D:\Build++UE4+Release-4.18+Compile\Sync\Engine\Source\Runtime\Core\Public\Containers/Array.h] [Line: 610] Array index out of bounds: 3 from an array of size 1
@Laurentius Lars, Thanks for the feedback. Earlier, I found designing in the blueprint editor to be a pain, but like you say, the Prefab tool seems to fix that. I’ll try to support both by abstracting the module source (blueprint or level module)
are some of the Pros and Cons of each one:
Blueprint Based Snap builder
Fast generation (in editor)
Fast generation (at runtime)
Stable (in editor)
Stable (at runtime)
No level streaming
No lightmapping
No BSP Brushes
No foliage (BP doesn’t support it)
No vertex painting (?)
Level map based Snap Builder - Slow generation (in editor)
Fast generation (at runtime) - Unstable (in editor)
Stable (at runtime)
Level streaming
Lightmapping support
Folliage support
Vertex painting support
BSP Brushes
Going with the level based modules has a lot of advantages, once the stability and build performance issues are sorted out. (especially the level streaming and lightmap support for VR and mobile)
A blueprint based sample game created using free assets (infinity blade + soul caves). The video above has some third party assets which I’ll replace with free version (gun, projectiles)
It has animation blueprints and AI for the NPCs found in the Infinity Blade Adversary pack
There’s also a minimap setup. It is first generated by a simpler theme file, then the scene capture actor captures it in a large texture and the minimap dungeon is destroyed. There’s a widget that takes care of panning the minimap texture as the player moves and rotating the player’s icon
I am also very interested in the Level map based Snap Builder. The big disadvantage of the BP based snap builder and the prefab tool is that they do not support landscape. It would be seriously great to stitch together sections of landscape with the Snap Builder.