Playmaker Forum

PlayMaker Help & Tips => PlayMaker Help => Topic started by: jerware on March 29, 2013, 04:56:21 PM

Title: A request: "sticky" debug variables
Post by: jerware on March 29, 2013, 04:56:21 PM
The ability to turn on debug mode and see your variable values is extremely useful, but I wish that each debug field displayed the value when it completed that action, rather than a value after the last action/state to execute. That would make debugging far easier. As it is, I often disable event transitions and actions just to get the program to "break" on a given action so I can see the correct values.

Maybe I'm missing a better way to debug?
Title: Re: A request: "sticky" debug variables
Post by: Alex Chouls on March 29, 2013, 05:06:04 PM
You should be able to use Debug Flow to track how variables change with state changes.

Enable Debug Flow in the FSM tab, then when you pause the game you can use Prev and Next in the debug toolbar to step through state changes. At each state change, the State Inspector should show the values of variables at that time...

You can also open the FSM Log window and click any entry to sync to that time.
Title: Re: A request: "sticky" debug variables
Post by: jerware on March 29, 2013, 05:26:55 PM
Thanks for the reply, Alex. Debug flow is very cool, but it doesn't solve the problem of tracking variables that are affected by numerous actions in the same state. That's why, in debug mode, it would be handy to optionally see the variables as they were when each action completed its task.

Another way to look at it is stepping through actions, not just states.
Title: Re: A request: "sticky" debug variables
Post by: Alex Chouls on March 29, 2013, 06:26:20 PM
Ahhh, ok, I understand now...

I'll think about how we can do this. Right now you could use a Debug action to log the current value. Not super convenient, but might help...