Hello,
I would like to point out a small suggestion for this lecture.
I think it is rather neccessary to add a check for the NULL pointer when iterating through the PlatformsToTrigger TArray.
This is my code:
for (AMovingPlatform* Iterator : PlatformsToTrigger)
{
if (Iterator)
{
Iterator->RemoveActiveTrigger();
}
}
Kind regards,
Alex.