BreakPoint not triggering?

So i have an unusual issue here. The following code runs normally and when both “actors to shoot from” and “attackably characters” are populated, the program outputs “test” as demonstrated and expected.

The issue however is the breakpoint on the “print string” node doesnt trigger, and nor do any other breakpoints in random sections of the code. The first for each loop stops on its breakpoint and so does everything after it completes.


1 Like

Does your Debug Filter set to its wanted actor?

1 Like

Currently it does not set to anything and the actor i would be watching is spawned in to the game after it starts?, do i need to add it to the level before it starts for the debugging to work?

If your actor is spawned after the Play just set it after the play, by pressing the " ` " button (1 button to the left from “1”), if its not event begin play it should be fine.

Brilliant, that allowed the event to trigger. Thanks!