Common unreal slacker issues & tips

As you might know if you got to this page, I am quite an active member on the Unreal Slackers discord. Over time I noticed a lot of the same issues kept popping up, so I decided to write something down to save myself some typing time (hopefully). [Read More]

Using bit flags in c++

An Introduction to Bit Flags Bit flags are a programming technique to represent multiple boolean values or multiple states into a single integer. The amount of different states you can store inside of one integer depends on it’s memory size e.g. a 32 bit integer could hold 32 different states... [Read More]