Apps How can I do Python apps debug?

Hello everybody,

I am struggling with an Assetto Corsa python app, as long as sometimes it is now working and I need to do some kind of debug showing me the app in python meanwhile app is running.
Do you know the way to do it? And I am not able to run a debug with the car being on track.

Thanks in advance.
 
in acUpdate() do something like:

currspeed = ac.getCarState(0, acsys.CS.SpeedKMH)
ac.setTitle(yourapp, str( round(currspeed, 1) ) )

or if you created a text-control:
ac.setText(yourcontrol, str( round(currspeed, 1) ) )

 
Last edited:
Back
Top