-
Notifications
You must be signed in to change notification settings - Fork 232
Scene
Adrien GIVRY edited this page Sep 26, 2020
·
3 revisions
Set of actors
- C++ related class:
OvCore::SceneSystem::Scene
This usertype has no variables
This usertype has no constructors
Name | Input | Output | Description |
---|---|---|---|
FindActorByName |
Scene : instancestring : name |
Actor |
Returns the first actor identified by the given name, or nil on failure |
FindActorByTag |
Scene : instancestring : tag |
Actor |
Returns the first actor identified by the given tag, or nil on failure |
FindActorsByName |
Scene : instancestring : name |
Actor[] |
Returns actors identified by the given name, or nil on failure |
FindActorsByTag |
Scene : instancestring : tag |
Actor[] |
Returns actors identified by the given ID, or nil on failure |
CreateActor |
Scene : instance |
Actor |
Creates an actor |
CreateActor |
Scene : instancestring : namestring : tag |
Actor |
Creates an actor with a name and a tag |
This usertype has no operators