How to set Spline gui parameter
-
On 18/04/2014 at 16:16, xxxxxxxx wrote:
Hey Everyone,
I try to define more parameter for the spline gui
i found the _SPLINECONTROL_ALLOW_HORIZ_SCALE_MOVE in the documentation but how can i use it ? _
_
_
__ def __init__(self) : self.sd = c4d.SplineData() self.sd.MakeLinearSplineBezier(4)
thanks for any tips
-
On 19/04/2014 at 09:44, xxxxxxxx wrote:
You can specify those settings via GeDialog.AddCustomGui(). In a dialog or description resource,
there are some flags available that can be used in the resource file directly. Other than that, you
need to override NodeData.GetDDescription() which is only available in C++ to modify the settings
on a NodeData plugin.-Niklas
-
On 20/04/2014 at 01:38, xxxxxxxx wrote:
Thanks Niklas