Posts: 10
Threads: 5
Joined: Jun 2019
06-25-2019, 08:31 AM
(This post was last modified: 06-25-2019, 08:39 AM by MarioBag.)
Dear members of CurvySpline forum.
Is it possible to create, by code, a spline extrusion with variable width? If so, can somebody point me in the right direction? I have not been able to find a proper answer for it. I know is possible to change the overall width of the whole spline, but I wonder how could I have different width parameters using the same spline. (I would like to avoid creating different splines for each section with different width).
Thanks in advance for your time.
Kind Regards
MarioB
Posts: 2,160
Threads: 95
Joined: Jun 2017
Hi,
There is a Tab called Scale in the Shape Extrusion module:
https://curvyeditor.com/documentation/ge...sion#scale
Inside of it, you can set up a variable scale by setting Mode to Advance
Let me know if this isn't what you were looking for.
Have a nice day
Posts: 10
Threads: 5
Joined: Jun 2019
(06-25-2019, 10:23 AM)_Aka_ Wrote: Hi,
There is a Tab called Scale in the Shape Extrusion module:
https://curvyeditor.com/documentation/ge...sion#scale
Inside of it, you can set up a variable scale by setting Mode to Advance
Let me know if this isn't what you were looking for.
Have a nice day
Hey Aka, yes that is what I needed. I know just need to find a way to modify the curve by code to accommodate a width from input.
Thanks for your time
Cheers,
Mario
Posts: 2,160
Threads: 95
Joined: Jun 2017
Posts: 3
Threads: 1
Joined: Nov 2019
(06-27-2019, 12:41 PM)_Aka_ Wrote: All what you need is in here
https://api.curvyeditor.com/520/class_fl...ab82445b72
and here
https://docs.unity3d.com/ScriptReference...Curve.html
Is it possible that we can get an option to set scale based on the local scale of the path nodes?
Posts: 2,160
Threads: 95
Joined: Jun 2017
(11-02-2019, 11:34 PM)Janooba Wrote: (06-27-2019, 12:41 PM)_Aka_ Wrote: All what you need is in here
https://api.curvyeditor.com/520/class_fl...ab82445b72
and here
https://docs.unity3d.com/ScriptReference...Curve.html
Is it possible that we can get an option to set scale based on the local scale of the path nodes?
Hi,
There is no ready made feature to set the extrusion scale to the same value as the control points (a.k.a path nodes) scale, but you can easily do it: make a script that will read the local scale of each control point's and then modify the ScaleMultiplier curves accordingly. The quoted links have the needed documentation to do that.
Have a nice day