This page has been translated automatically.
Video Tutorials
Interface
Essentials
Advanced
How To
Professional (SIM)
UnigineEditor
Interface Overview
Assets Workflow
Settings and Preferences
Working With Projects
Adjusting Node Parameters
Setting Up Materials
Setting Up Properties
Lighting
Sandworm
Using Editor Tools for Specific Tasks
Extending Editor Functionality
Built-in Node Types
Nodes
Objects
Effects
Decals
Light Sources
Geodetics
World Nodes
Sound Objects
Pathfinding Objects
Players
Programming
Fundamentals
Setting Up Development Environment
Usage Examples
C++
C#
UnigineScript
UUSL (Unified UNIGINE Shader Language)
Plugins
File Formats
Materials and Shaders
Rebuilding the Engine Tools
GUI
Double Precision Coordinates
API
Containers
Common Functionality
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
IG Plugin
CIGIConnector Plugin
Rendering-Related Classes
Content Creation
Content Optimization
Materials
Material Nodes Library
Miscellaneous
Input
Math
Matrix
Textures
Art Samples
Tutorials
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.ObjectExternBase Class

Inherits from: Base

The base class, from which the custom user-defined objects are inherited.

ObjectExternBase Class

Members


int GetClassID ( ) #

Returns a unique class ID.

Return value

Unique class ID.

int GetCollision ( vec3 p0, vec3 p1, int[] surfaces ) #

Spatial collision with the bounding box.

Arguments

  • vec3 p0 - Coordinates of the start point of the line.
  • vec3 p1 - Coordinates of the end point of the line.
  • int[] surfaces - Return array with surface numbers.

Return value

Returns 1 if the array of surfaces is not empty.

int GetCollision ( BoundBox bb, int[] surfaces ) #

Spatial collision with the bounding box.

Arguments

  • BoundBox bb - Bounding box.
  • int[] surfaces - Return array with surface numbers.

Return value

Returns 1 if the array of surfaces is not empty.

int GetIntersection ( vec3 p0, vec3 p1, vec3[] ret_point, vec3[] ret_normal, vec4[] ret_texcoord, int[] ret_index, int[] ret_instance, int surface ) #

Returns a value indicating that the line intersects the object surface.

Arguments

  • vec3 p0 - Coordinates of the start point of the line.
  • vec3 p1 - Coordinates of the end point of the line.
  • vec3[] ret_point - Intersection point coordinates. Pass NULL if this parameter is not required.
  • vec3[] ret_normal - Intersection normal vector. Pass NULL if this parameter is not required.
  • vec4[] ret_texcoord - Intersection texture coordinates. Pass NULL if this parameter is not required.
  • int[] ret_index - Intersected triangle number. Pass NULL if this parameter is not required.
  • int[] ret_instance - Intersected instance number. Pass NULL if this parameter is not required.
  • int surface - Surface number.

Return value

Returns 1 if the intersection occurs.

Node GetNode ( ) #

Returns the Node smart pointer.

Return value

Node smart pointer.

int GetNumSurfaces ( ) #

Returns the number of object surfaces.

Return value

The number of object surfaces.

int GetNumTriangles ( int surface ) #

Returns the number of triangles.

Arguments

  • int surface - Surface number.

Return value

Returns the number of triangles.

Object GetObject ( ) #

Returns the Object smart pointer.

Return value

Object smart pointer.

ObjectExtern GetObjectExtern ( ) #

Returns the ObjectExtern smart pointer.

Return value

ObjectExtern smart pointer.

int GetOrder ( vec3 camera, int surface ) #

Returns the rendering order with respect to the camera position.

Arguments

  • vec3 camera - World camera position.
  • int surface - Surface number.

Return value

Surface rendering order.

int GetRandomPoint ( out vec3 ret_point, out vec3 ret_normal, out vec3 ret_velocity, int surface ) #

Returns a random point from a surface.

Arguments

  • out vec3 ret_point - Random point coordinates.
  • out vec3 ret_normal - Random normal vector.
  • out vec3 ret_velocity - Random velocity vector.
  • int surface - Surface number.

Return value

Returns 1 if the random point is valid.

int GetResource ( int surface ) #

Returns the unique render resource identifier.

Arguments

  • int surface - Surface number.

Return value

Surface resource identifier.

int GetSequence ( vec3 camera, int surface ) #

Returns the rendering sequence with respect to the camera position.

Arguments

  • vec3 camera - World camera position.
  • int surface - Surface number.

Return value

Surface rendering sequence.

string GetSurfaceName ( int surface ) #

Returns the object surface name.

