Increase the max allowed mean value

How would one go about increasing the max value of the mean in a random actuator… i have my mean controlled by a property using a script and i try going past 100 with it by increasing my property value… but if the property value is above 100 it’s as if it’s 100 even if it is way higher than that… anyone know how to fix this problem?:mad:

Do you use one of the setXXX(lower_bound, upper_bound) functions?

para1 and para2 are readonly (you should see an error message, if you tried to change them).

Quick and dirty example:


def test(cont):
 act = cont.actuators[0]
 print( act.para1, act.para2 )
 act.setIntUniform(7,8)
 print( act.para1, act.para2 )
 

Do you use one of the set***(lower_bound, upper_bound) functions?

para1 and para2 are readonly (you should see an error message, if you tried to change them).

Example:


def test(cont):
 act = cont.actuators[0]
 print( act.para1, act.para2 )
 act.setIntUniform(7,8)
 print( act.para1, act.para2 )