Engine
(NOTE) Control points for the Spline class. Modifying this will cause the spline to be marked as modified to rebuild the baked curve when needed.
Methods | Properties | Base Classes | Derived Classes |
---|---|---|---|
Add | Count | safeid32object | |
Clear | |||
Get | |||
Set |
Properties
Count : integer
read-only
The number of control points contained.
var Count : Integer
Methods
Add : Void
Add a new point to the end of the array. |Name|Type|Description| |---|---|---| |controlPoint|splinecontrolpoint| |
function Add(controlPoint : SplineControlPoint)
Clear : Void
Clear all control points. |Name|Type|Description| |---|---|---|
function Clear()
Get : splinecontrolpoint
Get the control point at the given index. |Name|Type|Description| |---|---|---| |index|integer| |
function Get(index : Integer) : SplineControlPoint
Set : Void
Sets the control point at the given index. |Name|Type|Description| |---|---|---| |index|integer| | |value|splinecontrolpoint| |
function Set(index : Integer, value : SplineControlPoint)