Unigine::Node Class
Header: | #include <UnigineNode.h> |
In terms of Unigine, all of the objects added into the scene are called nodes. Nodes can be of different types, determining their visual representation and behavior.
The node is created and stored in the world. All changes are saved into the .world file.
The node can be also saved into an external .node file and then imported into the world when necessary. Also it is possible to create a reference to the exported node.
You can associate any string data (written directly into a *.node or a *.world file) or an arbitrary user variable with a node.
See Also#
- How to handle ownership
- How to work with the node's matrix transformations
Creating a Node#
The Node class doesn't provide creating of a node. You can create an instance of any class inherited from the Node class and then obtain the node via automatic upcasting.
For example:
- Create a box mesh by using the Mesh class.
- Use the box mesh to create an instance of the ObjectMeshDynamic class. This class is inherited from the Node class.
- Get the node via upcasting.
// AppWorldLogic.cpp
#include "AppWorldLogic.h"
using namespace Unigine;
using namespace Math;
int AppWorldLogic::init() {
// declare a smart pointer for any type of the node inherited from the Node class (e.g. ObjectMeshDynamic)
// and call a constructor of the corresponding class
ObjectMeshDynamicPtr object_mesh = ObjectMeshDynamic::create("core/meshes/box.mesh");
// declare a smart pointer for the node
// and obtain the node pointer from the created ObjectMeshDynamic
NodePtr node = object_mesh;
return 1;
}
Now you can operate the ObjectMeshDynamic instance as a node.
Editing a Node and Saving Changes#
The Node class contains common settings of the node. Also each node has special settings, which vary depending on the type of the node.
Editing the node also includes editing materials and properties assigned to the node.
For the edited node to be saved in the .world file, you should enable the corresponding option via the setSaveToWorldEnabled() method.
For example:
- Create a box mesh by using the Mesh class.
- Save the mesh on the disk. It is required as the node we are going to save to the .world file need to reference to a mesh stored on the disk.
- Use the saved .mesh file to create an instance of the ObjectMeshStatic class. This class is inherited from the Node class.
- Get the node from the ObjectMeshStatic instance via upcasting.
- Enable saving to .world file for the node (and all its children).
- Edit the node and save the world by calling the world_saveconsole command.
#include "AppWorldLogic.h"
#include <UnigineConsole.h>
using namespace Unigine;
using namespace Math;
int AppWorldLogic::init() {
// create a mesh
MeshPtr mesh = Mesh::create();
mesh->addBoxSurface("box_0",vec3(1.0f));
// save a mesh into a file on the disk
mesh->save("unigine_project/meshes/my_mesh.mesh");
// declare a smart pointer for any type of the node inherited from the Node class (e.g. ObjectMeshStatic)
// and call a constructor of the corresponding class create an instance of any class inherited from the Node class (e.g. ObjectMeshStatic)
ObjectMeshStaticPtr object_mesh = ObjectMeshStatic::create("unigine_project/meshes/my_mesh.mesh");
// declare a smart pointer for the node,
// obtain the node pointer from the created ObjectMeshStatic,
NodePtr node = object_mesh;
// enable saving the node(and all its children) to a .world file
node->setSaveToWorldEnabledRecursive(true);
// change the node name
node->setName("my_node");
// change node transformation
node->setWorldTransform(translate(Vec3(0.0f, 0.0f, 2.0f)));
// save node changes in the .world file
Console::run("world_save");
return 1;
}
Exporting and Importing a Node#
To export a node stored in the world into the external .node file, you should pass it to the saveNode() method of the World class.
To import the existing node stored in the .node file to the world, you should call the loadNode() method of the World class.
For example:
- Create a box mesh by using the Mesh class.
- Save the mesh on the disk. It is required as the node we are going to export need to reference to a mesh stored on the disk.
- Use the saved .mesh file to create an instance of the ObjectMeshDynamic class. This class is inherited from the Node class.
- Get the node from the ObjectMeshStatic instance via upcasting.
- Export the node to an external .node file.
- Import the prevoiusly exported node to check the result.
#include "AppWorldLogic.h"
#include <UnigineNode.h>
#include <UnigineObjects.h>
#include <UnigineWorld.h>
#include <UnigineEditor.h>
#include <UnigineConsole.h>
using namespace Unigine;
using namespace Math;
int AppWorldLogic::init() {
// create a mesh
MeshPtr mesh = Mesh::create();
mesh->addBoxSurface("box_0", vec3(1.0f));
// save a mesh into a file on the disk
mesh->save("unigine_project/meshes/my_mesh.mesh");
// create an instance of any class inherited from the Node class (e.g. ObjectMeshStatic)
ObjectMeshStaticPtr object_mesh = ObjectMeshStatic::create("unigine_project/meshes/my_mesh.mesh");
// declare a smart pointer for the node
// and obtain the node pointer from the created NodeDummy
NodePtr node = object_mesh;
// export the node into a .node file
World::saveNode("unigine_project/nodes/my_node.node", node);
// import the exported node to check the result
NodePtr imported_node = World::loadNode("unigine_project/nodes/my_node.node");
// set position of the node
imported_node->setPosition(Vec3(4.0f, 0.0f, 1.0f));
return 1;
}
Deleting a Node#
By default each new node's lifetime matches the lifetime of the World (i.e. such node shall be deleted when the world is closed). But you can also choose node's lifetime to be managed:
- by the Engine - is this case the node shall be deleted automatically on Engine shutdown.
- manually - is this case the node should be deleted manually by the user.
To delete a node you can use the following two methods:
- deleteLater() - performs delayed deletion, in this case the object will be deleted during the next swap stage of the main loop (rendering of the object ceases immediately, but it still exists in memory for a while, so you can get it from its parent, for example). This method simplifies object deletion from a secondary thread, so you can call it and forget about the details, letting the Engine take control over the process of deletion, which can be used for future optimizations.
- deleteForce() - performs immediate deletion, which might be necessary in some cases. Calling this method for main-loop-dependent objects (e.g., nodes) is safe only when performed from the Main thread.
// AppWorldLogic.cpp
#include <UnigineNode.h>
#include <UnigineObjects.h>
#include <UnigineWorld.h>
#include <UnigineEditor.h>
#include <UnigineConsole.h>
using namespace Unigine;
using namespace Math;
int AppWorldLogic::init() {
// create a mesh
MeshPtr mesh = Mesh::create();
mesh->addBoxSurface("box_0", vec3(1.0f));
// save a mesh into a file on the disk
mesh->save("unigine_project/meshes/my_mesh.mesh");
// create an instance of any class inherited from the Node class (e.g. ObjectMeshStatic)
ObjectMeshStaticPtr object_mesh = ObjectMeshStatic::create("unigine_project/meshes/my_mesh.mesh");
// declare a smart pointer for the node
// and obtain the node pointer from the created NodeDummy
NodePtr node = object_mesh;
// do something with the node
// ...
// delete the node
node.deleteLater();
return 1;
}
Node Class
Перечисления (Enums)
TYPE#
Имя | Описание |
---|---|
ANY_TYPE = -1 | Any node type. |
NODE_BEGIN = 0 | Begin of the nodes range. |
NODE_DUMMY = 0 | Dummy node. See the NodeDummy class. |
NODE_LAYER = 1 | Layer node. See the NodeLayer class. |
NODE_TRIGGER = 2 | Dummy node that can fire callbacks on its enabling/disabling or repositioning. See the NodeTrigger class. |
NODE_REFERENCE = 3 | Node reference that refers to an external NODE file. See the NodeReference class. |
NODE_EXTERN = 4 | Extern node. See the NodeExtern class. |
NODE_ANIMATION_PLAYBACK = 5 | Animation playback node. See the NodeAnimationPlayback class. |
NODE_END = 5 | End of the nodes range. |
WORLD_BEGIN = 6 | Begin of the world nodes range. |
WORLD_SPLINE_GRAPH = 6 | World spline graph. See the WorldSplineGraph class. |
WORLD_TRIGGER = 7 | World trigger. See the WorldTrigger class. |
WORLD_CLUTTER = 8 | World clutter. See the WorldClutter class. |
WORLD_SWITCHER = 9 | Node switcher (to switch off parts of the world). See the WorldSwitcher class. |
WORLD_OCCLUDER = 10 | World occluder. See the WorldOccluder class. |
WORLD_OCCLUDER_MESH = 11 | World mesh occluder. See the WorldOccluderMesh class. |
WORLD_TRANSFORM_PATH = 12 | Path defined transformer. See the WorldTransformPath |
WORLD_TRANSFORM_BONE = 13 | Bone defined transformer. See the WorldTransformBone class. |
WORLD_EXPRESSION = 14 | Node which allows to execute arbitrary expression. See the WorldExpression class. |
WORLD_EXTERN = 15 | External world. See the WorldExtern class. |
WORLD_END = 15 | End of the world nodes range. |
GEODETIC_BEGIN = 16 | Begin of the geodetic nodes range. |
GEODETIC_PIVOT = 16 | Geodetic Pivot node. See the GeodeticPivot class. |
GEODETIC_END = 16 | End of the geodetic nodes range. |
FIELD_BEGIN = 17 | Begin of the field nodes range. |
FIELD_SPACER = 17 | Field Spacer node. See the FieldSpacer class. |
FIELD_ANIMATION = 18 | Field Animation node. See the FieldAnimation class. |
FIELD_HEIGHT = 19 | Field Height node. See the FieldHeight class. |
FIELD_SHORELINE = 20 | Field Shoreline node. See the FieldShoreline class. |
FIELD_WEATHER = 21 | Field Weather node. See the FieldWeather class. |
FIELD_END = 21 | End of the field nodes range. |
PARTICLES_FIELD_BEGIN = 22 | Beginning of the particles field range. |
PARTICLES_FIELD_SPACER = 22 | Particles Field Spacer node. See the ParticlesFieldSpacer class. |
PARTICLES_FIELD_DEFLECTOR = 23 | Particles Field Deflector node. See the ParticlesFieldDeflector class. |
PARTICLES_FIELD_END = 23 | End of the particles field nodes range. |
LIGHT_BEGIN = 24 | Begin of the light nodes range. |
LIGHT_VOXEL_PROBE = 24 | Voxel probe. See the LightVoxelProbe class. |
LIGHT_ENVIRONMENT_PROBE = 25 | Environment probe. See the LightEnvironmentProbe class. |
LIGHT_PLANAR_PROBE = 26 | Planar probe. See the LightPlanarProbe class. |
LIGHT_OMNI = 27 | Omni-directional light source. See the LightOmni class. |
LIGHT_PROJ = 28 | Projected light source. See the LightProj class. |
LIGHT_WORLD = 29 | World light source. See the LightWorld class. |
LIGHT_END = 29 | End of the light nodes range. |
DECAL_BEGIN = 30 | Begin of the decal nodes range. |
DECAL_PROJ = 30 | Projected decal node. See the DecalProj class. |
DECAL_ORTHO = 31 | Orthographic decal node. See the DecalOrtho class. |
DECAL_MESH = 32 | Mesh decal node. See the DecalMesh class. |
DECAL_END = 32 | End of the decal nodes range. |
LANDSCAPE_LAYER_BEGIN = 33 | Beginning of the landscape layers range. |
LANDSCAPE_LAYER_MAP = 33 | Landscape Layer Map. See the LandscapeLayerMap class. |
LANDSCAPE_LAYER_END = 33 | End of the landscape layers range. |
OBJECT_BEGIN = 34 | Begin of the object nodes range. |
OBJECT_DUMMY = 34 | Dummy object. See the ObjectDummy class. |
OBJECT_DYNAMIC = 35 | Dynamic object. See the ObjectDynamic class. |
OBJECT_MESH_STATIC = 36 | Static mesh object. See the ObjectMeshStatic class. |
OBJECT_MESH_CLUSTER = 37 | Mesh Cluster object. See the ObjectMeshCluster class. |
OBJECT_MESH_CLUTTER = 38 | Mesh Clutter object. See the ObjectMeshClutter class. |
OBJECT_MESH_SKINNED = 39 | Skinned mesh object. See the ObjectMeshSkinned class. |
OBJECT_MESH_DYNAMIC = 40 | Dynamic mesh object. See the ObjectMeshDynamic class. |
OBJECT_MESH_SPLINE_CLUSTER = 41 | Mesh Spline Cluster object. See the ObjectMeshSplineCluster class. |
OBJECT_LANDSCAPE_TERRAIN = 42 | LandscapeTerrain object. See the ObjectLandscapeTerrain class. |
OBJECT_TERRAIN_GLOBAL = 43 | Terrain global object. See the ObjectTerrainGlobal class. |
OBJECT_GRASS = 44 | Grass. See the ObjectGrass class. |
OBJECT_PARTICLES = 45 | Particles object. See the ObjectParticles class. |
OBJECT_BILLBOARDS = 46 | Billboards object for rendering a high number of billboards. See the ObjectBillboard class. |
OBJECT_VOLUME_BOX = 47 | Volume box object. See the ObjectVolumeBox class. |
OBJECT_VOLUME_SPHERE = 48 | Volume sphere object. See the ObjectVolumeSphere class. |
OBJECT_VOLUME_OMNI = 49 | Volume omni light object. See the ObjectVolumeOmni class. |
OBJECT_VOLUME_PROJ = 50 | Volume projected light object. See the ObjectVolumeProj class. |
OBJECT_GUI = 51 | GUI object. See the ObjectGui class. |
OBJECT_GUI_MESH = 52 | GUI mesh object. See the ObjectGuiMesh class. |
OBJECT_WATER_GLOBAL = 53 | Water global object. See the ObjectWaterGlobal class. |
OBJECT_WATER_MESH = 54 | Water mesh object. See the ObjectWaterMesh class. |
OBJECT_SKY = 55 | Sky object. See the ObjectSky class. |
OBJECT_CLOUD_LAYER = 56 | Cloud layer object. See the ObjectCloudLayer class. |
OBJECT_EXTERN = 57 | Extern object. See the ObjectExtern class. |
OBJECT_TEXT = 58 | Text object. See the ObjectText class. |
OBJECT_END = 58 | End of the object nodes range. |
PLAYER_BEGIN = 59 | Begin of the player nodes range. |
PLAYER_DUMMY = 59 | Dummy player. See the PlayerDummy class. |
PLAYER_SPECTATOR = 60 | Observing player. See the PlayerSpectator class. |
PLAYER_PERSECUTOR = 61 | Persecuting player. See the PlayerPersecutor class. |
PLAYER_ACTOR = 62 | Acting player. See the PlayerActor class. |
PLAYER_END = 62 | End of the player nodes range. |
PHYSICAL_BEGIN = 63 | Begin of the physical nodes range. |
PHYSICAL_WIND = 63 | Physical wind object. See the PhysicalWind class. |
PHYSICAL_FORCE = 64 | Physical force node that allows to simulate point forces applied to dynamic objects. See the PhysicalForce class. |
PHYSICAL_NOISE = 65 | Physical noise node that allows to simulate force field. See the PhysicalNoise class. |
PHYSICAL_WATER = 66 | Physical water object that has no visual representation. See the PhysicalWater class. |
PHYSICAL_TRIGGER = 67 | Physical trigger. See the PhysicalTrigger class. |
PHYSICAL_END = 67 | End of the physical nodes range. |
NAVIGATION_BEGIN = 68 | Begin of the navigation nodes range. |
NAVIGATION_SECTOR = 68 | Sector within which pathfinding is performed. See the NavigationSector class. |
NAVIGATION_MESH = 69 | Mesh-based navigation area across which pathfinding is performed. See the NavigationMesh class. |
NAVIGATION_END = 69 | End of the navigation nodes range. |
OBSTACLE_BEGIN = 70 | Begin of the obstacle nodes range. |
OBSTACLE_BOX = 70 | Obstacle in the shape of a box avoided by pathfinding. See the ObstacleBox class. |
OBSTACLE_SPHERE = 71 | Obstacle in the shape of a sphere avoided by pathfinding. See the ObstacleSphere class. |
OBSTACLE_CAPSULE = 72 | Obstacle in the shape of a capsule avoided by pathfinding. See the ObstacleCapsule class. |
OBSTACLE_END = 72 | End of the obstacle nodes range. |
SOUND_BEGIN = 73 | Begin of the sound nodes range. |
SOUND_SOURCE = 73 | Sound source. See the SoundSource class. |
SOUND_REVERB = 74 | Sound reverberation zone. See the SoundReverb class. |
SOUND_END = 74 | End of the sound nodes range. |
NUM_NODES = 75 | Counter of node types. |
NUM_WORLDS = WORLD_END - WORLD_BEGIN + 1 | Counter of world node types. |
NUM_GEODETICS = GEODETIC_END - GEODETIC_BEGIN + 1 | Counter of geodetic node types. |
NUM_FIELDS = FIELD_END - FIELD_BEGIN + 1 | Counter of field node types. |
NUM_PARTICLES_FIELDS = PARTICLES_FIELD_END - PARTICLES_FIELD_BEGIN + 1 | Counter of particles field node types. |
NUM_LIGHTS = LIGHT_END - LIGHT_BEGIN + 1 | Counter of light node types. |
NUM_DECALS = DECAL_END - DECAL_BEGIN + 1 | Counter of decal node types. |
NUM_OBJECTS = OBJECT_END - OBJECT_BEGIN + 1 | Counter of object node types. |
NUM_PLAYERS = PLAYER_END - PLAYER_BEGIN + 1 | Counter of player node types. |
NUM_PHYSICALS = PHYSICAL_END - PHYSICAL_BEGIN + 1 | Counter of physical node types. |
NUM_NAVIGATIONS = NAVIGATION_END - NAVIGATION_BEGIN + 1 | Counter of navigation node types. |
NUM_OBSTACLES = OBSTACLE_BEGIN - OBSTACLE_END + 1 | Counter of obstacle node types. |
NUM_SOUNDS = SOUND_END - SOUND_BEGIN + 1 | Counter of sound node types. |
DUMMY = 0 | Dummy node. See the NodeDummy class. |
LAYER = 1 | Layer node. See the NodeLayer class. |
TRIGGER = 2 | Dummy node that can fire callbacks on its enabling/disabling or repositioning. See the NodeTrigger class. |
REFERENCE = 3 | Node reference that refers to an external NODE file. See the NodeReference class. |
EXTERN = 4 | Extern node. See the NodeExtern class. |
LIFETIME#
Members
Ptr<GeodeticPivot> getGeodeticPivot() const#
Return value
Current geodetic pivot, or NULL if the node is not a child of a geodetic pivot node.void setVariable ( const Variable & variable ) #
Arguments
- const Variable & variable - The variable value.
const Variable & getVariable() const#
Return value
Current variable value.void setWorldScale ( const Math::vec3& scale ) #
Arguments
- const Math::vec3& scale - The node scale in the world space.
Math::vec3 getWorldScale() const#
Return value
Current node scale in the world space.void setWorldPosition ( const Math::Vec3& position ) #
Arguments
- const Math::Vec3& position - The node position in the world coordinates.
Math::Vec3 getWorldPosition() const#
Return value
Current node position in the world coordinates.void setScale ( const Math::vec3& scale ) #
Arguments
- const Math::vec3& scale - The node scale in the local space.
Math::vec3 getScale() const#
Return value
Current node scale in the local space.void setPosition ( const Math::Vec3& position ) #
Arguments
- const Math::Vec3& position - The node position in the local space.
Math::Vec3 getPosition() const#
Return value
Current node position in the local space.Math::vec3 getBodyAngularVelocity() const#
Return value
Current angular velocity of the node's physical body in the world space.Math::vec3 getBodyLinearVelocity() const#
Return value
Current linear velocity of the node's physical body in the local space.Ptr<BodyRigid> getObjectBodyRigid() const#
Return value
Current rigid body assigned to the node if it is an object node; otherwise, NULL (0).Ptr<Body> getObjectBody() const#
Return value
Current physical body assigned to the node if it is an object node; otherwise, NULL (0).Math::WorldBoundSphere getWorldBoundSphere() const#
Return value
Current bounding sphere of the node in world's coordinate system.Math::WorldBoundBox getWorldBoundBox() const#
Return value
Current world bounding box.Math::BoundSphere getBoundSphere() const#
Return value
Current bounding sphere of the node.Math::BoundBox getBoundBox() const#
Return value
Current bounding box of the node.void setOldWorldTransform ( const Math::Mat4& transform ) #
Arguments
- const Math::Mat4& transform - The old (previous frame) transformation matrix for the node in the world coordinates.
Math::Mat4 getOldWorldTransform() const#
Return value
Current old (previous frame) transformation matrix for the node in the world coordinates.void setWorldTransform ( const Math::Mat4& transform ) #
Arguments
- const Math::Mat4& transform - The transformation matrix of the node in the world coordinates.
Math::Mat4 getWorldTransform() const#
Return value
Current transformation matrix of the node in the world coordinates.void setTransform ( const Math::Mat4& transform ) #
Arguments
- const Math::Mat4& transform - The transformation matrix of the node in local coordinates.
Math::Mat4 getTransform() const#
Return value
Current transformation matrix of the node in local coordinates.int getNumProperties() const#
Return value
Current total number of properties associated with the node.Ptr<Node> getPossessor() const#
- NodeReference
- WorldCluster
- WorldClutter
- WorldLayer
Return value
Current node posessor, if it exists; otherwise, NULL.int getNumChildren() const#
Return value
Current number of child nodes.Ptr<Node> getRootNode() const#
Return value
Current root node for the node.void setParent ( const Ptr<Node>& parent ) #
Arguments
- const Ptr<Node>& parent - The parent of the node or NULL (0), if the node has no parent.
Ptr<Node> getParent() const#
Return value
Current parent of the node or NULL (0), if the node has no parent.int getNumAncestors() const#
Return value
Current number of ancestors of the node.void setName ( const char * name ) #
Arguments
- const char * name - The name of the node.
const char * getName() const#
Return value
Current name of the node.void setQuery ( bool query ) #
Arguments
- bool query - Set true to enable occlusion query is used for the node; false - to disable it.
bool isQuery() const#
Return value
true if occlusion query is used for the node; otherwise false.void setClutterInteractionEnabled ( bool enabled ) #
Arguments
- bool enabled - Set true to enable interaction with World Clutters and Mesh Clutters; false - to disable it.
bool isClutterInteractionEnabled() const#
Return value
true if interaction with World Clutters and Mesh Clutters is enabled; otherwise false.void setGrassInteractionEnabled ( bool enabled ) #
Arguments
- bool enabled - Set true to enable interaction with Grass nodes; false - to disable it.
bool isGrassInteractionEnabled() const#
Return value
true if interaction with Grass nodes is enabled; otherwise false.void setTriggerInteractionEnabled ( bool enabled ) #
Arguments
- bool enabled - Set true to enable interaction with World Triggers; false - to disable it.
bool isTriggerInteractionEnabled() const#
Return value
true if interaction with World Triggers is enabled; otherwise false.void setImmovable ( bool immovable ) #
Arguments
- bool immovable - Set true to enable the feature of the clutter (immovable) object for the node; false - to disable it.
bool isImmovable() const#
Return value
true if the feature of the clutter (immovable) object for the node; otherwise false.void setHandled ( bool handled ) #
Arguments
- bool handled - Set true to enable displaying of the node handle; false - to disable it.
bool isHandled() const#
Return value
true if displaying of the node handle is enabled; otherwise false.void setEnabled ( bool enabled ) #
Arguments
- bool enabled - Set true to enable the node; false - to disable it.
bool isEnabled() const#
Return value
true if the node is enabled; otherwise false.bool isExtern() const#
Return value
true if the node is an extern node; otherwise false.bool isField() const#
Return value
true if the node is a field node; otherwise false.bool isParticlesField() const#
Return value
true if the node is a particles field node; otherwise false.bool isSound() const#
Return value
true if the node is a sound node; otherwise false.bool isObstacle() const#
Return value
true if the node is an obstacle node; otherwise false.bool isNavigation() const#
Return value
true if the node is a navigation node; otherwise false.bool isPhysical() const#
Return value
true if the node is a physical node; otherwise false.bool isPlayer() const#
Return value
true if the node is a player node; otherwise false.bool isObject() const#
Return value
true if the node is an object node; otherwise false.bool isDecal() const#
Return value
true if the node is a decal node; otherwise false.bool isLight() const#
Return value
true if the node is a light source; otherwise false.bool isGeodetic() const#
Return value
true if the node is a geodetic-related node; otherwise false.bool isWorld() const#
Return value
true if the node is a world node; otherwise false.bool isImmovableSupported() const#
Return value
true if the node can be immovable; otherwise false.bool isSurfacesCollisionSupported() const#
Return value
true if collisions with node surfaces are supported; otherwise false.bool isSurfacesIntersectionSupported() const#
Return value
true if intersections with node surfaces are supported; otherwise false.const char * getTypeName() const#
Return value
Current name of the node type.Node::TYPE getType() const#
Return value
Current node type identifier.void setID ( int id ) #
Arguments
- int id - The ID of the node.
int getID() const#
Return value
Current ID of the node.void setSaveToWorldEnabled ( bool enabled ) #
Arguments
- bool enabled - Set true to enable saving to *.world file for the node and all its children (if any); false - to disable it.
bool isSaveToWorldEnabled() const#
Return value
true if saving to *.world file for the node and all its children (if any) is enabled; otherwise false.bool isSaveToWorldEnabledSelf() const#
Return value
true if saving to *.world file for the node is enabled; otherwise false.void setShowInEditorEnabled ( bool enabled ) #
Arguments
- bool enabled - Set true to enable displaying in the World Hierarchy window of the UnigineEditor for the node; false - to disable it.
bool isShowInEditorEnabled() const#
Return value
true if displaying in the World Hierarchy window of the UnigineEditor for the node is enabled; otherwise false.bool isShowInEditorEnabledSelf() const#
Return value
true if displaying in the World Hierarchy window of the UnigineEditor for the node is enabled; otherwise false.int getNumWorldTriggers() const#
Return value
Current number of World Triggers inside which the node is located at the moment, or 0 if the node is not currently inside any World Trigger.Math::WorldBoundSphere getSpatialBoundSphere() const#
Return value
Current bounding sphere with world coordinates.Math::WorldBoundBox getSpatialBoundBox() const#
Return value
Current bounding box with world coordinates.bool isLandscapeLayer() const#
Return value
true if the node is a landscape layer is enabled; otherwise false.Math::Mat4 getIWorldTransform() const#
Return value
Current inverse transformation matrix.Math::Vec3 getOldWorldPosition() const#
Return value
Current old (previous frame) position of the node in the world coordinates.void setLifetime ( Node::LIFETIME lifetime ) #
Arguments
- Node::LIFETIME lifetime - The lifetime management type for the root node (see the LIFETIME enum).
Node::LIFETIME getLifetime() const#
Return value
Current lifetime management type for the root node (see the LIFETIME enum).static Event<const Ptr<Node> &, const Ptr<Node> &> getEventNodeSwap() const#
Usage Example
// implement the NodeSwap event handler
void nodeswap_event_handler(const Ptr<Node> & first_node, const Ptr<Node> & second_node)
{
Log::message("\Handling NodeSwap event\n");
}
//////////////////////////////////////////////////////////////////////////////
// 1. Multiple subscriptions can be linked to an instance of the EventConnections
// class that you can use later to remove all these subscriptions at once
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnections class
EventConnections nodeswap_event_connections;
// link to this instance when subscribing to an event (subscription to various events can be linked)
Node::getEventNodeSwap().connect(nodeswap_event_connections, nodeswap_event_handler);
// other subscriptions are also linked to this EventConnections instance
// (e.g. you can subscribe using lambdas)
Node::getEventNodeSwap().connect(nodeswap_event_connections, [](const Ptr<Node> & first_node, const Ptr<Node> & second_node) {
Log::message("\Handling NodeSwap event (lambda).\n");
}
);
// ...
// later all of these linked subscriptions can be removed with a single line
nodeswap_event_connections.disconnectAll();
//////////////////////////////////////////////////////////////////////////////
// 2. You can subscribe and unsubscribe via an instance of the EventConnection
// class. And toggle this particular connection off and on, when necessary.
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnection class
EventConnection nodeswap_event_connection;
// subscribe to the NodeSwap event with a handler function keeping the connection
Node::getEventNodeSwap().connect(nodeswap_event_connection, nodeswap_event_handler);
// ...
// you can temporarily disable a particular event connection to perform certain actions
nodeswap_event_connection.setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
nodeswap_event_connection.setEnabled(true);
// ...
// remove subscription to the NodeSwap event via the connection
nodeswap_event_connection.disconnect();
//////////////////////////////////////////////////////////////////////////////
// 3. You can add EventConnection/EventConnections instance as a member of the
// class that handles the event. In this case all linked subscriptions will be
// automatically removed when class destructor is called
//////////////////////////////////////////////////////////////////////////////
// Class handling the event
class SomeClass
{
public:
// instance of the EventConnections class as a class member
EventConnections e_connections;
// A NodeSwap event handler implemented as a class member
void event_handler(const Ptr<Node> & first_node, const Ptr<Node> & second_node)
{
Log::message("\Handling NodeSwap event\n");
// ...
}
};
SomeClass *sc = new SomeClass();
// ...
// specify a class instance in case a handler method belongs to some class
Node::getEventNodeSwap().connect(sc->e_connections, sc, &SomeClass::event_handler);
// ...
// handler class instance is deleted with all its subscriptions removed automatically
delete sc;
//////////////////////////////////////////////////////////////////////////////
// 4. Subscribe to an event saving a particular connection ID
// and unsubscribe later by this ID
//////////////////////////////////////////////////////////////////////////////
// instance of the EventConnections class to manage event connections
EventConnections e_connections;
// define a particular connection ID to be used to unsubscribe later
EventConnectionId nodeswap_handler_id;
// subscribe to the NodeSwap event with a lambda handler function and keeping connection ID
nodeswap_handler_id = Node::getEventNodeSwap().connect(e_connections, [](const Ptr<Node> & first_node, const Ptr<Node> & second_node) {
Log::message("\Handling NodeSwap event (lambda).\n");
}
);
// remove the subscription later using the ID
Node::getEventNodeSwap().disconnect(nodeswap_handler_id);
//////////////////////////////////////////////////////////////////////////////
// 5. Ignoring all NodeSwap events when necessary
//////////////////////////////////////////////////////////////////////////////
// you can temporarily disable the event to perform certain actions without triggering it
Node::getEventNodeSwap().setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
Node::getEventNodeSwap().setEnabled(true);
Return value
Event reference.static Event<const Ptr<Node> &, const Ptr<Node> &> getEventNodeClone() const#
Usage Example
// implement the NodeClone event handler
void nodeclone_event_handler(const Ptr<Node> & node_clone, const Ptr<Node> & node_original)
{
Log::message("\Handling NodeClone event\n");
}
//////////////////////////////////////////////////////////////////////////////
// 1. Multiple subscriptions can be linked to an instance of the EventConnections
// class that you can use later to remove all these subscriptions at once
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnections class
EventConnections nodeclone_event_connections;
// link to this instance when subscribing to an event (subscription to various events can be linked)
Node::getEventNodeClone().connect(nodeclone_event_connections, nodeclone_event_handler);
// other subscriptions are also linked to this EventConnections instance
// (e.g. you can subscribe using lambdas)
Node::getEventNodeClone().connect(nodeclone_event_connections, [](const Ptr<Node> & node_clone, const Ptr<Node> & node_original) {
Log::message("\Handling NodeClone event (lambda).\n");
}
);
// ...
// later all of these linked subscriptions can be removed with a single line
nodeclone_event_connections.disconnectAll();
//////////////////////////////////////////////////////////////////////////////
// 2. You can subscribe and unsubscribe via an instance of the EventConnection
// class. And toggle this particular connection off and on, when necessary.
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnection class
EventConnection nodeclone_event_connection;
// subscribe to the NodeClone event with a handler function keeping the connection
Node::getEventNodeClone().connect(nodeclone_event_connection, nodeclone_event_handler);
// ...
// you can temporarily disable a particular event connection to perform certain actions
nodeclone_event_connection.setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
nodeclone_event_connection.setEnabled(true);
// ...
// remove subscription to the NodeClone event via the connection
nodeclone_event_connection.disconnect();
//////////////////////////////////////////////////////////////////////////////
// 3. You can add EventConnection/EventConnections instance as a member of the
// class that handles the event. In this case all linked subscriptions will be
// automatically removed when class destructor is called
//////////////////////////////////////////////////////////////////////////////
// Class handling the event
class SomeClass
{
public:
// instance of the EventConnections class as a class member
EventConnections e_connections;
// A NodeClone event handler implemented as a class member
void event_handler(const Ptr<Node> & node_clone, const Ptr<Node> & node_original)
{
Log::message("\Handling NodeClone event\n");
// ...
}
};
SomeClass *sc = new SomeClass();
// ...
// specify a class instance in case a handler method belongs to some class
Node::getEventNodeClone().connect(sc->e_connections, sc, &SomeClass::event_handler);
// ...
// handler class instance is deleted with all its subscriptions removed automatically
delete sc;
//////////////////////////////////////////////////////////////////////////////
// 4. Subscribe to an event saving a particular connection ID
// and unsubscribe later by this ID
//////////////////////////////////////////////////////////////////////////////
// instance of the EventConnections class to manage event connections
EventConnections e_connections;
// define a particular connection ID to be used to unsubscribe later
EventConnectionId nodeclone_handler_id;
// subscribe to the NodeClone event with a lambda handler function and keeping connection ID
nodeclone_handler_id = Node::getEventNodeClone().connect(e_connections, [](const Ptr<Node> & node_clone, const Ptr<Node> & node_original) {
Log::message("\Handling NodeClone event (lambda).\n");
}
);
// remove the subscription later using the ID
Node::getEventNodeClone().disconnect(nodeclone_handler_id);
//////////////////////////////////////////////////////////////////////////////
// 5. Ignoring all NodeClone events when necessary
//////////////////////////////////////////////////////////////////////////////
// you can temporarily disable the event to perform certain actions without triggering it
Node::getEventNodeClone().setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
Node::getEventNodeClone().setEnabled(true);
Return value
Event reference.static Event<const Ptr<Node> &> getEventNodeChangeEnabled() const#
Usage Example
// implement the NodeChangeEnabled event handler
void nodechangeenabled_event_handler(const Ptr<Node> & node)
{
Log::message("\Handling NodeChangeEnabled event\n");
}
//////////////////////////////////////////////////////////////////////////////
// 1. Multiple subscriptions can be linked to an instance of the EventConnections
// class that you can use later to remove all these subscriptions at once
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnections class
EventConnections nodechangeenabled_event_connections;
// link to this instance when subscribing to an event (subscription to various events can be linked)
Node::getEventNodeChangeEnabled().connect(nodechangeenabled_event_connections, nodechangeenabled_event_handler);
// other subscriptions are also linked to this EventConnections instance
// (e.g. you can subscribe using lambdas)
Node::getEventNodeChangeEnabled().connect(nodechangeenabled_event_connections, [](const Ptr<Node> & node) {
Log::message("\Handling NodeChangeEnabled event (lambda).\n");
}
);
// ...
// later all of these linked subscriptions can be removed with a single line
nodechangeenabled_event_connections.disconnectAll();
//////////////////////////////////////////////////////////////////////////////
// 2. You can subscribe and unsubscribe via an instance of the EventConnection
// class. And toggle this particular connection off and on, when necessary.
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnection class
EventConnection nodechangeenabled_event_connection;
// subscribe to the NodeChangeEnabled event with a handler function keeping the connection
Node::getEventNodeChangeEnabled().connect(nodechangeenabled_event_connection, nodechangeenabled_event_handler);
// ...
// you can temporarily disable a particular event connection to perform certain actions
nodechangeenabled_event_connection.setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
nodechangeenabled_event_connection.setEnabled(true);
// ...
// remove subscription to the NodeChangeEnabled event via the connection
nodechangeenabled_event_connection.disconnect();
//////////////////////////////////////////////////////////////////////////////
// 3. You can add EventConnection/EventConnections instance as a member of the
// class that handles the event. In this case all linked subscriptions will be
// automatically removed when class destructor is called
//////////////////////////////////////////////////////////////////////////////
// Class handling the event
class SomeClass
{
public:
// instance of the EventConnections class as a class member
EventConnections e_connections;
// A NodeChangeEnabled event handler implemented as a class member
void event_handler(const Ptr<Node> & node)
{
Log::message("\Handling NodeChangeEnabled event\n");
// ...
}
};
SomeClass *sc = new SomeClass();
// ...
// specify a class instance in case a handler method belongs to some class
Node::getEventNodeChangeEnabled().connect(sc->e_connections, sc, &SomeClass::event_handler);
// ...
// handler class instance is deleted with all its subscriptions removed automatically
delete sc;
//////////////////////////////////////////////////////////////////////////////
// 4. Subscribe to an event saving a particular connection ID
// and unsubscribe later by this ID
//////////////////////////////////////////////////////////////////////////////
// instance of the EventConnections class to manage event connections
EventConnections e_connections;
// define a particular connection ID to be used to unsubscribe later
EventConnectionId nodechangeenabled_handler_id;
// subscribe to the NodeChangeEnabled event with a lambda handler function and keeping connection ID
nodechangeenabled_handler_id = Node::getEventNodeChangeEnabled().connect(e_connections, [](const Ptr<Node> & node) {
Log::message("\Handling NodeChangeEnabled event (lambda).\n");
}
);
// remove the subscription later using the ID
Node::getEventNodeChangeEnabled().disconnect(nodechangeenabled_handler_id);
//////////////////////////////////////////////////////////////////////////////
// 5. Ignoring all NodeChangeEnabled events when necessary
//////////////////////////////////////////////////////////////////////////////
// you can temporarily disable the event to perform certain actions without triggering it
Node::getEventNodeChangeEnabled().setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
Node::getEventNodeChangeEnabled().setEnabled(true);
Return value
Event reference.static Event<const Ptr<Node> &> getEventNodeRemove() const#
Usage Example
// implement the NodeRemove event handler
void noderemove_event_handler(const Ptr<Node> & node)
{
Log::message("\Handling NodeRemove event\n");
}
//////////////////////////////////////////////////////////////////////////////
// 1. Multiple subscriptions can be linked to an instance of the EventConnections
// class that you can use later to remove all these subscriptions at once
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnections class
EventConnections noderemove_event_connections;
// link to this instance when subscribing to an event (subscription to various events can be linked)
Node::getEventNodeRemove().connect(noderemove_event_connections, noderemove_event_handler);
// other subscriptions are also linked to this EventConnections instance
// (e.g. you can subscribe using lambdas)
Node::getEventNodeRemove().connect(noderemove_event_connections, [](const Ptr<Node> & node) {
Log::message("\Handling NodeRemove event (lambda).\n");
}
);
// ...
// later all of these linked subscriptions can be removed with a single line
noderemove_event_connections.disconnectAll();
//////////////////////////////////////////////////////////////////////////////
// 2. You can subscribe and unsubscribe via an instance of the EventConnection
// class. And toggle this particular connection off and on, when necessary.
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnection class
EventConnection noderemove_event_connection;
// subscribe to the NodeRemove event with a handler function keeping the connection
Node::getEventNodeRemove().connect(noderemove_event_connection, noderemove_event_handler);
// ...
// you can temporarily disable a particular event connection to perform certain actions
noderemove_event_connection.setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
noderemove_event_connection.setEnabled(true);
// ...
// remove subscription to the NodeRemove event via the connection
noderemove_event_connection.disconnect();
//////////////////////////////////////////////////////////////////////////////
// 3. You can add EventConnection/EventConnections instance as a member of the
// class that handles the event. In this case all linked subscriptions will be
// automatically removed when class destructor is called
//////////////////////////////////////////////////////////////////////////////
// Class handling the event
class SomeClass
{
public:
// instance of the EventConnections class as a class member
EventConnections e_connections;
// A NodeRemove event handler implemented as a class member
void event_handler(const Ptr<Node> & node)
{
Log::message("\Handling NodeRemove event\n");
// ...
}
};
SomeClass *sc = new SomeClass();
// ...
// specify a class instance in case a handler method belongs to some class
Node::getEventNodeRemove().connect(sc->e_connections, sc, &SomeClass::event_handler);
// ...
// handler class instance is deleted with all its subscriptions removed automatically
delete sc;
//////////////////////////////////////////////////////////////////////////////
// 4. Subscribe to an event saving a particular connection ID
// and unsubscribe later by this ID
//////////////////////////////////////////////////////////////////////////////
// instance of the EventConnections class to manage event connections
EventConnections e_connections;
// define a particular connection ID to be used to unsubscribe later
EventConnectionId noderemove_handler_id;
// subscribe to the NodeRemove event with a lambda handler function and keeping connection ID
noderemove_handler_id = Node::getEventNodeRemove().connect(e_connections, [](const Ptr<Node> & node) {
Log::message("\Handling NodeRemove event (lambda).\n");
}
);
// remove the subscription later using the ID
Node::getEventNodeRemove().disconnect(noderemove_handler_id);
//////////////////////////////////////////////////////////////////////////////
// 5. Ignoring all NodeRemove events when necessary
//////////////////////////////////////////////////////////////////////////////
// you can temporarily disable the event to perform certain actions without triggering it
Node::getEventNodeRemove().setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
Node::getEventNodeRemove().setEnabled(true);
Return value
Event reference.static Event<const Ptr<Node> &> getEventNodeLoad() const#
Usage Example
// implement the NodeLoad event handler
void nodeload_event_handler(const Ptr<Node> & node)
{
Log::message("\Handling NodeLoad event\n");
}
//////////////////////////////////////////////////////////////////////////////
// 1. Multiple subscriptions can be linked to an instance of the EventConnections
// class that you can use later to remove all these subscriptions at once
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnections class
EventConnections nodeload_event_connections;
// link to this instance when subscribing to an event (subscription to various events can be linked)
Node::getEventNodeLoad().connect(nodeload_event_connections, nodeload_event_handler);
// other subscriptions are also linked to this EventConnections instance
// (e.g. you can subscribe using lambdas)
Node::getEventNodeLoad().connect(nodeload_event_connections, [](const Ptr<Node> & node) {
Log::message("\Handling NodeLoad event (lambda).\n");
}
);
// ...
// later all of these linked subscriptions can be removed with a single line
nodeload_event_connections.disconnectAll();
//////////////////////////////////////////////////////////////////////////////
// 2. You can subscribe and unsubscribe via an instance of the EventConnection
// class. And toggle this particular connection off and on, when necessary.
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnection class
EventConnection nodeload_event_connection;
// subscribe to the NodeLoad event with a handler function keeping the connection
Node::getEventNodeLoad().connect(nodeload_event_connection, nodeload_event_handler);
// ...
// you can temporarily disable a particular event connection to perform certain actions
nodeload_event_connection.setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
nodeload_event_connection.setEnabled(true);
// ...
// remove subscription to the NodeLoad event via the connection
nodeload_event_connection.disconnect();
//////////////////////////////////////////////////////////////////////////////
// 3. You can add EventConnection/EventConnections instance as a member of the
// class that handles the event. In this case all linked subscriptions will be
// automatically removed when class destructor is called
//////////////////////////////////////////////////////////////////////////////
// Class handling the event
class SomeClass
{
public:
// instance of the EventConnections class as a class member
EventConnections e_connections;
// A NodeLoad event handler implemented as a class member
void event_handler(const Ptr<Node> & node)
{
Log::message("\Handling NodeLoad event\n");
// ...
}
};
SomeClass *sc = new SomeClass();
// ...
// specify a class instance in case a handler method belongs to some class
Node::getEventNodeLoad().connect(sc->e_connections, sc, &SomeClass::event_handler);
// ...
// handler class instance is deleted with all its subscriptions removed automatically
delete sc;
//////////////////////////////////////////////////////////////////////////////
// 4. Subscribe to an event saving a particular connection ID
// and unsubscribe later by this ID
//////////////////////////////////////////////////////////////////////////////
// instance of the EventConnections class to manage event connections
EventConnections e_connections;
// define a particular connection ID to be used to unsubscribe later
EventConnectionId nodeload_handler_id;
// subscribe to the NodeLoad event with a lambda handler function and keeping connection ID
nodeload_handler_id = Node::getEventNodeLoad().connect(e_connections, [](const Ptr<Node> & node) {
Log::message("\Handling NodeLoad event (lambda).\n");
}
);
// remove the subscription later using the ID
Node::getEventNodeLoad().disconnect(nodeload_handler_id);
//////////////////////////////////////////////////////////////////////////////
// 5. Ignoring all NodeLoad events when necessary
//////////////////////////////////////////////////////////////////////////////
// you can temporarily disable the event to perform certain actions without triggering it
Node::getEventNodeLoad().setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
Node::getEventNodeLoad().setEnabled(true);
Return value
Event reference.static Event<const Ptr<Node> &> getEventCacheNodeAdd() const#
Usage Example
// implement the CacheNodeAdd event handler
void cachenodeadd_event_handler(const Ptr<Node> & node)
{
Log::message("\Handling CacheNodeAdd event\n");
}
//////////////////////////////////////////////////////////////////////////////
// 1. Multiple subscriptions can be linked to an instance of the EventConnections
// class that you can use later to remove all these subscriptions at once
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnections class
EventConnections cachenodeadd_event_connections;
// link to this instance when subscribing to an event (subscription to various events can be linked)
Node::getEventCacheNodeAdd().connect(cachenodeadd_event_connections, cachenodeadd_event_handler);
// other subscriptions are also linked to this EventConnections instance
// (e.g. you can subscribe using lambdas)
Node::getEventCacheNodeAdd().connect(cachenodeadd_event_connections, [](const Ptr<Node> & node) {
Log::message("\Handling CacheNodeAdd event (lambda).\n");
}
);
// ...
// later all of these linked subscriptions can be removed with a single line
cachenodeadd_event_connections.disconnectAll();
//////////////////////////////////////////////////////////////////////////////
// 2. You can subscribe and unsubscribe via an instance of the EventConnection
// class. And toggle this particular connection off and on, when necessary.
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnection class
EventConnection cachenodeadd_event_connection;
// subscribe to the CacheNodeAdd event with a handler function keeping the connection
Node::getEventCacheNodeAdd().connect(cachenodeadd_event_connection, cachenodeadd_event_handler);
// ...
// you can temporarily disable a particular event connection to perform certain actions
cachenodeadd_event_connection.setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
cachenodeadd_event_connection.setEnabled(true);
// ...
// remove subscription to the CacheNodeAdd event via the connection
cachenodeadd_event_connection.disconnect();
//////////////////////////////////////////////////////////////////////////////
// 3. You can add EventConnection/EventConnections instance as a member of the
// class that handles the event. In this case all linked subscriptions will be
// automatically removed when class destructor is called
//////////////////////////////////////////////////////////////////////////////
// Class handling the event
class SomeClass
{
public:
// instance of the EventConnections class as a class member
EventConnections e_connections;
// A CacheNodeAdd event handler implemented as a class member
void event_handler(const Ptr<Node> & node)
{
Log::message("\Handling CacheNodeAdd event\n");
// ...
}
};
SomeClass *sc = new SomeClass();
// ...
// specify a class instance in case a handler method belongs to some class
Node::getEventCacheNodeAdd().connect(sc->e_connections, sc, &SomeClass::event_handler);
// ...
// handler class instance is deleted with all its subscriptions removed automatically
delete sc;
//////////////////////////////////////////////////////////////////////////////
// 4. Subscribe to an event saving a particular connection ID
// and unsubscribe later by this ID
//////////////////////////////////////////////////////////////////////////////
// instance of the EventConnections class to manage event connections
EventConnections e_connections;
// define a particular connection ID to be used to unsubscribe later
EventConnectionId cachenodeadd_handler_id;
// subscribe to the CacheNodeAdd event with a lambda handler function and keeping connection ID
cachenodeadd_handler_id = Node::getEventCacheNodeAdd().connect(e_connections, [](const Ptr<Node> & node) {
Log::message("\Handling CacheNodeAdd event (lambda).\n");
}
);
// remove the subscription later using the ID
Node::getEventCacheNodeAdd().disconnect(cachenodeadd_handler_id);
//////////////////////////////////////////////////////////////////////////////
// 5. Ignoring all CacheNodeAdd events when necessary
//////////////////////////////////////////////////////////////////////////////
// you can temporarily disable the event to perform certain actions without triggering it
Node::getEventCacheNodeAdd().setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
Node::getEventCacheNodeAdd().setEnabled(true);
Return value
Event reference.static Event<const Ptr<Node> &, const Ptr<Property> &> getEventPropertySurfaceRemove() const#
Usage Example
// implement the PropertySurfaceRemove event handler
void propertysurfaceremove_event_handler(const Ptr<Node> & node, const Ptr<Property> & property)
{
Log::message("\Handling PropertySurfaceRemove event\n");
}
//////////////////////////////////////////////////////////////////////////////
// 1. Multiple subscriptions can be linked to an instance of the EventConnections
// class that you can use later to remove all these subscriptions at once
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnections class
EventConnections propertysurfaceremove_event_connections;
// link to this instance when subscribing to an event (subscription to various events can be linked)
Node::getEventPropertySurfaceRemove().connect(propertysurfaceremove_event_connections, propertysurfaceremove_event_handler);
// other subscriptions are also linked to this EventConnections instance
// (e.g. you can subscribe using lambdas)
Node::getEventPropertySurfaceRemove().connect(propertysurfaceremove_event_connections, [](const Ptr<Node> & node, const Ptr<Property> & property) {
Log::message("\Handling PropertySurfaceRemove event (lambda).\n");
}
);
// ...
// later all of these linked subscriptions can be removed with a single line
propertysurfaceremove_event_connections.disconnectAll();
//////////////////////////////////////////////////////////////////////////////
// 2. You can subscribe and unsubscribe via an instance of the EventConnection
// class. And toggle this particular connection off and on, when necessary.
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnection class
EventConnection propertysurfaceremove_event_connection;
// subscribe to the PropertySurfaceRemove event with a handler function keeping the connection
Node::getEventPropertySurfaceRemove().connect(propertysurfaceremove_event_connection, propertysurfaceremove_event_handler);
// ...
// you can temporarily disable a particular event connection to perform certain actions
propertysurfaceremove_event_connection.setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
propertysurfaceremove_event_connection.setEnabled(true);
// ...
// remove subscription to the PropertySurfaceRemove event via the connection
propertysurfaceremove_event_connection.disconnect();
//////////////////////////////////////////////////////////////////////////////
// 3. You can add EventConnection/EventConnections instance as a member of the
// class that handles the event. In this case all linked subscriptions will be
// automatically removed when class destructor is called
//////////////////////////////////////////////////////////////////////////////
// Class handling the event
class SomeClass
{
public:
// instance of the EventConnections class as a class member
EventConnections e_connections;
// A PropertySurfaceRemove event handler implemented as a class member
void event_handler(const Ptr<Node> & node, const Ptr<Property> & property)
{
Log::message("\Handling PropertySurfaceRemove event\n");
// ...
}
};
SomeClass *sc = new SomeClass();
// ...
// specify a class instance in case a handler method belongs to some class
Node::getEventPropertySurfaceRemove().connect(sc->e_connections, sc, &SomeClass::event_handler);
// ...
// handler class instance is deleted with all its subscriptions removed automatically
delete sc;
//////////////////////////////////////////////////////////////////////////////
// 4. Subscribe to an event saving a particular connection ID
// and unsubscribe later by this ID
//////////////////////////////////////////////////////////////////////////////
// instance of the EventConnections class to manage event connections
EventConnections e_connections;
// define a particular connection ID to be used to unsubscribe later
EventConnectionId propertysurfaceremove_handler_id;
// subscribe to the PropertySurfaceRemove event with a lambda handler function and keeping connection ID
propertysurfaceremove_handler_id = Node::getEventPropertySurfaceRemove().connect(e_connections, [](const Ptr<Node> & node, const Ptr<Property> & property) {
Log::message("\Handling PropertySurfaceRemove event (lambda).\n");
}
);
// remove the subscription later using the ID
Node::getEventPropertySurfaceRemove().disconnect(propertysurfaceremove_handler_id);
//////////////////////////////////////////////////////////////////////////////
// 5. Ignoring all PropertySurfaceRemove events when necessary
//////////////////////////////////////////////////////////////////////////////
// you can temporarily disable the event to perform certain actions without triggering it
Node::getEventPropertySurfaceRemove().setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
Node::getEventPropertySurfaceRemove().setEnabled(true);
Return value
Event reference.static Event<const Ptr<Node> &, const Ptr<Property> &> getEventPropertySurfaceAdd() const#
Usage Example
// implement the PropertySurfaceAdd event handler
void propertysurfaceadd_event_handler(const Ptr<Node> & node, const Ptr<Property> & property)
{
Log::message("\Handling PropertySurfaceAdd event\n");
}
//////////////////////////////////////////////////////////////////////////////
// 1. Multiple subscriptions can be linked to an instance of the EventConnections
// class that you can use later to remove all these subscriptions at once
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnections class
EventConnections propertysurfaceadd_event_connections;
// link to this instance when subscribing to an event (subscription to various events can be linked)
Node::getEventPropertySurfaceAdd().connect(propertysurfaceadd_event_connections, propertysurfaceadd_event_handler);
// other subscriptions are also linked to this EventConnections instance
// (e.g. you can subscribe using lambdas)
Node::getEventPropertySurfaceAdd().connect(propertysurfaceadd_event_connections, [](const Ptr<Node> & node, const Ptr<Property> & property) {
Log::message("\Handling PropertySurfaceAdd event (lambda).\n");
}
);
// ...
// later all of these linked subscriptions can be removed with a single line
propertysurfaceadd_event_connections.disconnectAll();
//////////////////////////////////////////////////////////////////////////////
// 2. You can subscribe and unsubscribe via an instance of the EventConnection
// class. And toggle this particular connection off and on, when necessary.
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnection class
EventConnection propertysurfaceadd_event_connection;
// subscribe to the PropertySurfaceAdd event with a handler function keeping the connection
Node::getEventPropertySurfaceAdd().connect(propertysurfaceadd_event_connection, propertysurfaceadd_event_handler);
// ...
// you can temporarily disable a particular event connection to perform certain actions
propertysurfaceadd_event_connection.setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
propertysurfaceadd_event_connection.setEnabled(true);
// ...
// remove subscription to the PropertySurfaceAdd event via the connection
propertysurfaceadd_event_connection.disconnect();
//////////////////////////////////////////////////////////////////////////////
// 3. You can add EventConnection/EventConnections instance as a member of the
// class that handles the event. In this case all linked subscriptions will be
// automatically removed when class destructor is called
//////////////////////////////////////////////////////////////////////////////
// Class handling the event
class SomeClass
{
public:
// instance of the EventConnections class as a class member
EventConnections e_connections;
// A PropertySurfaceAdd event handler implemented as a class member
void event_handler(const Ptr<Node> & node, const Ptr<Property> & property)
{
Log::message("\Handling PropertySurfaceAdd event\n");
// ...
}
};
SomeClass *sc = new SomeClass();
// ...
// specify a class instance in case a handler method belongs to some class
Node::getEventPropertySurfaceAdd().connect(sc->e_connections, sc, &SomeClass::event_handler);
// ...
// handler class instance is deleted with all its subscriptions removed automatically
delete sc;
//////////////////////////////////////////////////////////////////////////////
// 4. Subscribe to an event saving a particular connection ID
// and unsubscribe later by this ID
//////////////////////////////////////////////////////////////////////////////
// instance of the EventConnections class to manage event connections
EventConnections e_connections;
// define a particular connection ID to be used to unsubscribe later
EventConnectionId propertysurfaceadd_handler_id;
// subscribe to the PropertySurfaceAdd event with a lambda handler function and keeping connection ID
propertysurfaceadd_handler_id = Node::getEventPropertySurfaceAdd().connect(e_connections, [](const Ptr<Node> & node, const Ptr<Property> & property) {
Log::message("\Handling PropertySurfaceAdd event (lambda).\n");
}
);
// remove the subscription later using the ID
Node::getEventPropertySurfaceAdd().disconnect(propertysurfaceadd_handler_id);
//////////////////////////////////////////////////////////////////////////////
// 5. Ignoring all PropertySurfaceAdd events when necessary
//////////////////////////////////////////////////////////////////////////////
// you can temporarily disable the event to perform certain actions without triggering it
Node::getEventPropertySurfaceAdd().setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
Node::getEventPropertySurfaceAdd().setEnabled(true);
Return value
Event reference.static Event<const Ptr<Node> &, int, int> getEventPropertyNodeSwap() const#
Usage Example
// implement the PropertyNodeSwap event handler
void propertynodeswap_event_handler(const Ptr<Node> & node, int index_from, int index_to)
{
Log::message("\Handling PropertyNodeSwap event\n");
}
//////////////////////////////////////////////////////////////////////////////
// 1. Multiple subscriptions can be linked to an instance of the EventConnections
// class that you can use later to remove all these subscriptions at once
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnections class
EventConnections propertynodeswap_event_connections;
// link to this instance when subscribing to an event (subscription to various events can be linked)
Node::getEventPropertyNodeSwap().connect(propertynodeswap_event_connections, propertynodeswap_event_handler);
// other subscriptions are also linked to this EventConnections instance
// (e.g. you can subscribe using lambdas)
Node::getEventPropertyNodeSwap().connect(propertynodeswap_event_connections, [](const Ptr<Node> & node, int index_from, int index_to) {
Log::message("\Handling PropertyNodeSwap event (lambda).\n");
}
);
// ...
// later all of these linked subscriptions can be removed with a single line
propertynodeswap_event_connections.disconnectAll();
//////////////////////////////////////////////////////////////////////////////
// 2. You can subscribe and unsubscribe via an instance of the EventConnection
// class. And toggle this particular connection off and on, when necessary.
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnection class
EventConnection propertynodeswap_event_connection;
// subscribe to the PropertyNodeSwap event with a handler function keeping the connection
Node::getEventPropertyNodeSwap().connect(propertynodeswap_event_connection, propertynodeswap_event_handler);
// ...
// you can temporarily disable a particular event connection to perform certain actions
propertynodeswap_event_connection.setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
propertynodeswap_event_connection.setEnabled(true);
// ...
// remove subscription to the PropertyNodeSwap event via the connection
propertynodeswap_event_connection.disconnect();
//////////////////////////////////////////////////////////////////////////////
// 3. You can add EventConnection/EventConnections instance as a member of the
// class that handles the event. In this case all linked subscriptions will be
// automatically removed when class destructor is called
//////////////////////////////////////////////////////////////////////////////
// Class handling the event
class SomeClass
{
public:
// instance of the EventConnections class as a class member
EventConnections e_connections;
// A PropertyNodeSwap event handler implemented as a class member
void event_handler(const Ptr<Node> & node, int index_from, int index_to)
{
Log::message("\Handling PropertyNodeSwap event\n");
// ...
}
};
SomeClass *sc = new SomeClass();
// ...
// specify a class instance in case a handler method belongs to some class
Node::getEventPropertyNodeSwap().connect(sc->e_connections, sc, &SomeClass::event_handler);
// ...
// handler class instance is deleted with all its subscriptions removed automatically
delete sc;
//////////////////////////////////////////////////////////////////////////////
// 4. Subscribe to an event saving a particular connection ID
// and unsubscribe later by this ID
//////////////////////////////////////////////////////////////////////////////
// instance of the EventConnections class to manage event connections
EventConnections e_connections;
// define a particular connection ID to be used to unsubscribe later
EventConnectionId propertynodeswap_handler_id;
// subscribe to the PropertyNodeSwap event with a lambda handler function and keeping connection ID
propertynodeswap_handler_id = Node::getEventPropertyNodeSwap().connect(e_connections, [](const Ptr<Node> & node, int index_from, int index_to) {
Log::message("\Handling PropertyNodeSwap event (lambda).\n");
}
);
// remove the subscription later using the ID
Node::getEventPropertyNodeSwap().disconnect(propertynodeswap_handler_id);
//////////////////////////////////////////////////////////////////////////////
// 5. Ignoring all PropertyNodeSwap events when necessary
//////////////////////////////////////////////////////////////////////////////
// you can temporarily disable the event to perform certain actions without triggering it
Node::getEventPropertyNodeSwap().setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
Node::getEventPropertyNodeSwap().setEnabled(true);
Return value
Event reference.static Event<const Ptr<Node> &, const Ptr<Property> &, int> getEventPropertyChangeEnabled() const#
Usage Example
// implement the PropertyChangeEnabled event handler
void propertychangeenabled_event_handler(const Ptr<Node> & node, const Ptr<Property> & property, int property_index)
{
Log::message("\Handling PropertyChangeEnabled event\n");
}
//////////////////////////////////////////////////////////////////////////////
// 1. Multiple subscriptions can be linked to an instance of the EventConnections
// class that you can use later to remove all these subscriptions at once
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnections class
EventConnections propertychangeenabled_event_connections;
// link to this instance when subscribing to an event (subscription to various events can be linked)
Node::getEventPropertyChangeEnabled().connect(propertychangeenabled_event_connections, propertychangeenabled_event_handler);
// other subscriptions are also linked to this EventConnections instance
// (e.g. you can subscribe using lambdas)
Node::getEventPropertyChangeEnabled().connect(propertychangeenabled_event_connections, [](const Ptr<Node> & node, const Ptr<Property> & property, int property_index) {
Log::message("\Handling PropertyChangeEnabled event (lambda).\n");
}
);
// ...
// later all of these linked subscriptions can be removed with a single line
propertychangeenabled_event_connections.disconnectAll();
//////////////////////////////////////////////////////////////////////////////
// 2. You can subscribe and unsubscribe via an instance of the EventConnection
// class. And toggle this particular connection off and on, when necessary.
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnection class
EventConnection propertychangeenabled_event_connection;
// subscribe to the PropertyChangeEnabled event with a handler function keeping the connection
Node::getEventPropertyChangeEnabled().connect(propertychangeenabled_event_connection, propertychangeenabled_event_handler);
// ...
// you can temporarily disable a particular event connection to perform certain actions
propertychangeenabled_event_connection.setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
propertychangeenabled_event_connection.setEnabled(true);
// ...
// remove subscription to the PropertyChangeEnabled event via the connection
propertychangeenabled_event_connection.disconnect();
//////////////////////////////////////////////////////////////////////////////
// 3. You can add EventConnection/EventConnections instance as a member of the
// class that handles the event. In this case all linked subscriptions will be
// automatically removed when class destructor is called
//////////////////////////////////////////////////////////////////////////////
// Class handling the event
class SomeClass
{
public:
// instance of the EventConnections class as a class member
EventConnections e_connections;
// A PropertyChangeEnabled event handler implemented as a class member
void event_handler(const Ptr<Node> & node, const Ptr<Property> & property, int property_index)
{
Log::message("\Handling PropertyChangeEnabled event\n");
// ...
}
};
SomeClass *sc = new SomeClass();
// ...
// specify a class instance in case a handler method belongs to some class
Node::getEventPropertyChangeEnabled().connect(sc->e_connections, sc, &SomeClass::event_handler);
// ...
// handler class instance is deleted with all its subscriptions removed automatically
delete sc;
//////////////////////////////////////////////////////////////////////////////
// 4. Subscribe to an event saving a particular connection ID
// and unsubscribe later by this ID
//////////////////////////////////////////////////////////////////////////////
// instance of the EventConnections class to manage event connections
EventConnections e_connections;
// define a particular connection ID to be used to unsubscribe later
EventConnectionId propertychangeenabled_handler_id;
// subscribe to the PropertyChangeEnabled event with a lambda handler function and keeping connection ID
propertychangeenabled_handler_id = Node::getEventPropertyChangeEnabled().connect(e_connections, [](const Ptr<Node> & node, const Ptr<Property> & property, int property_index) {
Log::message("\Handling PropertyChangeEnabled event (lambda).\n");
}
);
// remove the subscription later using the ID
Node::getEventPropertyChangeEnabled().disconnect(propertychangeenabled_handler_id);
//////////////////////////////////////////////////////////////////////////////
// 5. Ignoring all PropertyChangeEnabled events when necessary
//////////////////////////////////////////////////////////////////////////////
// you can temporarily disable the event to perform certain actions without triggering it
Node::getEventPropertyChangeEnabled().setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
Node::getEventPropertyChangeEnabled().setEnabled(true);
Return value
Event reference.static Event<const Ptr<Node> &, const Ptr<Property> &, int> getEventPropertyNodeRemove() const#
Usage Example
// implement the PropertyNodeRemove event handler
void propertynoderemove_event_handler(const Ptr<Node> & node, const Ptr<Property> & property, int property_index)
{
Log::message("\Handling PropertyNodeRemove event\n");
}
//////////////////////////////////////////////////////////////////////////////
// 1. Multiple subscriptions can be linked to an instance of the EventConnections
// class that you can use later to remove all these subscriptions at once
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnections class
EventConnections propertynoderemove_event_connections;
// link to this instance when subscribing to an event (subscription to various events can be linked)
Node::getEventPropertyNodeRemove().connect(propertynoderemove_event_connections, propertynoderemove_event_handler);
// other subscriptions are also linked to this EventConnections instance
// (e.g. you can subscribe using lambdas)
Node::getEventPropertyNodeRemove().connect(propertynoderemove_event_connections, [](const Ptr<Node> & node, const Ptr<Property> & property, int property_index) {
Log::message("\Handling PropertyNodeRemove event (lambda).\n");
}
);
// ...
// later all of these linked subscriptions can be removed with a single line
propertynoderemove_event_connections.disconnectAll();
//////////////////////////////////////////////////////////////////////////////
// 2. You can subscribe and unsubscribe via an instance of the EventConnection
// class. And toggle this particular connection off and on, when necessary.
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnection class
EventConnection propertynoderemove_event_connection;
// subscribe to the PropertyNodeRemove event with a handler function keeping the connection
Node::getEventPropertyNodeRemove().connect(propertynoderemove_event_connection, propertynoderemove_event_handler);
// ...
// you can temporarily disable a particular event connection to perform certain actions
propertynoderemove_event_connection.setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
propertynoderemove_event_connection.setEnabled(true);
// ...
// remove subscription to the PropertyNodeRemove event via the connection
propertynoderemove_event_connection.disconnect();
//////////////////////////////////////////////////////////////////////////////
// 3. You can add EventConnection/EventConnections instance as a member of the
// class that handles the event. In this case all linked subscriptions will be
// automatically removed when class destructor is called
//////////////////////////////////////////////////////////////////////////////
// Class handling the event
class SomeClass
{
public:
// instance of the EventConnections class as a class member
EventConnections e_connections;
// A PropertyNodeRemove event handler implemented as a class member
void event_handler(const Ptr<Node> & node, const Ptr<Property> & property, int property_index)
{
Log::message("\Handling PropertyNodeRemove event\n");
// ...
}
};
SomeClass *sc = new SomeClass();
// ...
// specify a class instance in case a handler method belongs to some class
Node::getEventPropertyNodeRemove().connect(sc->e_connections, sc, &SomeClass::event_handler);
// ...
// handler class instance is deleted with all its subscriptions removed automatically
delete sc;
//////////////////////////////////////////////////////////////////////////////
// 4. Subscribe to an event saving a particular connection ID
// and unsubscribe later by this ID
//////////////////////////////////////////////////////////////////////////////
// instance of the EventConnections class to manage event connections
EventConnections e_connections;
// define a particular connection ID to be used to unsubscribe later
EventConnectionId propertynoderemove_handler_id;
// subscribe to the PropertyNodeRemove event with a lambda handler function and keeping connection ID
propertynoderemove_handler_id = Node::getEventPropertyNodeRemove().connect(e_connections, [](const Ptr<Node> & node, const Ptr<Property> & property, int property_index) {
Log::message("\Handling PropertyNodeRemove event (lambda).\n");
}
);
// remove the subscription later using the ID
Node::getEventPropertyNodeRemove().disconnect(propertynoderemove_handler_id);
//////////////////////////////////////////////////////////////////////////////
// 5. Ignoring all PropertyNodeRemove events when necessary
//////////////////////////////////////////////////////////////////////////////
// you can temporarily disable the event to perform certain actions without triggering it
Node::getEventPropertyNodeRemove().setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
Node::getEventPropertyNodeRemove().setEnabled(true);
Return value
Event reference.static Event<const Ptr<Node> &, const Ptr<Property> &, int> getEventPropertyNodeAdd() const#
Usage Example
// implement the PropertyNodeAdd event handler
void propertynodeadd_event_handler(const Ptr<Node> & node, const Ptr<Property> & property, int property_index)
{
Log::message("\Handling PropertyNodeAdd event\n");
}
//////////////////////////////////////////////////////////////////////////////
// 1. Multiple subscriptions can be linked to an instance of the EventConnections
// class that you can use later to remove all these subscriptions at once
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnections class
EventConnections propertynodeadd_event_connections;
// link to this instance when subscribing to an event (subscription to various events can be linked)
Node::getEventPropertyNodeAdd().connect(propertynodeadd_event_connections, propertynodeadd_event_handler);
// other subscriptions are also linked to this EventConnections instance
// (e.g. you can subscribe using lambdas)
Node::getEventPropertyNodeAdd().connect(propertynodeadd_event_connections, [](const Ptr<Node> & node, const Ptr<Property> & property, int property_index) {
Log::message("\Handling PropertyNodeAdd event (lambda).\n");
}
);
// ...
// later all of these linked subscriptions can be removed with a single line
propertynodeadd_event_connections.disconnectAll();
//////////////////////////////////////////////////////////////////////////////
// 2. You can subscribe and unsubscribe via an instance of the EventConnection
// class. And toggle this particular connection off and on, when necessary.
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnection class
EventConnection propertynodeadd_event_connection;
// subscribe to the PropertyNodeAdd event with a handler function keeping the connection
Node::getEventPropertyNodeAdd().connect(propertynodeadd_event_connection, propertynodeadd_event_handler);
// ...
// you can temporarily disable a particular event connection to perform certain actions
propertynodeadd_event_connection.setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
propertynodeadd_event_connection.setEnabled(true);
// ...
// remove subscription to the PropertyNodeAdd event via the connection
propertynodeadd_event_connection.disconnect();
//////////////////////////////////////////////////////////////////////////////
// 3. You can add EventConnection/EventConnections instance as a member of the
// class that handles the event. In this case all linked subscriptions will be
// automatically removed when class destructor is called
//////////////////////////////////////////////////////////////////////////////
// Class handling the event
class SomeClass
{
public:
// instance of the EventConnections class as a class member
EventConnections e_connections;
// A PropertyNodeAdd event handler implemented as a class member
void event_handler(const Ptr<Node> & node, const Ptr<Property> & property, int property_index)
{
Log::message("\Handling PropertyNodeAdd event\n");
// ...
}
};
SomeClass *sc = new SomeClass();
// ...
// specify a class instance in case a handler method belongs to some class
Node::getEventPropertyNodeAdd().connect(sc->e_connections, sc, &SomeClass::event_handler);
// ...
// handler class instance is deleted with all its subscriptions removed automatically
delete sc;
//////////////////////////////////////////////////////////////////////////////
// 4. Subscribe to an event saving a particular connection ID
// and unsubscribe later by this ID
//////////////////////////////////////////////////////////////////////////////
// instance of the EventConnections class to manage event connections
EventConnections e_connections;
// define a particular connection ID to be used to unsubscribe later
EventConnectionId propertynodeadd_handler_id;
// subscribe to the PropertyNodeAdd event with a lambda handler function and keeping connection ID
propertynodeadd_handler_id = Node::getEventPropertyNodeAdd().connect(e_connections, [](const Ptr<Node> & node, const Ptr<Property> & property, int property_index) {
Log::message("\Handling PropertyNodeAdd event (lambda).\n");
}
);
// remove the subscription later using the ID
Node::getEventPropertyNodeAdd().disconnect(propertynodeadd_handler_id);
//////////////////////////////////////////////////////////////////////////////
// 5. Ignoring all PropertyNodeAdd events when necessary
//////////////////////////////////////////////////////////////////////////////
// you can temporarily disable the event to perform certain actions without triggering it
Node::getEventPropertyNodeAdd().setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
Node::getEventPropertyNodeAdd().setEnabled(true);
Return value
Event reference.static Event<const Ptr<Node> &, int> getEventPropertyNodeSlotsChanged() const#
Usage Example
// implement the PropertyNodeSlotsChanged event handler
void propertynodeslotschanged_event_handler(const Ptr<Node> & node, int num_slots)
{
Log::message("\Handling PropertyNodeSlotsChanged event\n");
}
//////////////////////////////////////////////////////////////////////////////
// 1. Multiple subscriptions can be linked to an instance of the EventConnections
// class that you can use later to remove all these subscriptions at once
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnections class
EventConnections propertynodeslotschanged_event_connections;
// link to this instance when subscribing to an event (subscription to various events can be linked)
Node::getEventPropertyNodeSlotsChanged().connect(propertynodeslotschanged_event_connections, propertynodeslotschanged_event_handler);
// other subscriptions are also linked to this EventConnections instance
// (e.g. you can subscribe using lambdas)
Node::getEventPropertyNodeSlotsChanged().connect(propertynodeslotschanged_event_connections, [](const Ptr<Node> & node, int num_slots) {
Log::message("\Handling PropertyNodeSlotsChanged event (lambda).\n");
}
);
// ...
// later all of these linked subscriptions can be removed with a single line
propertynodeslotschanged_event_connections.disconnectAll();
//////////////////////////////////////////////////////////////////////////////
// 2. You can subscribe and unsubscribe via an instance of the EventConnection
// class. And toggle this particular connection off and on, when necessary.
//////////////////////////////////////////////////////////////////////////////
// create an instance of the EventConnection class
EventConnection propertynodeslotschanged_event_connection;
// subscribe to the PropertyNodeSlotsChanged event with a handler function keeping the connection
Node::getEventPropertyNodeSlotsChanged().connect(propertynodeslotschanged_event_connection, propertynodeslotschanged_event_handler);
// ...
// you can temporarily disable a particular event connection to perform certain actions
propertynodeslotschanged_event_connection.setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
propertynodeslotschanged_event_connection.setEnabled(true);
// ...
// remove subscription to the PropertyNodeSlotsChanged event via the connection
propertynodeslotschanged_event_connection.disconnect();
//////////////////////////////////////////////////////////////////////////////
// 3. You can add EventConnection/EventConnections instance as a member of the
// class that handles the event. In this case all linked subscriptions will be
// automatically removed when class destructor is called
//////////////////////////////////////////////////////////////////////////////
// Class handling the event
class SomeClass
{
public:
// instance of the EventConnections class as a class member
EventConnections e_connections;
// A PropertyNodeSlotsChanged event handler implemented as a class member
void event_handler(const Ptr<Node> & node, int num_slots)
{
Log::message("\Handling PropertyNodeSlotsChanged event\n");
// ...
}
};
SomeClass *sc = new SomeClass();
// ...
// specify a class instance in case a handler method belongs to some class
Node::getEventPropertyNodeSlotsChanged().connect(sc->e_connections, sc, &SomeClass::event_handler);
// ...
// handler class instance is deleted with all its subscriptions removed automatically
delete sc;
//////////////////////////////////////////////////////////////////////////////
// 4. Subscribe to an event saving a particular connection ID
// and unsubscribe later by this ID
//////////////////////////////////////////////////////////////////////////////
// instance of the EventConnections class to manage event connections
EventConnections e_connections;
// define a particular connection ID to be used to unsubscribe later
EventConnectionId propertynodeslotschanged_handler_id;
// subscribe to the PropertyNodeSlotsChanged event with a lambda handler function and keeping connection ID
propertynodeslotschanged_handler_id = Node::getEventPropertyNodeSlotsChanged().connect(e_connections, [](const Ptr<Node> & node, int num_slots) {
Log::message("\Handling PropertyNodeSlotsChanged event (lambda).\n");
}
);
// remove the subscription later using the ID
Node::getEventPropertyNodeSlotsChanged().disconnect(propertynodeslotschanged_handler_id);
//////////////////////////////////////////////////////////////////////////////
// 5. Ignoring all PropertyNodeSlotsChanged events when necessary
//////////////////////////////////////////////////////////////////////////////
// you can temporarily disable the event to perform certain actions without triggering it
Node::getEventPropertyNodeSlotsChanged().setEnabled(false);
// ... actions to be performed
// and enable it back when necessary
Node::getEventPropertyNodeSlotsChanged().setEnabled(true);
Return value
Event reference.int getIDFromFile() const#
Return value
CurrentPtr<Node> getAncestor ( int num ) const#
Returns a node ancestor by its number.Arguments
- int num - Ancestor ID.
Return value
Ancestor node.Ptr<Node> getChild ( int num ) const#
Returns a node child by its number.Arguments
- int num - Child ID.
Return value
Child node.bool isChild ( const Ptr<Node> & n ) const#
Checks if a given node is a child of the node.Arguments
- const Ptr<Node> & n - Node to check.
Return value
true if the given node is a child; otherwise, false.void setChildIndex ( const Ptr<Node> & n, int index ) #
Sets the index for a given child node of the node.Arguments
- const Ptr<Node> & n - Child node.
- int index - Node index.
int getChildIndex ( const Ptr<Node> & n ) #
Returns the index of a given child node of the node.Arguments
- const Ptr<Node> & n - Child node.
Return value
Node index.void setData ( const char * name, const char * data ) #
Sets user data associated with the node.- If the node was loaded from the *.node file, data is saved directly into the data tag of this file.
- If the node is loaded from the *.world file, data is saved into the Node data tag of the *.world file.
- If the node is loaded from the *.world file as a NodeReference, data will be saved to the NodeReference data tag of the *.world file.
Arguments
- const char * name - String containing a key identifying user data to be stored in the *.node file.
The "editor_data" key is reserved for the UnigineEditor.
- const char * data - New user data. Data can contain an XML formatted string.
const char * getData ( const char * name ) #
Returns user data associated with the node.- If the node was loaded from the *.node file, data from the data tag of this file is returned.
- If the node is loaded from the *.world file, data from the Node data tag of the *.world file is returned.
- If the node is loaded from the *.world file as a NodeReference, data from the NodeReference data tag of the *.world file is returned.
Arguments
- const char * name - String containing a key identifying user data stored in the *.node file.
The "editor_data" key is reserved for the UnigineEditor.
Return value
User string data. Data can be an xml formatted string.void updateEnabled ( ) #
Updates node's internal state according to the current "enabled" state.bool isEnabledSelf ( ) const#
Returns a value indicating if the node is enabled.Return value
true if the node is enabled; otherwise, false.void getHierarchy ( Vector<Ptr<Node>> & OUT_hierarchy ) #
Retrieves the whole hierarchy of the node and puts it to the hierarchy buffer.Arguments
- Vector<Ptr<Node>> & OUT_hierarchy - Hierarchy buffer.This output buffer is to be filled by the Engine as a result of executing the method.
Ptr<Node> getNode ( int id ) #
Returns a node pointer.Arguments
- int id - Node identifier.
Return value
Node pointer.bool isNode ( const Ptr<Node> & node ) #
Check the node pointer.Arguments
- const Ptr<Node> & node - Node pointer.
Return value
1 if the node is valid; otherwise, 0.bool isNode ( int id ) #
Check the node pointer.Arguments
- int id - Node pointer.
Return value
1 if the node is valid; otherwise, 0.int addProperty ( const char * name ) #
Inherits a new property from the one with the given name and adds it to the list of properties associated with the node. The inherited property will be internal, such properties are saved in a *.world or *.node file.Arguments
- const char * name - Name of the property to be added.
Return value
Index of the new node property if it was added successfully; otherwise, -1.int addProperty ( const UGUID & guid ) #
Inherits a new property from the one with the given GUID and adds it to the list of properties associated with the node. The inherited property will be internal, such properties are saved in a *.world or *.node file.Arguments
Return value
Index of the new node property if it was added successfully; otherwise, -1.int addProperty ( const Ptr<Property> & property ) #
Inherits a new property from the specified one and adds it to the list of properties associated with the node. The inherited property will be internal, such properties are saved in a *.world or *.node file.Arguments
Return value
Index of the new node property if it was added successfully; otherwise, -1.int insertProperty ( int num, const char * name ) #
Inserts the property with the specified name at the specified position.Arguments
- int num - Position at which a new property is to be inserted, in the range from 0 to the total number of node properties.
- const char * name - Name of the property to be inserted.
Return value
int insertProperty ( int num, const UGUID & guid ) #
Inserts the property with the specified GUID at the specified position.Arguments
- int num - Position at which a new property is to be inserted, in the range from 0 to the total number of node properties.
- const UGUID & guid - GUID of the property to be inserted.
Return value
int insertProperty ( int num, const Ptr<Property> & property ) #
Inserts the specified property at the specified position.Arguments
- int num - Position at which a new property is to be inserted, in the range from 0 to the total number of node properties.
- const Ptr<Property> & property - Property to be added.
Return value
int setProperty ( const char * name ) #
Updates the first node property (the one with a 0 index) in the list of properties associated with the node. A new internal property inherited from the one with the specified name will be set. Such internal properties are saved in a *.world or *.node file.Arguments
- const char * name - Name of the property to be set.
Return value
int setProperty ( const UGUID & guid ) #
Updates the first node property (the one with a 0 index) in the list of properties associated with the node. A new internal property inherited from the one with the specified GUID will be set. Such internal properties are saved in a *.world or *.node file.Arguments
Return value
int setProperty ( const Ptr<Property> & property ) #
Updates the first node property (the one with a 0 index) in the list of properties associated with the node. A new internal property inherited from the one specified will be set. Such internal properties are saved in a *.world or *.node file.Arguments
Return value
int setProperty ( int num, const char * name ) #
Updates the node property with the specified number. A new internal property inherited from the one with the specified name will be set. Such internal properties are saved in a *.world or *.node file.Arguments
- int num - Node property number in the range from 0 to the total number of node properties.
- const char * name - Name of the property to be set.
Return value
int setProperty ( int num, const UGUID & guid ) #
Updates the node property with the specified number. A new internal property inherited from the one with the specified GUID will be set. Such internal properties are saved in a *.world or *.node file.Arguments
- int num - Node property number in the range from 0 to the total number of node properties.
- const UGUID & guid - GUID of the property to be set.
Return value
int setProperty ( int num, const Ptr<Property> & property ) #
Updates the node property with the specified number. A new internal property inherited from the specified one will be set. Such internal properties are saved in a *.world or *.node file.Arguments
- int num - Node property number in the range from 0 to the total number of node properties.
- const Ptr<Property> & property - Property to be set.
Return value
void setPropertyEnabled ( int num, bool enable ) #
Enables or disables the node property with the specified number.Arguments
- int num - Node property number in the range from 0 to the total number of node properties.
- bool enable - true to enable the specified node property, false to disable it.
bool isPropertyEnabled ( int num ) const#
Returns a value indicating if the node property with the specified number is enabled.Arguments
- int num - Node property number in the range from 0 to the total number of node properties.
Return value
true if the specified property is enabled; otherwise, false.void swapProperty ( int from_num, int to_num ) #
Swaps two properties with specified numbers in the list of properties associated with the node.Arguments
- int from_num - Number of the first node property to be swapped, in the range from 0 to the total number of node properties.
- int to_num - Number of the second node property to be swapped, in the range from 0 to the total number of node properties.
void removeProperty ( int num ) #
Removes the node property with the specified number.Arguments
- int num - Node property number in the range from 0 to the total number of node properties.
void removeProperty ( const char * name ) #
Removes the node property that has the specified name.Arguments
- const char * name - Name of the node property to be removed.
void removeProperty ( const UGUID & guid ) #
Removes the node property that has the GUID or parent GUID equal to the specified one.Arguments
void removeProperty ( const Ptr<Property> & property ) #
Removes the specified node property or a node property inherited from it.Arguments
void clearProperties ( ) #
Clears the list of properties associated with the node.Ptr<Property> getProperty ( int num ) const#
Returns a node property with the specified number if it exists.Arguments
- int num - Node property number in the range from 0 to the total number of node properties.
Return value
Node property smart pointer, if exists; otherwise, NULL.const char * getPropertyName ( int num ) const#
Returns the name of a node property with the specified number.Arguments
- int num - Node property number in the range from 0 to the total number of node properties.
Return value
Property name, if exists; otherwise, NULL.int findProperty ( const char * name ) const#
Searches for a property with the specified name among the ones assigned to the node.Arguments
- const char * name - GUID of a node property to be found.
Return value
Node property number in the range from 0 to the total number of node properties if such a property exists; otherwise -1.int findProperty ( const UGUID & guid ) const#
Searches for a property with the specified GUID among the ones assigned to the node.Arguments
Return value
Node property number in the range from 0 to the total number of node properties if such a property exists; otherwise -1.int findProperty ( const Ptr<Property> & property ) const#
Searches for a specified property among the ones assigned to the node.Arguments
Return value
Node property number in the range from 0 to the total number of node properties if such a property exists; otherwise -1.bool hasQueryForce ( ) const#
Returns a value indicating if the Culled By Occlusion Queryoption is force-enabled for the node by the Engine.Return value
true if the Culled By Occlusion Queryoption is force-enabled for the node by the Engine; otherwise, false.void setRotation ( const Math::quat & rot, bool identity = 0 ) #
Sets the node rotation.Arguments
- const Math::quat & rot - Quaternion representing node rotation in the local space.
- bool identity - Flag indicating if node's scale is to be ignored or taken into account:
- false - node's scale is taken into account. In this case additional calculations are performed to extract current node's scale and apply it when building the final transformation matrix. These additional operations reduce performance and may lead to error accumulation.
- true - node's scale is ignored (assumed to be equal to 1 along all axes). Thus, the number of calculations performed for each rotation is reduced and error accumulation is minimal.
- It is recommended to set this flag for all non-scaled nodes to improve performance and accuracy.
- Scaling of nodes should be avoided whenever possible, as it requires addidional calculations and may lead to error accumulation.
Math::quat getRotation ( ) const#
Returns the node rotation.Return value
Quaternion representing node rotation in the local space.void setWorldRotation ( const Math::quat & rot, bool identity = 0 ) #
Sets the node rotation in the world space.Arguments
- const Math::quat & rot - Node rotation in the world space.
- bool identity - Flag indicating if node's scale is to be ignored or taken into account:
- false - node's scale is taken into account. In this case additional calculations are performed to extract current node's scale and apply it when building the final transformation matrix. These additional operations reduce performance and may lead to error accumulation.
- true - node's scale is ignored (assumed to be equal to 1 along all axes). Thus, the number of calculations performed for each rotation is reduced and error accumulation is minimal.
- It is recommended to set this flag for all non-scaled nodes to improve performance and accuracy.
- Scaling of nodes should be avoided whenever possible, as it requires addidional calculations and may lead to error accumulation.
Math::quat getWorldRotation ( ) const#
Returns the node rotation in the world space.Return value
Node rotation in the world space.void setTransformWithoutChildren ( const Math::Mat4 & transform ) #
Sets the transformation matrix for the node in local coordinates (transformations of all node's children are not affected). This method can be used to change node's transformation relative to its children.Arguments
- const Math::Mat4 & transform - New transformation matrix to be set for the node (local coordinates).
Node::TYPE getTypeID ( const char * type ) #
Returns the ID of a node type with a given name.Arguments
- const char * type - Node type name.
Return value
Node type ID, if such type exists; otherwise, -1.const char * getTypeName ( Node::TYPE type ) #
Returns the name of a node type with a given ID.Arguments
- Node::TYPE type - Node type ID.
Return value
Node type name.void setVariable ( const char * name, const Variable & v ) #
Sets the value of a variable with a given name. If such variable does not exist it will be added with a specified value.NodeDummyPtr container;
if(container->hasVariable("key1")) {
container->setVariable("key1", Variable(42));
}
Variable value = container->getVariable("key1");
container->removeVariable("key1");
Arguments
- const char * name - Variable name.
- const Variable & v - Variable value.
Variable getVariable ( const char * name ) const#
Returns the variable with a given name.NodeDummyPtr container;
if(container->hasVariable("key1")) {
container->setVariable("key1", Variable(42));
}
Variable value = container->getVariable("key1");
container->removeVariable("key1");
Arguments
- const char * name - Variable name.
Return value
Variable if it exists; otherwise, variable with 0 value.void setWorldParent ( const Ptr<Node> & n ) #
Sets the new parent of the node. Transformations of the current node will be done in the world coordinates.Arguments
- const Ptr<Node> & n - New parent node or NULL (0).
void setWorldTransformWithoutChildren ( const Math::Mat4 & transform ) #
Sets the transformation matrix for the node in world coordinates (transformations of all node's children are not affected). This method can be used to change node's transformation relative to its children.Arguments
- const Math::Mat4 & transform - New transformation matrix to be set for the node (world coordinates).
Math::vec3 getBodyWorldVelocity ( const Math::Vec3 & point ) const#
Returns linear velocity of a point of the node's physical body in the world space.Arguments
- const Math::Vec3 & point
Return value
Linear velocity in the world space.void addChild ( const Ptr<Node> & n ) #
Adds a child to the node. Transformations of the new child will be done in the coordinates of the parent.Arguments
- const Ptr<Node> & n - New child node.
void addWorldChild ( const Ptr<Node> & n ) #
Adds a child to the node. Transformations of the new child will be done in the world coordinates.Arguments
- const Ptr<Node> & n - New child node.
Ptr<Node> clone ( ) const#
Clones the node.Return value
Cloned node.int findAncestor ( int type ) const#
Returns the ID of node's ancestor of a given type.Arguments
- int type - Ancestor type identifier. One of the NODE_* pre-defined variables.
Return value
Ancestor ID if it exists; otherwise -1.int findAncestor ( const char * name ) const#
Returns the ID of node's ancestor with a given name.Arguments
- const char * name - Ancestor name.
Return value
Ancestor ID if it exists; otherwise -1.int findChild ( const char * name ) const#
Searches for a child node with a given name among the children of the node.Arguments
- const char * name - Name of the child node.
Return value
Child node number, if it is found; otherwise, -1.Ptr<Node> findNode ( const char * name, int recursive = 0 ) const#
Searches for a node with a given name among the children of the node.Arguments
- const char * name - Name of the child node to search for.
- int recursive - 1 if the search is recursive (i.e. performed for children of child nodes); otherwise, 0.
Return value
Child node, if it is found; otherwise, NULL.void findNodes ( const char * name, Vector<Ptr<Node>> & OUT_nodes, int recursive = 0 ) const#
Searches for a node with a given name among the children of the node and puts them to the specified output nodes buffer.Arguments
- const char * name - Name of the node to search for.
- Vector<Ptr<Node>> & OUT_nodes - Output buffer to which all found nodes with the specified name will be put.This output buffer is to be filled by the Engine as a result of executing the method.
- int recursive - 1 if the search is recursive (i.e. performed for children of child nodes); otherwise, 0.
int hasVariable ( const char * name ) #
Returns a value indicating if the node has a variable parameter with a given name.NodeDummyPtr container;
if(container->hasVariable("key1")) {
container->setVariable("key1", Variable(42));
}
Variable value = container->getVariable("key1");
container->removeVariable("key1");
Arguments
- const char * name - Variable name.
Return value
1 if the node has a variable parameter with a given name; otherwise, 0.int hasVariable ( ) #
Returns a value indicating if the node has a single unnamed variable parameter.Return value
1 if the node has a single unnamed variable parameter; otherwise, 0.bool loadWorld ( const Ptr<Xml> & xml ) #
Loads a node state from the Xml.Arguments
Return value
void removeChild ( const Ptr<Node> & n ) #
Removes a child node (added by the addChild() method) from the list of children.Arguments
- const Ptr<Node> & n - Child node to remove.
void removeVariable ( const char * name ) #
Removes a variable parameter with a given name.NodeDummyPtr container;
if(container->hasVariable("key1")) {
container->setVariable("key1", Variable(42));
}
Variable value = container->getVariable("key1");
container->removeVariable("key1");
Arguments
- const char * name - Variable parameter name.
Return value
void removeWorldChild ( const Ptr<Node> & n ) #
Removes a child node (added by the addWorldChild() method) from the list of children.Arguments
- const Ptr<Node> & n - Child node to remove.
void renderVisualizer ( ) #
Renders a bounding box / sphere of the object.bool saveState ( const Ptr<Stream> & stream ) const#
Saves a node state to a binary stream.Example using saveState() and restoreState() methods:
// initialize a node and set its state
NodeDummyPtr node = NodeDummy::create();
node->setPosition(Vec3(1, 1, 0));
// save state
BlobPtr blob_state = Blob::create();
node->saveState(blob_state);
// change state
node->setPosition(Vec3(0, 0, 0));
// restore state
blob_state->seekSet(0); // returning the carriage to the start of the blob
node->restoreState(blob_state);
Arguments
Return value
true if node state is successfully saved; otherwise, false.bool restoreState ( const Ptr<Stream> & stream ) #
Restores a node state from a binary stream.Example using saveState() and restoreState() methods:
// initialize a node and set its state
NodeDummyPtr node = NodeDummy::create();
node->setPosition(Vec3(1, 1, 0));
// save state
BlobPtr blob_state = Blob::create();
node->saveState(blob_state);
// change state
node->setPosition(Vec3(0, 0, 0));
// restore state
blob_state->seekSet(0); // returning the carriage to the start of the blob
node->restoreState(blob_state);
Arguments
Return value
true if node state is successfully restored; otherwise, false.bool saveWorld ( const Ptr<Xml> & xml ) const#
Saves the node into the Xml.Arguments
Return value
true if the node is successfully saved; otherwise, false.void swap ( const Ptr<Node> & n ) const#
Swaps two nodes.Arguments
- const Ptr<Node> & n - Node to swap.
Math::vec3 toLocal ( const Math::Vec3 & p ) const#
Converts a given vector in the world space to the node's local space.Arguments
- const Math::Vec3 & p - Vector in the world space.
Return value
Vector in the local space.Math::Vec3 toWorld ( const Math::vec3 & p ) const#
Converts a given vector in the local space to the world space.Arguments
- const Math::vec3 & p - Vector in the local space.
Return value
Vector in the world space.void translate ( const Math::Vec3 & t ) #
Translates the node relative to its local coordinate system: the parent node transformation isn't taken into account.Arguments
- const Math::Vec3 & t - Translation vector.
void translate ( Math::Scalar x, Math::Scalar y, Math::Scalar z ) #
Translates the node relative to its local coordinate system: the parent node transformation isn't taken into account.Arguments
- Math::Scalar x - Node translation along the X axis, in units.
- Math::Scalar y - Node translation along the Y axis, in units.
- Math::Scalar z - Node translation along the Z axis, in units.
void worldTranslate ( const Math::Vec3 & t ) #
Translates the node in the world space using the specified vector.Arguments
- const Math::Vec3 & t - Translation vector.
void worldTranslate ( Math::Scalar x, Math::Scalar y, Math::Scalar z ) #
Translates the node in the world space using the values specified for the corresponding axes.Arguments
- Math::Scalar x - Node translation along the X axis, in units.
- Math::Scalar y - Node translation along the Y axis, in units.
- Math::Scalar z - Node translation along the Z axis, in units.
void worldLookAt ( const Math::Vec3 & target, const Math::vec3 & up ) #
Reorients the node to "look" at the target point and sets the given up vector:- If the node is a Player-related one, it will "look" at the target point along the negative Z axis. The Y axis will be oriented along the specified up vector.
- Other nodes will "look" at the target point along the Y axis. The Z axis will be oriented along the specified up vector.
Arguments
- const Math::Vec3 & target - Coordinates of the target point in the world space.
- const Math::vec3 & up - Up vector of the node in the world space. By default, the up vector is oriented along the Z axis.
void worldLookAt ( const Math::Vec3 & target ) #
Reorients the node to "look" at the target point. The up vector is oriented along the Z axis.- If the node is a Player-related one, it will "look" at the target point along the negative Z axis. The Y axis will be oriented along the world Z axis.
- Other nodes will "look" at the target point along the Y axis.
Arguments
- const Math::Vec3 & target - Coordinates of the target point in the world space.
void rotate ( const Math::quat & r ) #
Rotates the node relative to its local coordinate system: the parent node transformation isn't taken into account. Rotation is determined by the specified quaternion.Arguments
- const Math::quat & r - Rotation quaternion.
void rotate ( const Math::vec3 & angles ) #
Rotates the node in the local space. Rotation is determined by Euler angles passed as a vec3 vector.Arguments
- const Math::vec3 & angles
void rotate ( float angle_x, float angle_y, float angle_z ) #
Rotates the node in the world space according to specified Euler angles.Arguments
- float angle_x - Pitch angle, in degrees.
- float angle_y - Roll angle, in degrees.
- float angle_z - Yaw angle, in degrees.
void worldRotate ( const Math::quat & r ) #
Rotates the node in the world space. Rotation is determined by the specified quaternion.Arguments
- const Math::quat & r - Rotation quaternion.
void worldRotate ( const Math::vec3 & angles ) #
Rotates the node in the world space. Rotation is determined by Euler angles passed as a vec3 vector.Arguments
- const Math::vec3 & angles - Vector containing Euler angles (Pitch, Yaw, Roll).
void worldRotate ( float angle_x, float angle_y, float angle_z ) #
Rotates the node in the world space according to specified Euler angles.Arguments
- float angle_x - Pitch angle, in degrees.
- float angle_y - Roll angle, in degrees.
- float angle_z - Yaw angle, in degrees.
void setDirection ( const Math::vec3 & dir, const Math::vec3 & up, MathLib::AXIS axis = AXIS_NZ ) #
Updates the direction vector of the node and reorients this node: the specified axis of the node becomes oriented along the specified vector in local coordinates. For example, after running the code below, you will get the X axis of the node pointed along the Y axis in local coordinates.// get the node
NodePtr node = World::getNodeByName("material_ball");
// set the X axis to be pointed along the Y axis in local coordinates
node->setDirection(vec3(0.0f,1.0f,0.0f),vec3(0.0f,0.0f,1.0f),Math::AXIS_X);
Arguments
- const Math::vec3 & dir - New direction vector in local coordinates. The direction vector always has unit length.
- const Math::vec3 & up - New up vector in local coordinates. If you skip this argument, the Z axis (in local coordinates) will be used. Note that the specified up vector is a hint vector only: the node's up vector points in the direction hinted by the specified up vector. The node's up vector matches the specified up vector (up) only if it is perpendicular to the specified direction vector (dir).
- MathLib::AXIS axis - Axis along which the direction vector should be pointed. The default is the negative Z axis.
Math::vec3 getDirection ( MathLib::AXIS axis = AXIS_NZ ) const#
Returns the normalized direction vector pointing along the given node axis in local coordinates (i.e. relative to the node's parent). By default, the direction vector pointing along the negative Z axis of the node (in local coordinates) is returned. The direction vector always has a unit length.node->getDirection(node->isPlayer() ? Math::AXIS_NZ : Math::AXIS_Y); // forward direction vector
node->getDirection(node->isPlayer() ? Math::AXIS_Z : Math::AXIS_NY); // backward direction vector
node->getDirection(node->isPlayer() ? Math::AXIS_Y : Math::AXIS_Z); // upward direction vector
node->getDirection(node->isPlayer() ? Math::AXIS_NY : Math::AXIS_NZ); // down direction vector
node->getDirection(Math::AXIS_X); // right direction vector
node->getDirection(Math::AXIS_NX); // left direction vector
Arguments
- MathLib::AXIS axis - Axis along which the direction vector points. The default is the negative Z axis.
Return value
Direction vector in local coordinates.void setWorldDirection ( const Math::vec3 & dir, const Math::vec3 & up, MathLib::AXIS axis = AXIS_NZ ) #
Updates the direction vector of the node and reorients this node: the specified axis of the node becomes oriented along the specified vector in world coordinates. For example, after running the code below, you will get the X axis of the node pointed along the Y axis in world coordinates:// get the node
NodePtr node = World::getNodeByName("material_ball");
// set the X axis to be pointed along the Y axis in world coordinates
node->setWorldDirection(vec3(0.0f,1.0f,0.0f),vec3(0.0f,0.0f,1.0f), Math::AXIS_X);
Arguments
- const Math::vec3 & dir - New direction vector in world coordinates. The direction vector always has unit length.
- const Math::vec3 & up - New up vector in world coordinates. If you skip this argument, the Z axis (in local coordinates) will be used. Note that the specified up vector is a hint vector only: the node's up vector points in the direction hinted by the specified up vector. The node's up vector matches the specified up vector (up) only if it is perpendicular to the specified direction vector (dir).
- MathLib::AXIS axis - Axis along which the direction vector should be pointed. The default is the negative Z axis.
Math::vec3 getWorldDirection ( MathLib::AXIS axis = AXIS_NZ ) const#
Returns the normalized direction vector pointing along the given node axis in world coordinates. By default, the direction vector pointing along the negative Z axis of the node is returned. The direction vector always has a unit length.node->getWorldDirection(node->isPlayer() ? Math::AXIS_NZ : Math::AXIS_Y); // forward direction vector
node->getWorldDirection(node->isPlayer() ? Math::AXIS_Z : Math::AXIS_NY); // backward direction vector
node->getWorldDirection(node->isPlayer() ? Math::AXIS_Y : Math::AXIS_Z); // upward direction vector
node->getWorldDirection(node->isPlayer() ? Math::AXIS_NY : Math::AXIS_NZ); // down direction vector
node->getWorldDirection(Math::AXIS_X); // right direction vector
node->getWorldDirection(Math::AXIS_NX); // left direction vector
Arguments
- MathLib::AXIS axis - Axis along which the direction vector points. The default is the negative Z axis.
Return value
Direction vector in world coordinates.Ptr<Node> getCloneNode ( const Ptr<Node> & original_node ) #
Returns a node cloned from the specified original node.Arguments
- const Ptr<Node> & original_node - Original node that was cloned.
Return value
Clone of the specified original node if it exists; otherwise the original node itself.Ptr<Property> getCloneProperty ( const Ptr<Property> & original_property ) #
Returns a node property cloned from the specified original property.Arguments
Return value
Clone of the specified original node property if it exists; otherwise the original node property itself.void setSaveToWorldEnabledRecursive ( bool enable ) #
Sets a value indicating if saving to *.world file is enabled for the node and all its children (if any).Arguments
- bool enable - true to enable saving to *.world file for the node and all its children (if any); 0 to disable.
void setShowInEditorEnabledRecursive ( bool enable ) #
Sets a value indicating if displaying in the World Hierarchy window of the UnigineEditor is enabled for the node and all its children (if any).Arguments
- bool enable - true to enable displaying in the World Hierarchy window of the UnigineEditor for the node and all its children (if any); 0 to disable.
Node::LIFETIME getLifetimeSelf ( ) const#
Returns the lifetime management type set for the node itself.Return value
Lifetime management type for the node (see the LIFETIME enum).Math::WorldBoundBox getHierarchyBoundBox ( bool only_enabled_nodes = false ) const#
Returns a bounding box with local coordinates that takes children into account, but doesn't participate in physics calculations. Exclusion of objects from the spatial tree significantly reduces the size of the tree and improves performance due to saving time on bounding box recalculation when transforming nodes.Arguments
- bool only_enabled_nodes - Set true to obtain the result taking into account only the nodes in the hierarchy that are enabled, or false - to take into account all nodes in the hierarchy regardless of their enabled state.
Return value
The bounding box with world coordinates.Math::WorldBoundSphere getHierarchyBoundSphere ( bool only_enabled_nodes = false ) const#
Returns a bounding sphere with local coordinates that takes children into account, but doesn't participate in physics calculations. Exclusion of objects from the spatial tree significantly reduces the size of the tree and improves performance due to saving time on bounding sphere recalculation when transforming nodes.Arguments
- bool only_enabled_nodes - Set true to obtain the result taking into account only the nodes in the hierarchy that are enabled, or false - to take into account all nodes in the hierarchy regardless of their enabled state.
Return value
The bounding sphere with world coordinates.Math::WorldBoundBox getHierarchyWorldBoundBox ( bool only_enabled_nodes = false ) const#
Returns a bounding box with world coordinates that takes children into account, but doesn't participate in physics calculations. Exclusion of objects from the spatial tree significantly reduces the size of the tree and improves performance due to saving time on bounding box recalculation when transforming nodes.Arguments
- bool only_enabled_nodes - Set true to obtain the result taking into account only the nodes in the hierarchy that are enabled, or false - to take into account all nodes in the hierarchy regardless of their enabled state.
Return value
The bounding box with world coordinates.Math::WorldBoundSphere getHierarchyWorldBoundSphere ( bool only_enabled_nodes = false ) const#
Returns a bounding sphere with world coordinates that takes children into account, but doesn't participate in physics calculations. Exclusion of objects from the spatial tree significantly reduces the size of the tree and improves performance due to saving time on bounding sphere recalculation when transforming nodes.Arguments
- bool only_enabled_nodes - Set true to obtain the result taking into account only the nodes in the hierarchy that are enabled, or false - to take into account all nodes in the hierarchy regardless of their enabled state.
Return value
The bounding sphere with world coordinates.Math::WorldBoundBox getHierarchySpatialBoundBox ( bool only_enabled_nodes = false ) const#
Returns a bounding box with world coordinates that takes all children and physics into account. This bounding box is used by the spatial tree.Arguments
- bool only_enabled_nodes - Set true to obtain the result taking into account only the nodes in the hierarchy that are enabled, or false - to take into account all nodes in the hierarchy regardless of their enabled state.
Return value
The bounding box with world coordinates.Math::WorldBoundSphere getHierarchySpatialBoundSphere ( bool only_enabled_nodes = false ) const#
Returns a bounding sphere with world coordinates that takes all children and physics into account. This bounding sphere is used by the spatial tree.Arguments
- bool only_enabled_nodes - Set true to obtain the result taking into account only the nodes in the hierarchy that are enabled, or false - to take into account all nodes in the hierarchy regardless of their enabled state.
Return value
The bounding sphere with world coordinates.virtual void updateSpatialTree ( ) #
Updates node bounds in the spatial tree in the current frame. This method can be used in case you use some custom logic affecting node bounds or position and need to have your changes to be taken into account in the current frame, as well as to process such changes for your custom nodes ( ObjectExtern, NodeExtern) which are otherwise ignored. Calling this method enables you to apply changes for this node fast without complete tree recalculation. But you should be aware that node bounds fast-updated this way might be inaccurate (they can only be expanded, as shrinking will require tree recalculation). In case you need to have 100% accurate bounds in the current frame, call the World::updateSpatial() method. You can also simply tell the spatial tree to update node bounds in the next frame via the updateSpatialTreeDelayed() method.void updateSpatialTreeDelayed ( ) #
Mark node bounds in the spatial tree to be updated in the next frame (all bounds will be 100% accurate in this case unlike for the updateSpatialTree() method). This method can be used in case you use some custom logic affecting node bounds or position, as well as to process such changes for your custom nodes ( ObjectExtern, NodeExtern) which are otherwise ignored. The changes will only be applied in the next frame, in case you need to have your changes to be taken into account right in the current frame use the World::updateSpatial() method for 100% accurate bounds (slow), or the fast updateSpatialTree() method which only expands node bounds if necessary.Ptr<WorldTrigger> getWorldTrigger ( int num ) #
Returns one of the World Triggers inside which the node is located at the moment by its number. For any node in the world, you can check whether it is currently inside any World Trigger and access any of such triggers by simply calling this method.Arguments
- int num - Number of the World Trigger in the list of World Triggers inside which the node is located at the moment.
Return value
World Trigger with the specified number inside which the node is located at the moment.UGUID getLostNodePropertyGUID ( int num ) const#
Returns the GUID of a lost property assigned to the node. If for some reason a property assigned to the specified slot of the node is missing, this method can be used to get it's GUID.Arguments
- int num - Target property slot number.
Return value
Lost property GUID.void renderBounds ( bool render_node_bound = true, bool render_instance_bound = false ) #
Renders the node bounds. The method is applied for checking the actual size of the CPU-rendered node bounds that may differ from the GPU-rendered mesh size, if the latter has been modified by the shader. For nodes that consist of multiple mesh instances (Clutter, Cluster) rendering of each individual mesh bound is also available.Arguments
- bool render_node_bound - true to enable rendering of the node bounds, false to disable it.
- bool render_instance_bound - true to enable bound rendering for each individual mesh instance (applicable for Clutter and Cluster nodes), false to disable it.