Arguments

  • int surface - Surface number.

Return value

Surface name.

float GetTransparentDistance ( vec3 camera, int surface ) #

Returns the transparent rendering distance.

Arguments

  • vec3 camera - World camera position.
  • int surface - Surface number.

Return value

Surface rendering distance.

void Create ( int surface ) #

Renders a create function.

Arguments

  • int surface - Surface number.

int FindSurface ( string name ) #

Returns the number of the object surface by its name.

Arguments

  • string name - Surface name.

Return value

Surface number.

int HasCreate ( ) #

Returns a value indicating that the object has a create function.

Return value

Returns 1 if the object has a create function.

int HasLods ( ) #

Returns a value indicating if the object has LODs.

Return value

Returns 1 if the object has surface LODs.

int HasRender ( ) #

Returns a value indicating that the object has a render function.

Return value

Returns 1 if the object has a render function.

int HasShadow ( ) #

Returns a value indicating that the object has a shadow function.

Return value

Returns 1 if the object has a shadow function.

int LoadWorld ( Xml xml ) #

Loads an object state from the Xml.

Arguments

  • Xml xml - Xml smart pointer.

Return value

Returns 1 if the object state was successfully loaded; otherwise, 0 is returned.

void PreRender ( float ifps ) #

Pre-render function, i.e. after the update() and before the render() function.

Arguments

  • float ifps - Inverse FPS value.

void Render ( Render.PASS pass, int surface ) #

Renders the render function.

Arguments

  • Render.PASS pass - Rendering pass.
  • int surface - Surface number.

void RenderHandler ( ) #

Renders the handler.

void RenderShadow ( Render.PASS pass, int surface ) #

Renders render function.

Arguments

  • Render.PASS pass - Rendering pass.
  • int surface - Surface number.

void RenderVisualizer ( ) #

Renders the visualizer.
Notice
You should enable the engine visualizer by the show_visualizer 1 console command.

void ResizeSurfaces ( ) #

Resizes all of the object surfaces.

bool SaveState ( Stream stream ) #

Saves an object state into the stream.

Saving into the stream requires creating a blob to save into. To restore the saved state the restoreState() method is used:

Source code (C#)
// initialize a node and set its state
//...//

// save state
Blob blob_state = new Blob();
object.SaveState(blob_state);

// change the node state
//...//

// restore state
blob_state.SeekSet(0);	// returning the carriage to the start of the blob
object.RestoreState(blob_state);

Arguments

  • Stream stream - Stream smart pointer.

Return value

true on success; otherwise, false.

bool RestoreState ( Stream stream ) #

Restores an object state from the stream.

Restoring from the stream requires creating a blob to save into and saving the state using the saveState() method:

Source code (C#)
// initialize a node and set its state
//...//

// save state
Blob blob_state = new Blob();
object.SaveState(blob_state);

// change the node state
//...//

// restore state
blob_state.SeekSet(0);	// returning the carriage to the start of the blob
object.RestoreState(blob_state);

Arguments

  • Stream stream - Stream smart pointer.

Return value

true on success; otherwise, false.

int SaveWorld ( Xml xml ) #

Saves an object state into the Xml.

Arguments

  • Xml xml - Xml smart pointer.

Return value

Returns 1 if the object state was successfully saved; otherwise, 0 is returned.

void Update ( float ifps ) #

Update function.

Arguments

  • float ifps - Inverse FPS value.

void UpdateEnabled ( ) #

Updates enabled.

void UpdateEnabled ( int surface ) #

Updates enabled.

Arguments

  • int surface - Surface number.

void UpdatePosition ( ) #

Updates a position.

void UpdateSurfaces ( ) #

Updates all of the object surfaces.

void UpdateTransform ( ) #

Updates transformation.

void SetUpdateDistanceLimit ( float distance ) #

Sets the distance from the camera within which the object should be updated.

Arguments

  • float distance - Distance from the camera within which the object should be updated (in units).

float GetUpdateDistanceLimit ( ) #

Returns the distance from the camera within which the object should be updated.

Return value

Distance from the camera within which the object should be updated (in units).

void SetForceUpdate ( bool enabled ) #

Sets a value indicating if the object should be constantly updated each frame, regardless of the update distance.

Arguments

  • bool enabled - true to enable forced updating for the object; false - to disable forced updating and take the update distance into account.

bool IsForceUpdate ( ) #

Returns a value indicating if the object should be constantly updated each frame, regardless of the update distance.

Return value

true if the object is constantly updated each frame; otherwise, false
Last update: 2022-12-14
Build: ()