Click or drag to resize

Curve2DAddPoint Method

Adds a point to a curve at position, with control points in and out.

If at_position is given, the point is inserted before the point number at_position, moving that point (and every point after) after the inserted point. If at_position is not given, or is an illegal value (at_position <0 or at_position >= [method get_point_count]), the point will be appended at the end of the point list.

Namespace:  Godot
Assembly:  GodotSharp (in GodotSharp.dll) Version: 1.0.0
Syntax
C#
public void AddPoint(
	Vector2 position,
	Vector2? in = null,
	Vector2? out = null,
	int atPosition = -1
)

Parameters

position
Type: GodotVector2

[Missing <param name="position"/> documentation for "M:Godot.Curve2D.AddPoint(Godot.Vector2,System.Nullable{Godot.Vector2},System.Nullable{Godot.Vector2},System.Int32)"]

in (Optional)
Type: SystemNullableVector2
If the parameter is null, then the default value is new Vector2(0, 0)
out (Optional)
Type: SystemNullableVector2
If the parameter is null, then the default value is new Vector2(0, 0)
atPosition (Optional)
Type: SystemInt32

[Missing <param name="atPosition"/> documentation for "M:Godot.Curve2D.AddPoint(Godot.Vector2,System.Nullable{Godot.Vector2},System.Nullable{Godot.Vector2},System.Int32)"]

See Also