@Winterstone, @Staruwos2 @SethPDA Thanks!
@Winterstone it should be possible with the paint tool. You can draw your dungeon with the paint tool inside the cave. Iāll post a video when I get time
@Winterstone, @Staruwos2 @SethPDA Thanks!
@Winterstone it should be possible with the paint tool. You can draw your dungeon with the paint tool inside the cave. Iāll post a video when I get time
Free Assets!
Iāve created a bunch of Sci-Fi models that would be bundled for free along with the plugin. You can use them in your commercial games. Iāve created the meshes in blender and reused the textures / materials from the ShooterGame demo. Check out the video
watch?v=D1xhX0fEnVw
http://i.imgur.com/cixoeOMm.jpg http://i.imgur.com/jEatvFim.jpg http://i.imgur.com/ASGhKGHm.jpg http://i.imgur.com/iYZFW7Zm.jpg
This level was generated procedurally
http://i.imgur.com/Da57Cm2h.jpg
http://i.imgur.com/V7CvrX2h.jpg
http://i.imgur.com/KmEGAYLh.jpg
http://i.imgur.com/JUh3CLdh.jpg
http://i.imgur.com/mRNeuTCh.jpg
Asynchronous Dungeon Building
Paint Editor Mode
Blueprint based node selection rules
Graph Editor Preview Toolbar
http://i.imgur.com/dglzgNom.jpg http://i.imgur.com/4l50drnm.jpg
This looks really good. Canāt wait for it to hit the market place.
I hope you wont make it too expensive, but whatever you charge it will be so worth it
Absolutely amazing, this may actually be my first purchase on the Marketplace if not too expensive. I have a question though, does this support circular rooms as well, or just rectangular? If not, do you plan to add that as a later feature?
Hey - So I am just chiming in on this thread to ask a question.
I saw something on twitter today - Making A Level In 2 Seconds In UE4 (reddit) GIF | Gfycat Is this the next step of the dungeon generator?
If so I am really looking forward to it.
@
Once you go to the Marketplace, will you be providing the source code for your plugin, so that it could be compiled for other platforms (Linux ) or modified by users as they see fit?
Hey guys, sorry for the lack of response. I was away from home for a week
@Dregen, @Darkkitten Thanks
@Amsirahc As of now it supports grid based maps. However, the plugin is designed so that the layout generation phase is decoupled from the mesh generation phase (through markers). So I can swap out the layout generator with another generator (e.g. cellular automata for something more organic like caves). However I make no promises
@HeadClot That looks very interesting! No, thatās another system and not running in DA
@amigo You will have access to the complete C++ source code for the plugin from the marketplace. You can modify it, enhance it and keep the changes. You can also use it as a learning reference to create your own editor based plugins
Iāll also soon create wiki articles / tutorials to share what I have learnt building C++ based editor plugins
Iām working on creating the documentation for DA and Iāll submit to marketplace soon.
However, the marketplace doesnāt yet support C++ based assets till 4.8 hits
Iāve sent them a mail a while back and still waiting for their reply. Iāll bug them again
Created a User Guide
,
i will insta-dive into it
Amazing. Iāll just throw my work in the bin and wait for this to be released. Great work sir.
So now that the Marketplace is accepting code plugins, when can we expect DA to be released?
A way to dinamicly place cubemaps would be nice.
Dude superb. Great to see someone from my country creating some stuffs
By the way , if you can create a detailed tutorial of how you extended the editor , it would be great lessons, and i am sure many will find it useful, given that plugins are accepted now in the marketplace.
I am mainly interested in knowing your ways of creating custom dataassenodes and adding functionality to it , and create your own detailed customization slate and extending the Mode panel , and creating the paint tool. This will greatly help me come out of the limitations of editable properties of Actor classes.
Thanks guys! Sorry for the delayed response
@ Thanks for your interest. Itāll be released soon. Iāve upgraded to 4.8 by fixing the breaking changes and deprecation warnings and been testing it.
@diegor Could you elaborate? Do you mean reflection sphere map? You could do that by emitting an actor node (and spawn any type of actor in the generated map)
@sameek4 Thanks! Iāll create the tutorials soon. In the mean time, you could have a look at the opensource Haste plugin (signature) for a custom Editor mode panel customization. BTW, nice work with the Building Generator
Focused on runtime procedural generation by exposing more functions/events to blueprint
is an example level blueprint that spawns a new random dungeon layout every time it starts and places the player in a valid platform
Yeah , I looked at it and implemented it as well. Very nice. Still will take me a long time to learn this , but after watching your videos , I have started to believe that making my building generator similar to the way buildings are made in Sims 4(nothing can be better than that , you can create practically any building in less than an hour) is absolutely possible. Just like how you added extra options within your dungeon Edit mode, this will work. Please release your pack in the market soon, I will just buy it for learning purpose.
I found this tip very useful from Micheal Noland in the Extending the Editor tutorial video
If you want to develop a feature for your extension plugin, do the following:
With this method, you donāt have to understand how everything works (I still donāt) but you can learn as you go. Step 3 can be overwhelming since you have to deal with a lot of code clean-up before you can compile successfully. Patience and persistence for a few hours will eventually get you there
Impressive! Can you provide an information on how can it be used on runtime generation mode with multiplayer?(if its possible, but i think it is) Any updates on release date?
@rozenbor In multiplayer, the server decides and replicates the dungeon configuration structure (seed etc) to all the clients so the clients also generate the exact same layout. I havenāt tested this yet but it should be possible. Iāll be submitting soon