GridDungeonQuery->IsNearMarker. The body is commented out. This method will no longer ever return true. PropSockets on Builder class is protected. I see there is a GetMarkers method. I am guessing the code should have been updated to use this new method instead of the property.
[USER=ā15635ā]FS Creations[/USER], @elec2ron Thank you. It is not hooked with any builders/layout generators so you canāt create any levels yet. Iāll have more info on it in the next update
Trying to compile my project in 4.20 (using vs2017) gives me the following error:
2>F:/UE4_Install/UE_4.20/Engine/Plugins/Marketplace/DungeonArchitect/Source/DungeonArchitectRuntime/Public/Builders/SnapMap/Connection/SnapMapConnectionActor.h(22) : LogCompile: Error: An explicit Category specifier is required for any property exposed to the editor or Blueprints in an Engine module.
Edit: looked at the code, my guess is you need to add a category to this line:
I dug into how spriteInfo works and DisplayName is just a localized version of the Category name. Looks like itās not supposed to be different. They should either both be set to Dungeon or both be set to Snap Door and Connection Constraint. Alternatively just commenting those lines out helps too. This way the editor wonāt throw up an assert on startup.
/** Information about the sprite category */
USTRUCT()
struct FSpriteCategoryInfo
{
GENERATED_USTRUCT_BODY()
/** Sprite category that the component belongs to */
UPROPERTY()
FName Category;
/** Localized name of the sprite category */
UPROPERTY()
FText DisplayName;
/** Localized description of the sprite category */
UPROPERTY()
FText Description;
};
Thanks again for an amazing job. I know I asked something similar before but I asked two questions, 1 which I realized was kind of irrelevant. The only question that concerns me about the snap builder is if I can control how many times a module shows up?
I know itās not a feature available right now but could I, for example, add to the level blueprint some sort of check for the modules, that would replace a copy or something?
Hello, I was curious if you could tell me how to make a TransformLogic that allows me to make sure 1 side of a mesh is always facing āinwardsā. I have a wall mesh that is one sided and need to make sure the the material view-able side is always facing inwards towards the floor.
I have also tried making transform logic to move āwallsā that are rotated < 90 degreeās on the Z axis, this allows me to move a wall sideways only if its rotated a certain way, but the following blueprint seems to effect all ways regardless of rotation.
Anything you could do to help would be most appreciated.
Is 4.17.x no longer supported? Dungeon Architect caused a unknown issue in my project so I decided to try reinstalling the plugin but the launcher(and the marketplace description) says 4.17 is not compatible.
Oh, and in 4.18.3, if the dungeon is built with the āInstancedā flag checked, it disappears when played on a mobile device. It doesnāt matter whether it was built on design-time or runtime. DungeonInstancedStaticMeshActor just disappears.
If the āInstancedā flag is not checked(i.e. if the dungeon actor is consist of static meshes only), it doesnāt disappear.
It was working well on 4.17.2 with the old version of plugin, so I guess itās a bug.
++
Ran some test on 4.20 and the same thing happened. The DungeonInstancedMeshActor created in the editor gets destroyed(returns invalid) when played on mobile for some reason.
SnapMapBuilder āBuild Module Cacheā doesnāt seem to work for me - I get the āInvalid Snap Builder Module Dataā red warning message and it wonāt go away even when I click Build Model Cache. Also, clicking Build Model Cache doesnāt seem to do anything visible in the Editor or in the Output Log, so maybe it isnāt working?
Iāve create a small test in 4.19 and 4.20 and have seen this same result:
Make a new blank level, place a floor static mesh and drop some default SnapMapConnectionActors into it. Save level.
In a separate level, add a Dungeon actor, set it to Snap Map and add the module level to each module type array.
Click build module cache. Nothing seems to happen.
in the level blueprint, hook up ābuild dungeonā on your dungeon actor to Event Begin Play so the dungeon will be built at runtime.
Play in Editor and a Red warning message says āInvalid Snap Builder Module Dataā and the dungeon is never generated, regardless of how many times the Build Module Cache button was clicked in Editor before pressing Play.
You said that the Dungeon wonāt generate in Editor, but I assumed that meant just that it wouldnt work if you click ābuild dungeonā while in editor mode, but that it should work this way if you Play in Editor and build at runtime - or does it only work in an actual Packaged build (which would be crazy because thereād be no way to test in editor)?
EDIT - Found a Fix
Seems if I ābuild dungeonā and āDestroy Dungeonā from the editor before adding any modules, something is initialized and the dungeon afterwards works correctly when adding modules and clicking āBuild Module Cacheā
Ooh - ran into a major blocker with the SnapMapBuilder setup.
In my game, currently set up with Blueprint/Actor SnapBuilder, I have a class that stores a set of default settings for a SnapDungeonConfig. This way I can hand author a bunch of different sets of modules, dungeon lengths, etc, and then choose one on runtime (say based on difficulty level or map type), assign that config to my dungeon actor and then Build Dungeon on the fly.
Iād love to use SnapMapBuilder instead of SnapBuilder to get the new mission editor features youāre working on and because yeah, itās a pain to build modules as actors!
But how can I assign a config on the fly to a SnapMapBuilder Dungeon and make that work with the Build Model Cache?
Possible options:
Is there a way to bake-out a model cache for each SnapDungeonConfig I might want to use?
Build the model cache in runtime?
Store a Dungeon Actor + config combo with the Build Model Cache included somehow, so I can save those and choose which dungeon to spawn instead of choosing from different dungeon configs at runtime?
Have dozens of Dungeon Actors in my level, with their individual configs set and Build Model Cacheās clicked, then choose one and build it at runtime?
EDIT
having multiple Dungeon Actors in my level and only building from the one I want at the time seems to work okay. Not sure if there are performance issues down the road though if I have 30+ Dungeon Actors with model caches all in one level?
Put in a āFloor Plan Room Volumeā to cut through the floors of the corner room and create a marker for the āPer floor centre markerā in your theme file
I recently purchased DA because the vids are so , and Iām just not a TA to make levels. However, Iām finding that DA is constantly crashing the app due to video memory leak, or locks up. Even small actions by dropping a mesh into a theme. If Iām not using DA then no problems, UE runās smooth. Maybe itās just the theme builder, but since I need a theme and I canāt make one I canāt tell if there is any other issues.
I upgraded my computer because it died, and I decided to skimp on ram until next month. So Iām only running 8gb for now due to the prices and Iām not made of money :
Iām wondering if itās a memory issue, or a memory leak. Either way itās unusable right now. Also one final note, for some reason loading up any UE project even a empty one takes a few minutes. Iām not sure if itās related though.
Iām using UE 4.20
DA 2.9.2
If anyone has had these problems and may know whatās up(buy more memory?) I would appreciate some assistance to resolve the issue.