Fixed Nullpointer Exception when Interacting with BrushActor
Trying to interact with a Brush-Actor by clicking on it leads to an engine crash and a Nullpointer exception. The reason being that dereferencing the required pointer "HitActor" is not possible due to it not having a value.
Fixed by checking if HitActor is nullptr before proceeding to use it otherwise.