Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
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