This page has been translated automatically.
视频教程
界面
要领
高级
实用建议
UnigineEditor
界面概述
资产工作流程
设置和首选项
项目开发
调整节点参数
Setting Up Materials
Setting Up Properties
照明
Landscape Tool
Sandworm (Experimental)
使用编辑器工具执行特定任务
Extending Editor Functionality
嵌入式节点类型
Nodes
Objects
Effects
Decals
Light Sources
Geodetics
World Objects
Sound Objects
Pathfinding Objects
Players
编程
基本原理
搭建开发环境
Usage Examples
UnigineScript
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine Tools
GUI
双精度坐标
应用程序接口
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
注意! 这个版本的文档是过时的,因为它描述了一个较老的SDK版本!请切换到最新SDK版本的文档。
注意! 这个版本的文档描述了一个不再受支持的旧SDK版本!请升级到最新的SDK版本。

Unigine.WorldTransformPath Class

Inherits: Node

This class is used to create a frame-based succession of transformations from a loaded path. For other nodes to move along with these transformations, they should be assigned as WorldTransformPath children.

Notice
The path is a spline along which an object can be moved.

See Also#

  • UnigineScript API sample <UnigineSDK>/data/samples/worlds/path_00
  • UnigineScript API sample <UnigineSDK>/data/samples/physics/car_03

WorldTransformPath Class

Properties

bool IsStopped#

A value indicating if the transformation defined by the path is stopped.

bool IsPlaying#

A value indicating if the transformation defined by the path is played.

float Speed#

The speed of playback of the transformation defined by the path.
set
Sets the speed of playback of the transformation defined by the path.
set value - Speed of the transformation playback. Negative value controls reverse playback.

float Time#

The time from which the playback of the transformation defined by the path starts.
set
Sets the time, from which the playback of the transformation defined by the path starts. If the object is oriented along the path, its transformation will be correspond to the path transformation at the specified time. Otherwise, only position of the object will change.
set value - The playback time to be set.

int Loop#

A value indicating if the transformation defined by the path is looped.
set
Sets a value indicating if the transformation defined by the path should be looped.
set value - 1 to loop the transformation defined by the path; 0 to play it only once.

int Orientation#

A value indicating if an object is oriented along the path. When this option is enabled the complete transformation matrix (position, rotation, and scale) is taken into account when calculating intermediate transformation between the frames. When disabled - only the intermediate position between the frames is used, while keeping object's scale and rotation.
set
Sets a value indicating if an object should be oriented along the path. When this option is enabled the complete transformation matrix (position, rotation, and scale) is taken into account when calculating intermediate transformation between the frames. When disabled - only the intermediate position between the frames is used, while keeping object's scale and rotation.
set value - 1 to orient an object along the path; 0 to keep the initial orientation of the object. The default value is 1.

Path Path#

The path, by which the transformation is defined. by using this function, you can edit the current path or change velocity or transformation of the object moving along the path.

float UpdateDistanceLimit#

The distance from the camera within which the object should be updated.
set
Sets the distance from the camera within which the object should be updated.
set value - Distance from the camera within which the object should be updated.

Members


static WorldTransformPath ( string name, int unique = 0 ) #

Constructor. Creates a transformer defined by a path in world coordinates.

Arguments

  • string name - Path to the *.path file.
  • int unique - The dynamic flag:
    • 0 - If the path is changed in run-time, paths loaded from the same file will be also changed.
    • 1 - If the path is changed in run-time, paths loaded from the same file won't be changed

void SetPathName ( string name, int unique = 0 ) #

Reloads the internal path transformation.

Arguments

  • string name - The path name to be set.
  • int unique - The dynamic flag:
    • 0 - If the reloaded path is changed, paths loaded from the same file will be also changed.
    • 1 - If the reloaded path is changed, paths loaded from the same file won't be changed.

string GetPathName ( ) #

Returns the name of the path, by which the transformation is defined.

Return value

The path name.

void Play ( ) #

Continues playback of the transformation defined by the path, if it is paused, or starts playback if it is stopped.

void Stop ( ) #

Stops playback of the transformation defined by the path. This function saves the playback position so that playing of the transformation defined by the path can be resumed from the same point.

static int type ( ) #

Returns the type of the node.

Return value

World type identifier.
Last update: 2020-11-24
Build: ()