Stop all movement instantly

Is there a function that i can basically reset any force or similar movement to an object to 0 without having the deceleration? I know you could just say ‘use DLoc for moving’ but its important that i have the friction at other times! thanks!

if ya know what i mean ;]

wow… -.-

it had to be done.

no, but seriously, just for a short second, add a negative Z axis linV and it will stop motion.

you could try putting the negative values from (object).getLinerVelocity() into force on a motion actuator.

you could also try using LinV with values of something like [0,0,0,00001]

Just use python to set

if forward.isNegative():
speed = .00001

it stops it =D

speed being…what exactly?