This page has been translated automatically.
UnigineEditor
Interface Overview
Assets Workflow
Settings and Preferences
Adjusting Node Parameters
Setting Up Materials
Setting Up Properties
Landscape Tool
Using Editor Tools for Specific Tasks
FAQ
Programming
Fundamentals
Setting Up Development Environment
Usage Examples
UnigineScript
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine and Tools
GUI
Double Precision Coordinates
API
Containers
Controls-Related Classes
Engine-Related Classes
Filesystem Functionality
GUI-Related Classes
Math Functionality
Node-Related Classes
Networking Functionality
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
CIGI Client Plugin
Rendering-Related Classes
Warning! This version of documentation is OUTDATED, as it describes an older SDK version! Please switch to the documentation for the latest SDK version.
Warning! This version of documentation describes an old SDK version which is no longer supported! Please upgrade to the latest SDK version.

Unigine::ImportScene Class

Header: #include <UnigineImport.h>

Notice
Import System API is not available for Entertainment SDK edition.

This class is used to manage scene graphs to be imported. A scene graph is a tree of nodes. When it is first created, the node is "empty" (i.e: it is an object without any graphical representation that only contains the position information). In this state, it is used only to represent parents in the node tree structure. Normally other objects (cameras, lights, meshes,...) are added to nodes as attributes to specialize it. Node attribute is an object in itself and is connected to a node. The same node attribute can be shared among multiple nodes.

A scene can include the following components:

ImportScene Class

Members


static ImportScenePtr create ( )

Constructor. Creates an empty import scene

ImportAnimation * addAnimation( )

Adds a given animation to the scene and returns a pointer to the added animation.

Return value

ImportAnimation structure pointer.

ImportCamera * addCamera( ImportNode * node )

Adds a new camera as an attribute to the specified scene graph node and returns a pointer to the added camera.

Arguments

  • ImportNode * node - Scene graph node to add a new camera to.

Return value

ImportCamera structure pointer.

ImportLight * addLight( ImportNode * node )

Adds a new light as an attribute to the specified scene graph node and returns a pointer to the added light.

Arguments

  • ImportNode * node - Scene graph node to add a new light to.

Return value

ImportLight structure pointer.

ImportMaterial * addMaterial( )

Adds a new material to the scene and returns a pointer to the added material.

Return value

ImportMaterial structure pointer.

ImportMesh * addMesh( ImportNode * node )

Adds a new mesh as an attribute to the specified scene graph node and returns a pointer to the added mesh.

Arguments

  • ImportNode * node - Scene graph node to add a new mesh to.

Return value

ImportMesh structure pointer.

ImportNode * addNode( ImportNode * parent )

Adds a new node as an attribute to the specified scene graph node and returns a pointer to the added node.

Arguments

  • ImportNode * parent - Scene graph node to add a new node to.

Return value

ImportNode structure pointer.

ImportAnimation * getAnimation( int i )

Returns the animation with a given index.

Arguments

Return value

ImportAnimation structure pointer.

const Vector<ImportAnimation *> & getAnimations( )

Returns a vector containing all scene animations.

Return value

Vector containing all scene animations as ImportAnimation structure pointers.

ImportCamera * getCamera( int i )

Returns the camera with a given index.

Arguments

Return value

ImportCamera structure pointer.

const Vector<ImportCamera *> & getCameras( )

Returns a vector containing all scene cameras.

Return value

Vector containing all scene cameras as ImportCamera structure pointers.

ImportLight * getLight( int i )

Returns the light with a given index.

Arguments

Return value

ImportLight structure pointer.

const Vector<ImportLight *> & getLights( )

Returns a vector containing all scene lights.

Return value

Vector containing all scene lights as ImportLight structure pointers.

ImportMaterial * getMaterial( int i )

Returns the material with a given index.

Arguments

Return value

ImportMaterial structure pointer.

const Vector<ImportMaterial *> & getMaterials( )

Returns a vector containing all scene materials.

Return value

Vector containing all scene materials as ImportMaterial structure pointers.

ImportMesh * getMesh( int i )

Returns the mesh with a given index.

Arguments

Return value

ImportMesh structure pointer.

const Vector<ImportMesh *> & getMeshes( )

Returns a vector containing all scene meshes.

Return value

Vector containing all scene meshes as ImportMesh structure pointers.

ImportNode * getNode( int i )

Returns the node with a given index.

Arguments

Return value

ImportNode structure pointer.

const Vector<ImportNode *> & getNodes( )

Returns a vector containing all scene graph nodes.

Return value

Vector containing all scene graph nodes as ImportNode structure pointers.

ImportTexture * getTexture( int i )

Returns the texture with a given index.

Arguments

Return value

ImportTexture structure pointer.

ImportTexture * getTexture( const char * filepath )

Returns the node with a given file path.

Arguments

  • const char * filepath - Path to texture file.

Return value

ImportTexture structure pointer if it exists; otherwise, nullptr.

const Vector<ImportTexture *> & getTextures( )

Returns a vector containing all scene textures.

Return value

Vector containing all scene textures as ImportTexture structure pointers.

int getNumAnimations( )

Returns the total number of animations in the scene.

Return value

Number of animations in the scene.

int getNumCameras( )

Returns the total number of cameras in the scene.

Return value

Number of cameras in the scene.

int getNumLights( )

Returns the total number of lights in the scene.

Return value

Number of lights in the scene.

int getNumMaterials( )

Returns the total number of materials in the scene.

Return value

Number of materials in the scene.

int getNumMeshes( )

Returns the total number of meshes in the scene.

Return value

Number of meshes in the scene.

int getNumNodes( )

Returns the total number of nodes in the scene.

Return value

Number of nodes in the scene.

int getNumTextures( )

Returns the total number of textures in the scene.

Return value

Number of textures in the scene.

void removeCamera( ImportCamera * camera )

Removes the specified camera from the scene.

Arguments

void removeLight( ImportLight * light )

Removes the specified light from the scene.

Arguments

void removeMaterial( ImportMaterial * material )

Removes the specified material from the scene.

Arguments

void removeMesh( ImportMesh * mesh )

Removes the specified mesh from the scene.

Arguments

void removeNode( ImportNode * node )

Removes the specified node from the scene.

Arguments

ImportTexture * findTexture( const char * filepath )

Returns a texture used in the scene by its file path.

Arguments

  • const char * filepath - Path to a texture file.

Return value

ImportTexture structure corresponding to the specified file path if it exists; otherwise, nullptr.

void replaceMaterial( ImportMaterial * old_material, ImportMaterial * new_material )

Replaces a given material in the scene with another one.

Arguments

Last update: 2018-12-27
Build: ()