This page has been translated automatically.
视频教程
界面
要领
高级
实用建议
专业(SIM)
UnigineEditor
界面概述
资源工作流程
版本控制
设置和首选项
项目开发
调整节点参数
Setting Up Materials
设置属性
照明
Sandworm
使用编辑器工具执行特定任务
如何擴展編輯器功能
嵌入式节点类型
Nodes
Objects
Effects
Decals
光源
Geodetics
World Nodes
Sound Objects
Pathfinding Objects
Players
编程
基本原理
搭建开发环境
使用范例
C++
C#
UnigineScript
UUSL (Unified UNIGINE Shader Language)
Plugins
File Formats
材质和着色器
Rebuilding the Engine Tools
GUI
双精度坐标
应用程序接口
Animations-Related Classes
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
Plugins-Related Classes
IG Plugin
CIGIConnector Plugin
Rendering-Related Classes
VR-Related Classes
创建内容
内容优化
材质
Material Nodes Library
Miscellaneous
Input
Math
Matrix
Textures
Art Samples
Tutorials

Unigine::BodyPath Class

Header: #include <UniginePhysics.h>
Inherits from: Body

This class represents a path along which an arbitrary rigid body can be moved. For example, it allows for creation of a physically simulated train moving along the railtrack. BodyRigid and BodyPath should be connected together with JointPath.

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

See Also#

  • A set of samples located in the data/samples/ directory, namely:
    1. physics/train_00.cpp
    2. joints/path_00.cpp

BodyPath Class

Members


static BodyPathPtr create ( ) #

Constructor. Creates a path with default properties, along which a rigid body is moved.

static BodyPathPtr create ( const Ptr<Object> & object ) #

Constructor. Creates a path with default properties for the given object. Along this path a rigid body is moved.

Arguments

  • const Ptr<Object> & object - Object represented with the new path body.

Math::Vec3 getClosestPosition ( const Math::Vec3 & position ) #

Finds the point on the path which is the closest to the given reference point.

Arguments

  • const Math::Vec3 & position - Coordinates of the reference point.

Return value

Coordinates of the reference point, if the path exists; otherwise, the (0 0 0) vector is returned.

Math::quat getClosestRotation ( const Math::Vec3 & position ) #

Finds the point on the path which is the closest to the given reference point and returns rotation set by the path in this point.

Arguments

  • const Math::Vec3 & position - Coordinates of the reference point.

Return value

Rotation set by the path in the found point, if the path is exists; otherwise, the (0 0 0 1) quaternion is returned.

Ptr<Path> getPath ( ) #

Returns the path along which physical objects are moving. By using this function, you can change velocity of the objects moving along the path, their transformation, etc.

Return value

Instance of the Path class.

void setPathName ( const char * name, int unique = 0 ) #

Reloads the internal path transformation.

Arguments

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

const char * getPathName ( ) #

Returns a name of the path along which physical objects are moving.

Return value

Path to the path file.
Last update: 2020-07-31
Build: ()