Fading Coder

One Final Commit for the Last Sprint

Setting Up Detection by Affiliation for AI in Unreal C++

During AI perception setup, I encountered an issue where when two AI characters appear in the scene, they detect eachother and trigger pursuit. To differentiate the detected actors, this functionality is required. Unreal Official Documentation: This property can be used to set up team-based visual p...

Understanding Bitmask Operations in Unreal Engine 4

Overview Bitmask: A mechanism that employs binary representation to manage multiple state flags efficiently. A 32-bit bitmask can store 32 individual flags, enhancing readabiltiy and operational efficiency over the use of standalone boolean variables. Features: Facilitates the management of multiple...