This page has been translated automatically.
UnigineEditor
Interface Overview
Assets Workflow
Settings and Preferences
Working With Projects
Adjusting Node Parameters
Setting Up Materials
Setting Up Properties
Landscape Tool
Using Editor Tools for Specific Tasks
Extending Editor Functionality
Programming
Fundamentals
Setting Up Development Environment
Usage Examples
UnigineScript
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
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
Objects-Related Classes
Networking Functionality
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
IG Plugin
CIGIConnector 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.

Projections Class

Warning
UnigineScript is deprecated and will be removed in future releases. Please consider using C#/C++ instead, as these APIs are the preferred ones. Availability of new Engine features in UnigineScipt is not guaranteed, as the current level of support assumes only fixing critical issues.
Warning
The functionality described in this article is not available in the Community SDK edition.
You should upgrade to Sim SDK edition to use it.
Notice
Syncker plugin must be loaded.

This class represents an interface used to manage projections configuration of the Syncker.

Projections Class

Members


void setEnabled ( int enabled ) #

Sets a value indicating if projections on this host are to be modified by the Synker. You can disable this option, when using Syncker only for synchronization of node transformations (and/or transfer data) and modification of projections is unnecessary.

Arguments

  • int enabled - 1 to enable modification of projections on this host by the Syncker; 0 - to disable it.

int isEnabled ( ) #

Returns the current value indicating if projections on this host are to be modified by the Synker. You can disable this option, when using Syncker only for synchronization of node transformations (and/or transfer data) and modification of projections is unnecessary.

Return value

1 if modification of projections on this host by the Syncker is enabled; otherwise, 0.

void setConfiguratorEnabled ( int enabled ) #

Sets a value indicating if Syncker’s Projection Configurator window is shown.

Arguments

  • int enabled - 1 to show Syncker’s Projection Configurator window; 0 - to hide it.

int isConfiguratorEnabled ( ) #

Returns the current value indicating if Syncker’s Projection Configurator window is shown.

Return value

1 if modification of projections on this host by the Syncker is enabled; otherwise, 0.

void saveProjections ( string file_name, int binary = false ) #

Saves the current projections configuration to the specified file. You can use this method to migrate old binary files to the new XML format.

Arguments

  • string file_name - Name of the file to which the current projections configuration shall be saved.
  • int binary - Binary flag. Set 1 to save configuration in binary format; 0 - to save in XML format.

void loadProjections ( string file_name, int binary = false ) #

Loads projections configuration from the specified file. You can use this method to migrate old binary files to the new XML format.

Arguments

  • string file_name - Name of the file with projections configuration to be loaded.
  • int binary - Binary flag. Set 1 to load configuration from a binary file; 0 - to load configuration from an XML file.

int getNumDisplays ( ) #

Returns the total number of displays in the current configuration.

Return value

Current number of displays.

int addDisplay ( string name ) #

Adds a new display to the current configuration.

Arguments

  • string name - Name of the new display to be added.

Return value

Number of the new added display.

void removeDisplay ( int num ) #

Removes the display with the specified number from the current configuration.

Arguments

void setDisplayEnabled ( int num, int enabled ) #

Sets a value indicating if the specified display is enabled.

Arguments

  • int num - Number of the display in the range from 0 to the total number of displays.
  • int enabled - 1 to enable the specified display; 0 - to disable it.

int isDisplayEnabled ( int num ) #

Returns a value indicating if the specified display is enabled.

Arguments

Return value

1 if the specified display is enabled; otherwise, 0.

void setDisplayName ( int num, string name ) #

Sets a new name for the display with the specified number.

Arguments

  • int num - Number of the display in the range from 0 to the total number of displays.
  • string name - New name to be set for the specified display.

string getDisplayName ( int num ) #

Returns the name of the display with the specified number.

Arguments

Return value

Name of the specified display.

void setDisplayTransform ( int num, Mat4 transform ) #

Sets a new transformation for the display with the specified number.

Arguments

  • int num - Number of the display in the range from 0 to the total number of displays.
  • Mat4 transform - New transformation to be set for the specified display.

