Skip to content

AnimationBlendSelector2D.RemoveNode Method

Definition

Namespace: Brine2D.Animation

Overloads
RemoveNode(float, float) Removes the first node within 1e-5 of x, y. Returns true if a node was removed. Evaluates immediately after removing.
RemoveNode(string) Removes the first node whose clip name equals clipName. Returns true if a node was removed. Evaluates immediately after removing.

AnimationBlendSelector2D.RemoveNode(float, float) Method

Removes the first node within 1e-5 of x, y. Returns true if a node was removed. Evaluates immediately after removing.

public bool RemoveNode(float x, float y);

Parameters

x System.Single

y System.Single

Returns

System.Boolean

AnimationBlendSelector2D.RemoveNode(string) Method

Removes the first node whose clip name equals clipName. Returns true if a node was removed. Evaluates immediately after removing.

public bool RemoveNode(string clipName);

Parameters

clipName System.String

Returns

System.Boolean