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
双精度坐标
应用程序接口
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
VR-Related Classes
创建内容
内容优化
材质
Material Nodes Library
Miscellaneous
Input
Math
Matrix
Textures
Art Samples
Tutorials

Unigine.AnimationCurveScalar Class

Warning
The functionality described here is EXPERIMENTAL and is not recommended for production use. Future releases may bring significant changes to API and features. Backward compatibility of the final production-ready version is not guaranteed.
Inherits from: AnimationCurve

This class represents an interface enabling you to create and manage animation curves containing scalar values.

AnimationCurveScalar Class

Properties

Scalar DefaultKeyValue#

The default value of all keys in the curve.

int NumKeys#

The total number of key points in the curve.

float MinTime#

The point of the whole animation timeline where this curve starts being applied, in units.

float MaxTime#

The point of the whole animation timeline up to which this curve is applied, in units.

Members


AnimationCurveScalar ( ) #

Constructor. Creates a new animation curve instance containing scalar values.

void Copy ( AnimationCurveScalar curve ) #

Copies all data (key points and tangents) from the specified source curve.

Arguments

  • AnimationCurveScalar curve - Source curve.

int AddKey ( float time, Scalar value ) #

Adds a new key point with the specified value at the specified point of the timeline to the curve.

Arguments

  • float time - Time of the key on the timeline, in seconds.
  • Scalar value - The scalar value of the key.

Return value

Index of the added key point.

int AddKey ( float time, Scalar value, AnimationCurve.KEY_TYPE type ) #

Adds a new key point with the specified value and type at the specified point of the timeline to the curve.

Arguments

  • float time - Time of the key on the timeline, in seconds.
  • Scalar value - The scalar value of the key.
  • AnimationCurve.KEY_TYPE type - Interpolation type set for the key, one of the KEY_TYPE values.

Return value

Index of the added key point.

int AddKey ( float time, Scalar value, AnimationCurve.KEY_TYPE type, vec2 left_tangent, vec2 right_tangent ) #

Adds a new key point with the specified value, type and tangents at the specified point of the timeline to the curve.

Arguments

  • float time - Time of the key on the timeline, in seconds.
  • Scalar value - The scalar value of the key.
  • AnimationCurve.KEY_TYPE type - Interpolation type set for the key, one of the KEY_TYPE values.
  • vec2 left_tangent - Coordinates of the left tangent at the key point.
  • vec2 right_tangent - Coordinates of the right tangent at the key point.

Return value

Index of the added key point.

void RemoveKey ( int index ) #

Removes the key point with the specified index from the curve.

Arguments

int MoveKey ( int index, float new_time ) #

Moves the key point with the specified number to a new time position (preserving the tangents). The index of key point will be updated automatically. This method can be used to implement dragging of keys on the curve.

Arguments

  • int index - Key point number, in the range from 0 to the total number of key points in the curve.
  • float new_time - Time of the key on the timeline, in seconds.

Return value

New index of the key.

void SetKeyType ( int index, AnimationCurve.KEY_TYPE type ) #

Sets the interpolation type for the specified key on the curve.

Arguments

AnimationCurve.KEY_TYPE GetKeyType ( int index ) #

Returns the interpolation type of the specified key on the curve.

Arguments

Return value

Interpolation type set for the key, one of the KEY_TYPE values.

float GetKeyTime ( int index ) #

Returns the current time of the key point with the specified index.

Arguments

Return value

The time of the specified key point on the timeline, in seconds.

void SetKeyValue ( int index, Scalar value ) #

Sets the value for the specified key on the curve.

Arguments

  • int index - Key point number, in the range from 0 to the total number of key points in the curve.
  • Scalar value - The scalar value of the key.

Scalar GetKeyValue ( int index ) #

Returns the current value for the specified key on the curve.

Arguments

Return value

The scalar value of the key.

void SetKeyLeftTangent ( int index, vec2 left_tangent ) #

Sets new coordinates for the left tangent at the specified key point of the curve.

Arguments

  • int index - Key point number, in the range from 0 to the total number of key points in the curve.
  • vec2 left_tangent - Coordinates of the left tangent at the specified key point to be set.

vec2 GetKeyLeftTangent ( int index ) #

Returns the current coordinates for the left tangent at the specified key point of the curve.

Arguments

Return value

Coordinates of the left tangent at the specified key point to be set.

void SetKeyRightTangent ( int index, vec2 right_tangent ) #

Sets new coordinates for the right tangent at the specified key point of the curve.

Arguments

  • int index - Key point number, in the range from 0 to the total number of key points in the curve.
  • vec2 right_tangent - Coordinates of the right tangent at the specified key point to be set.

vec2 GetKeyRightTangent ( int index ) #

Returns the current coordinates for the right tangent at the specified key point of the curve.

Arguments

Return value

Coordinates of the right tangent at the specified key point to be set.

void SetTypeOfAllKeys ( AnimationCurve.KEY_TYPE type ) #

Sets the interpolation type for all keys of the curve.

Arguments

void Clear ( ) #

Clears the curve removing all key points and tangents.

Scalar GetValueByTime ( float time ) #

Returns the key value at the specified key point of the curve.

Arguments

  • float time - Time of the key on the timeline, in seconds.

Return value

The scalar value of the key.

Scalar GetValueByNormalizedTime ( float time ) #

Returns the key value using the normalized time value of the key.

Arguments

  • float time - The normalized time value of the key.

Return value

The scalar value of the key.

void Save ( Blob blob ) #

Saves the curve data to a blob.

Arguments

  • Blob blob - Blob to which the curve data will be saved.

void Load ( Blob blob ) #

Loads the curve data from the blob.

Arguments

  • Blob blob - Blob storing the curve data.
Last update: 2024-04-19
Build: ()