Just a quick one I can’t figure out I have a switch statement and this is one of the cases
case 922:
trace("test");
eddy.toggleCamera(2);
break;
The function is called and works but the trace never happens. Also if I put the trace in the toggleCamera function it doesn’t show either.
I have plenty of other debugging going on and trace calls happening else where so it is not the IDE settings or anything and yes I am running in debug not release mode.
The switch statement is called when a collision happens walking into an area if that helps at all.
Can anyone shed some light on this?