Hm, that’s weird… I see the detail isn’t locked, so it should work.
I have not encountered this problem.
I set the detail scale by a script though, because I hate converting 1:20 into mm and M…
You can try it:
It should work even if the detail is locked.
We work in Meters, so maybe you need to do some math to make it work if you use something else though
### Set Detail Scale by Holo
import rhinoscriptsyntax as rs
detail = rs.GetObject("select detail",rs.filter.detail,preselect=True)
if detail:
scale = rs.DetailScale(detail)
newScale= rs.RealBox("The detail is in scale 1:"+str(1/scale), 1/scale, "Detail Scale", 0)
if newScale:
rs.DetailScale(detail,newScale,1000)
Thank you Holo for taking the time to answer me,
unfortunately the result is the same, no change of scale.
If the problem comes from my configuration, I will look, maybe a plugins…
I found it!
the units in “Document Properties/Units/Layout” was set to “No units” (units model was set to mm)
Changing this setting solves the problem.