SCNActionable.RunAction Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
RunAction(SCNAction) |
Adds the specified |
RunAction(SCNAction, Action) |
Adds the specified |
RunAction(SCNAction, String) |
Adds the specified |
RunAction(SCNAction, String, Action) |
Adds the specified |
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
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
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
Implements
- Attributes