Quick question …
Whats the syntax for removing a BGE constraint in python?
I have one object (hook) that has 3 constraint actuators
This does not work:
from bge import logic
from bge import constraints
bge.constraints.removeConstraint(Constraint0)
bge.constraints.removeConstraint(Constraint1)
bge.constraints.removeConstraint(Constraint2)
Or - if you know what logic block would accomplish this I could use that instead.
Thank you.