This page has been translated automatically.
Видеоуроки
Интерфейс
Основы
Продвинутый уровень
Подсказки и советы
Основы
Программирование на C#
Рендеринг
Профессиональный уровень (SIM)
Принципы работы
Свойства (properties)
Компонентная Система
Рендер
Физика
Редактор UnigineEditor
Обзор интерфейса
Работа с ассетами
Контроль версий
Настройки и предпочтения
Работа с проектами
Настройка параметров ноды
Setting Up Materials
Настройка свойств
Освещение
Sandworm
Использование инструментов редактора для конкретных задач
Расширение функционала редактора
Встроенные объекты
Ноды (Nodes)
Объекты (Objects)
Эффекты
Декали
Источники света
Geodetics
World-ноды
Звуковые объекты
Объекты поиска пути
Player-ноды
Программирование
Основы
Настройка среды разработки
Примеры использования
C++
C#
UnigineScript
UUSL (Unified UNIGINE Shader Language)
Плагины
Форматы файлов
Материалы и шейдеры
Rebuilding the Engine Tools
Интерфейс пользователя (GUI)
Двойная точность координат
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
VR-Related Classes
Работа с контентом
Оптимизация контента
Материалы
Визуальный редактор материалов
Material Nodes Library
Miscellaneous
Input
Math
Matrix
Textures
Art Samples
Учебные материалы

Unigine::AnimationModifierBool 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.
Header: #include <UnigineAnimation.h>
Inherits from: AnimationModifier

AnimationModifierBool Class

Members

void setCurve ( const Ptr<AnimationCurveBool>& curve ) #

Sets a new curve storing the values used by the modifier.

Arguments


Ptr<AnimationCurveBool> getCurve() const#

Returns the current curve storing the values used by the modifier.

Return value

Current curve storing the values used by the modifier.

AnimationModifierBool ( AnimParams::PARAM param ) #

Creates the animation modifier to animate the specified parameter.

Arguments

  • AnimParams::PARAM param - Parameter to be animated by the modifier.

AnimationModifierBool ( AnimParams::PARAM param, int param_index ) #

Creates the animation modifier to animate the specified parameter.

Arguments

  • AnimParams::PARAM param - Parameter to be animated by the modifier.
  • int param_index - Index of the parameter.

AnimationModifierBool ( AnimParams::PARAM param, const char * param_name ) #

Creates the animation modifier to animate the specified parameter.

Arguments

  • AnimParams::PARAM param - Parameter to be animated by the modifier.
  • const char * param_name - Name of the parameter.

AnimationModifierBool ( const char * param ) #

Creates the animation modifier to animate the specified parameter.

Arguments

  • const char * param - Parameter to be animated by the modifier.

AnimationModifierBool ( const char * param, int param_index ) #

Creates the animation modifier to animate the specified parameter.

Arguments

  • const char * param - Parameter to be animated by the modifier.
  • int param_index - Index of the parameter.

AnimationModifierBool ( const char * param, const char * param_name ) #

Creates the animation modifier to animate the specified parameter.

Arguments

  • const char * param - Parameter to be animated by the modifier.
  • const char * param_name - Name of the parameter.

void copy ( const Ptr<AnimationModifierBool> & modifier ) #

Copies all data from the specified source animation modifier.

Arguments

  • const Ptr<AnimationModifierBool> & modifier - Source animation modifier.

bool getValueByTime ( float time ) #

Returns the value of the modifier at the specified time.

Arguments

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

Return value

The modifier value at the specified time.

bool getValueByNormalizedTime ( float normalized_time ) #

Returns the normalized value of the modifier at the specified time.

Arguments

  • float normalized_time - The normalized time value.

Return value

The modifier value at the specified time.

void addValue ( float time, bool value, AnimationCurve::KEY_TYPE type = Enum.AnimationCurve.KEY_TYPE.LINEAR ) #

Adds the value to the modifier at the specified time.

Arguments

  • float time - Time of the key on the timeline, in seconds.
  • bool value - The modifier value at the specified time.
  • AnimationCurve::KEY_TYPE type - Interpolation type set for the key, one of the KEY_TYPE_* values.

bool getDefaultValue ( ) const#

Returns the default value for all modifier elements.

Return value

Default value for all modifier elements.
Last update: 19.04.2024
Build: ()