SCNActionable.RunAction Method

Definition

Overloads

RunAction(SCNAction)

Adds the specified action.

RunAction(SCNAction, Action)

Adds the specified action and calls the provided block when the action is finished.

RunAction(SCNAction, String)

Adds the specified action to the attached actions with the provided key.

RunAction(SCNAction, String, Action)

Adds the specified action with the specified key and calls the provided block when the action is finished.

RunAction(SCNAction)

Adds the specified action.

[Foundation.Export("runAction:")]
public abstract void RunAction (SceneKit.SCNAction action);
abstract member RunAction : SceneKit.SCNAction -> unit

Parameters

action
SCNAction

Implements

Attributes

Applies to

RunAction(SCNAction, Action)

Adds the specified action and calls the provided block when the action is finished.

[Foundation.Export("runAction:completionHandler:")]
public abstract void RunAction (SceneKit.SCNAction action, Action block);
abstract member RunAction : SceneKit.SCNAction * Action -> unit

Parameters

action
SCNAction
block
Action

To be added.

This parameter can be null.

Implements

Attributes

Applies to

RunAction(SCNAction, String)

Adds the specified action to the attached actions with the provided key.

[Foundation.Export("runAction:forKey:")]
public abstract void RunAction (SceneKit.SCNAction action, string key);
abstract member RunAction : SceneKit.SCNAction * string -> unit

Parameters

action
SCNAction
key
String

To be added.

This parameter can be null.

Implements

Attributes

Applies to

RunAction(SCNAction, String, Action)

Adds the specified action with the specified key and calls the provided block when the action is finished.

[Foundation.Export("runAction:forKey:completionHandler:")]
public abstract void RunAction (SceneKit.SCNAction action, string key, Action block);
abstract member RunAction : SceneKit.SCNAction * string * Action -> unit

Parameters

action
SCNAction
key
String

To be added.

This parameter can be null.

block
Action

To be added.

This parameter can be null.

Implements

Attributes

Applies to