Just a thought, but is it feasible and possible to use DA just for foliage placing, can you align actors to a landscape? Would there be a performance difference, and or different results (more customized trees, ie. with extra branches attached, or hotspot with rocks surrounding certain trees )?
Announcement
Collapse
No announcement yet.
Dungeon Architect
Collapse
X
-
Originally posted by unit23 View PostJust a thought, but is it feasible and possible to use DA just for foliage placing, can you align actors to a landscape? Would there be a performance difference, and or different results (more customized trees, ie. with extra branches attached, or hotspot with rocks surrounding certain trees )?
Comment
-
As you can see there are some problems because of height variation directly at the border where a room meets a corridor.
The door is behind the stairs (and the navigation fails at this point), a torch is in the stairs mesh and the wall is higher than nessessary and is above the corner column.
How can I prevent this?
A good way would be to prevent a height difference directly at the room borders - could solve all the problems at once ... can I do that?
This is a runtime generated gridbuilder dungeon.
Edit: and how do I prevent generating a door directly at a corner - this does not look good, too.
Comment
-
Originally posted by Ali Akbar View PostThat is fixed in the hotfix.1
The spawn blueprint always spawns the actors at location (0,0,0) ...
If I set a breakpoint in the blueprint in the BeginPlay event, I can see that GetActorLocation always returns (0,0,0) when using a runtime generated gridbuilder dungeon.
It works correctly when building a static dungeon.
Comment
-
Originally posted by Ali Akbar View PostTry increasing stair connection tolerance from the default 3 to something higher like 6 or 10. 3 is too agressive with stairs
Here you can see a door blocked by stairs and even unreachable area because of the stairs.
And stairs going down into rooms look odd.
Is there really no way to allow stairs only inside corridors (maybe implement an integer value option to indicate how far from rooms a stair is allowed ;-))?
I think that could solve some problems with stairs.
Edit: only allow heightvariation in corridors with a distance to room tollerence value might be even betterLast edited by Laurentius; 11-19-2016, 01:40 PM.
Comment
-
Is there somewhere an example theme for house roofs?
I could prepare roofs i guess, will take a look at the angular example soon, roof examples
To create a house, i use the floor builder first, and for the final dungeon a lot of negation volumes, right? Or the city builder with premade buildings?Attached FilesLast edited by unit23; 11-19-2016, 04:46 PM.
Comment
-
Hi Ali,
Issue with fence separators and half-walls. There's a bug where a fence separator, a half-wall separator and a half-wall is emitted but no fence. It's rather odd and I suspect it's just gone unnoticed. I'd like to see the fence separator removed so that only the half-wall and half-wall separators are emitted but I could live with the fence being emitted as well. One other thing, it seems to flip the fence separator in odd ways depending on whether it's a corridor or a room. I'm not clear on that though, so take it with a grain of salt. I've attached a screenshot to demonstrate.
The settings that you see are all that you need to reproduce. I've doubled (or tripled) the scaling on the fence and fence separators to make them visible. As you can see, you get half-walls, half-wall separators and fence separators but no fence. Best option for me would be to remove the emission of the fence separator in this case.
Thanks.
Comment
-
So I gave it another try to get a working (playable) solution for my entrance/exit room problem with the GridBuilderDungeon (for runtime dungeon creation) I described in this post in this thread for the weekend. (https://forums.unrealengine.com/show...l=1#post615096)
Short summary of the missing requirements I have for the entrance and exit rooms:
- I need to place the meshes for the stairs at a wall (length around GridCellSize * 3) that has no doors that would be blocked
- I need a non playable area behind the stairs of around GridCellSize * 2 (TopDown view - the player must not stand behind the stairs meshes)
- the rooms must not be disconnected from the rest of the dungeon
I made a DungeonEventListener (OnDungeonLayoutBuild event) and created two ThemeReplaceVolumes (for displaying the stairs up/down meshes) that cover the furthes rooms in the dungeon, a MarkerReplaceVolume (for stairs down at the north wall - to get rid of the ground meshes and one wall) and two NegationVolumes (just behind the rooms north wall at width of the room - to get empty space behind the rooms).
All these are placed at runtime or manually build with a random seed at the correct location and scale - good.
And I made separate themes for the normal dungeon, the entrance (stairs up) and the exit (stairs down).
If I create a dungeon with some seeds I get a playable dungeon that looks good (after rechecking "Realtime Update" for the volumes and destroying and builing the dungeon with the same seed again). But many seeds will be unplayable.
Here are the problems:
1. NegationVolumes can sometimes make the rooms separated from the rest of the dungeon. (the player can't reach entrance or exit)
2. NegationVolumes and MarkerReplace are only active after the dungeon is build and "Realtime Update" is manually rechecked once - without rechecking the volumes are shown at the correct location but have no effect at their new bounds but on the last random dungeons bounds. (e.g. the stairs going down are blocked by floor meshes that the MarkerReplaceVolume should suppress)
3. I believe there are some remains of older volumes (ThemeReplace, MarkerReplace and NegationVolumes) in the dungeon even after "Destroy Dungeon" and "Build Dungeon" is clicked with a new seed - the new bounds and older bounds of the volumes can be seen - really weird ^^
4. Sometimes a theme is not replaced correctly - the stairs meshes are ok but not the door meshes (I can see this as my entrance and exit room themes have different doors). Rechecking "Realtime Update" for the theme volume AND "Destroy" AND "Build" the dungeon helps here.
Questions:
I there a way to force an update of the volumes in a blueprint?
How can I reconnect rooms that are separated by NegationVolumes?
Is "OnDungeonLayoutBuild" the right place to capture the rooms bounds and set my volumes?
I made some test with additional PlatformVolumes to reconnect separated rooms - but separated rooms by NegationVolumes won't reconnect that way.
Any help would be great.
Thanks.
BTW: the spawner blueprint problem still persists ;-)
Edit: a NavMeshVolume automatically created around the whole dungeon has similar problems like the other volumes and does not always work (I have to make I little manual ajustment to e.g. the scale and it works again ...)Last edited by Laurentius; 11-20-2016, 04:58 PM.
- 1 like
Comment
-
Originally posted by Laurentius View PostEdit: a NavMeshVolume automatically created around the whole dungeon has similar problems like the other volumes and does not always work (I have to make I little manual ajustment to e.g. the scale and it works again ...)
Comment
-
Originally posted by unit23 View PostThis might be a long standing Unreal issue. Sometimes (often after crash?), AI does not move, but with a tick to the navmesh volume, the navmesh volume works again, and so does the AI. I think it affects static and dynmaic nav mesh generation.
But you're right - I had more problems with navmeshes not working - I had to delete the RecastNavMesh actor or even the whole volume to make it work again.
Comment
Comment