Decreasing scale

Hello all !
I seem to encounter a problem, as i want to create a scale going from 100 (so on the left) to 50 (on the right), so far i’ve come to this, but it draws a scale from 100 to 101 with all the decimals inbetween. I don’t know if it’s possible to create a decreasing scale ?

rating_scale1 = visual.RatingScale(
win=win,
name=‘rating_scale1’,
marker=‘circle’,
size=1,
pos=[-0.4, -0.5],
low=100,
high=50,
labels=None,
tickMarks=[100, 90, 80, 70, 60, 50],
tickHeight=1,
showValue=True,
textColor=[0,1,0]
)

Thank you :smile:

There’s no built-in way to flip a numerical rating scale that I know of, unfortunately. One (slightly labor-intensive) option is to use the “choices” argument and manually put in all the values from 100 to 50, but that’s the only thing I can think of.