Mat4 getDisplayTransform ( int num ) #

Returns the current transformation of the display with the specified number.

Arguments

Return value

Current transformation of the specified display.

int getNumProjectors ( ) #

Returns the total number of projectors in the current configuration.

Return value

Current number of projectors.

int addProjector ( string name ) #

Adds a new projector to the current configuration.

Arguments

  • string name - Name of the new projector to be added.

Return value

Number of the new added projector.

void removeProjector ( int num ) #

Removes the projector with the specified number from the current configuration.

Arguments

void setProjectorEnabled ( int num, int enabled ) #

Sets a value indicating if the specified projector is enabled.

Arguments

  • int num - Number of the projector in the range from 0 to the total number of projectors.
  • int enabled - 1 to enable the specified projector; 0 - to disable it.

int isProjectorEnabled ( int num ) #

Returns a value indicating if the specified projector is enabled.

Arguments

Return value

1 if the specified projector is enabled; otherwise, 0.

void setProjectorName ( int num, string name ) #

Sets a new name for the projector with the specified number.

Arguments

  • int num - Number of the projector in the range from 0 to the total number of projectors.
  • string name - New name to be set for the specified projector.

string getProjectorName ( int num ) #

Returns the name of the projector with the specified number.

Arguments

Return value

Name of the specified projector.

void setProjectorTransform ( int num, Mat4 transform ) #

Sets a new transformation for the projector with the specified number.

Arguments

  • int num - Number of the projector in the range from 0 to the total number of projectors.
  • Mat4 transform - New transformation to be set for the specified projector. The transformation includes position (relative to the viewer), rotation, and size (width and height).

Mat4 getProjectorTransform ( int num ) #

Returns the current transformation of the projector with the specified number.

Arguments

Return value

Current transformation of the specified projector.

void setProjectorAspectRatio ( int num, float aspect ) #

Sets a new aspect ratio (width to height) for the projector with the specified number.

Arguments

  • int num - Number of the projector in the range from 0 to the total number of projectors.
  • float aspect - New aspect ratio to be set for the specified projector.

float getProjectorAspectRatio ( int num ) #

Returns the current aspect ratio (width to height) of the projector with the specified number.

Arguments

Return value

Current aspect ratio of the specified projector.

void setProjectorVFOV ( int num, float vfov ) #

Sets a new vertical FOV (field of view) of the projector with the specified number.

Arguments

  • int num - Number of the projector in the range from 0 to the total number of projectors.
  • float vfov - New vertical field of view to be set for the specified projector, in degrees.

float getProjectorVFOV ( int num ) #

Returns the current vertical FOV (field of view) of the projector with the specified number.

Arguments

Return value

Current vertical field of view of the specified projector, in degrees.

void setProjectorHorizontalOffset ( int num, float hoffset ) #

Sets a new horizontal offset of the viewport of the projector with the specified number. The offset measures the position of the image relative to the centerline of the lens.

Arguments

  • int num - Number of the projector in the range from 0 to the total number of projectors.
  • float hoffset - New horizontal offset to be set for the viewport of the specified projector, in meters.

float getProjectorHorizontalOffset ( int num ) #

Returns the current horizontal offset of the viewport of the projector with the specified number. The offset measures the position of the image relative to the centerline of the lens.

Arguments

Return value

Current horizontal offset of the viewport of the specified projector, in meters.

void setProjectorVerticalOffset ( int num, float voffset ) #

Sets a new vertical offset of the viewport of the projector with the specified number. The offset measures the position of the image relative to the centerline of the lens.

Arguments

  • int num - Number of the projector in the range from 0 to the total number of projectors.
  • float voffset - New vertical offset to be set for the viewport of the specified projector, in meters.

float getProjectorVerticalOffset ( int num ) #

Returns the current vertical offset of the viewport of the projector with the specified number. The offset measures the position of the image relative to the centerline of the lens.

Arguments

Return value

Current vertical offset of the viewport of the specified projector, in meters.
Last update: 2020-04-10
Build: ()