Devlog Week 31

Interaction System V2

Most of this week was spent on revamping the interaction system. All 27 unit tests I have for the individual features passed.
I already mentioned this last week, but the reason I changed it is flexibility. Previously, it was an actor Blueprint class, so I either had to make one that has all the functionality I need and use it for everything, or create several types and add code that handles each of them individually. That of course is very cumbersome. I already had 4 classes for different objects : static objects, skeletal meshes, camera that follows you, and spinning ceiling fan, and each of them implement a different interface function.
The new method uses an actor component class instead, which means I can attach it to any actor of any type and it will work. One challenge I had (aside from readapting the code) is how to find actors with interaction. Checking if an actor has an interaction component (using “get component by class” and checking if the return is valid) has some performance concerns, especially if an actor has many components, so instead I made the component add a specific tag (eg. “Interaction_Amenzu”) on BeginPlay, and then I just checked if an actor has that tag instead when needed.
I also modified the old interaction blueprints to add the component and copy settings from the old interaction system variables to the new one, which means all the existing interactive actors work fine with the new system. This only applies to existing actors I didn’t want to modify. New actors will only contain the interaction component.

I also cleaned up one particularly nasty part of the code. It doesn’t have any positive impact on performance. It’s just easier to maintain and modify. Here’s the before and after.

And a zoomed out overview of the entire interaction system

One last change I made was the way branching was handled for “Multi-Choice/Question” “Go To” and “Go To Milestone”. It was previously using line numbers (eg. “Go To 29“), so if I needed to add or remove any line then I had to edit all the line numbers for those. Now it uses label instead (eg. “Go To key_found“). I can add and remove and move lines around more freely. It should have been made this way from the beginning, but it’s better late than never.

“Look at” functionality

I wanted to make the flashlight follow the camera, which game me the idea to attach it to the head bone and also make the player character move their head to look in the direction the camera is looking at. The result looks a lot more natural than the player character just standing there and not reacting. I added some lag to it too and adjusted some values until it felt natural. Here you can see it in action (the red sphere is just to help with visualization)

“Look At” with lag

I encountered a bug that happens with low FPS, where at low enough FPS (~5 or lower) the algorithm causes overshooting instead lagging, and the character just shakes their head. It looks like they’re showing disapproval for abysmal performance. I actually fixed it, but then I decided to unfix it because it’s funny. It’s my pet bug lol

head shake of disapproval

Python scripting

I looked at methods to automate tasks in Unreal Engine. Things like making sure all interactive objects have data sets properly set up, list interactive objects, make sure interactive objects generate overlap events…etc. I found some documentation about python, and I spent an afternoon trying to make it work. It wasn’t easy and there was very little documentation and online resources, but I got at least to do a “proof of concept”. This video shows a script that adds an identifier and a tag to actors with the interactive component. In the future I will make more scripts to help with error checking and validation for the interactive objects.

Python script test

Finally, I fixed some minor bugs with the demo build and added WASD controls, and started working on the main menu and settings menu. The initial version should be ready this week.

Thanks for reading, and I hope to see you again next week.

One thought on “Devlog Week 31

Leave a Reply

Your email address will not be published. Required fields are marked *