I spent about a year working alongside other Valkyries and the PixelOpus studio on a new game, working as a Tech Designer focused on destructible objects and AI design.
The project has not been announced, so I cannot say too many specifics, unfortunately. In essence, it was a story-based action game with a number of different systems, a couple of which were enemy AI’s and destructible objects. I worked entirely in Blueprint in UE5, and worked directly with animators, engineers, and artists, to bring these things to a polished state.
enemy ai
I was one of only a couple designers working on enemies, and I focused primarily on the implementation side of things. For about half of them, I mostly tuned and tweaked their values and their attacks, as they both were in decent states. One of those took a bit more work in regards to its attacks, as the concept changed heavily during development. Each AI was set up as a row in a data table, with a number of data assets, Blueprints, behavior trees, etc. referenced through those. Each attack was handled through a data asset and an associated Blueprint, which contained all the logic around VFX, SFX, timing, damage means and hitbox, etc. As such, my time was spent modifying those Blueprints to polish the feel and modifying the data asset for all values like cooldown, attack range, etc.
The others were far more conceptual when I started working on them, and required quite a bit more implementation and high-level decision making. One of which was a riff off a pre-existing AI, so some of the base decisions were made, such as movement modes and general look. However, it introduced some new behaviors that required prototyping, implementing, and polishing. I did a lot of work in the Blueprint for that AI, along with all of the attack stuff listed above, and made new attacks with new features as well. Another was a whole new type of AI that the player interacted with differently from the others, which required a lot of engineering support. Unfortunately, our time on the project ended before I was able to bring that one to a fully polished state, so it was a lot more prototyping and early implementation.
destructibles
One of the things that the game was leaning heavily into was a mostly destructible environment. The amount that you could destroy varied throughout development, with most of a level being destroyable early on, and paring back to non-destroyable rooms with destructible assets within. The original destructibles were all duplicates of each other, or were modified on a per-instance basis, which made global modifications near impossible. My first step was to create Blueprint parents that housed all of the necessary and cross-destructible logic, along with hooks for more specialized destructibles to override. After that, I reparented all of the pre-existing destructibles to those new parents, made sure the proper overrides were being used, and made sure that the destructibles continued to act as expected. Then, I focused on implementing new requests from level design, such as having the option of changing the gravity direction on the debris at runtime, activating VFX at varying points instead of only on destruction, etc.
Once the base/pre-existing destructibles were in a good state, I moved on to creating new ones with new art assets, and spent a lot of my time supporting art and level design with new assets and new functionality. When I had the time, I also worked on improving the base functionality and efficiency, cleaning the Blueprint logic and pulling one-off overrides into the parent functionality, with added levers to activate them. In the end, I was actively maintaining 30+ destructibles and making new ones as needed.