pause

is there like a wait command where one action then pause then another action happends?

yes!

action1()
import time
time.sleep(2)
action2()

what are you asking?
game pause button where the game stops till you unpause?
deffer events when you tell next even to be done after this?
or thread like thing when 2 action happen at once?
or do you want your program just to stop for a second or 2?

that one
thanks i needed that. gotta look into the python docs more

If you use a long waiting time and don’t want panda to stop rendering, you can try this:

Sequence(Func(action1),Wait(2.0),Func(action2)).start()

Not sure whether Wait() is the correct syntax.