[Closed] Scaling plane by camera distance
I’m trying to write a script what would scale plane on x axis (in local coordinate system) while moving camera closer and away from the plane.
Why I need it is that I have lines maped to the planes to fake hand drawn lines on 3D objects. But if camera goes too far then lines disapear. That’s why I would like to have lines what would go thicker while moving camera away from them.
From what u have mentioned here, you will need to assign an expression controller on the plane’s scale property. Do this,
Go to graph editors >> track view-curve editor and select the plane object.
Select its scale property right click and select assign controller.
From the popup menu select scale expression
Now in the expression editor create the following variables
multiplier (scalar) – assign to constant – check with constants near 0.01
camPos (vector) – assign to camera’s position controller
planePos (vector) – assign to plane’s position controller
Now type this in the expression edit field
[(length(camPos) - length(planePos))*multiplier , 1, 1 ]
Hope this does what u want.
Thanks
Mobeen
It might seam a stupid question, but how to make the same thing on cilinder radius. So that cilinder would remain with a constant thickness no matter how far camera is?