This page has been translated automatically.
UnigineScript
The Language
Core Library
Engine Library
Node-Related Classes
GUI-Related Classes
Plugins Library
High-Level Systems
Samples
Usage Examples
C++ API
API Reference
Integration Samples
Usage Examples
C++ Plugins
Migration
Migrating to UNIGINE 2.0
C++ API Migration
Migrating from UNIGINE 2.0 to UNIGINE 2.1
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.

Unigine::PhysicalWind Class

Interface for physical wind handling.

To use this class, include the UniginePhysicalWind.h file.

Unigine::PhysicalWind Class

Members


static int type ()

PhysicalWind type.

Return value

PhysicalWind type identifier.

static Ptr< PhysicalWind > create (const NodePtr & node)

PhysicalWind constructor.

Arguments

  • const NodePtr & node - Node smart pointer.

static Ptr< PhysicalWind > create (const PhysicalPtr & physical)

PhysicalWind constructor.

Arguments

  • const PhysicalPtr & physical - Physical smart pointer.

static Ptr< PhysicalWind > create (const vec3 & size)

PhysicalWind constructor.

Arguments

  • const vec3 & size - Wind box size in units.

virtual void setSize (const vec3 & size) const =0

Sets the size of the physical wind node.

Arguments

  • const vec3 & size - Wind box size in units.

virtual vec3 getSize () const =0

Returns the current size of the physical wind node.

Return value

Wind box size in units.

virtual void setThreshold (const vec3 & Threshold) const =0

Sets the threshold distance values along the coordinates axes relative to the wind node size (that is, inside of it). It determines the area of gradual change from zero to full wind velocity.

Arguments

  • const vec3 & Threshold - distance in units.

virtual vec3 getThreshold () const =0

Returns the current threshold distance values along the coordinates axes relative to the wind node size (that is, inside of it). It determines the area of gradual change from zero to full wind velocity.

Return value

Threshold distance in units.

virtual void setVelocity (const vec3 & velocity) const =0

Sets velocity of the physical wind flow.

Arguments

  • const vec3 & velocity - Velocity in units per second.

virtual vec3 getVelocity () const =0

Returns the current velocity of the physical wind flow.

Return value

Velocity in units per second.

virtual void setLinearDamping (float damping) const =0

Sets a value indicating how much the linear velocity of the objects decreases when they get inside the wind node.

Arguments

  • float damping - Linear damping value. If a negative value is provided, 0 will be used instead.

virtual float getLinearDamping () const =0

Returns the current value indicating how much the linear velocity of the objects decreases when they get inside the wind node.

Return value

Linear damping value.

virtual void setAngularDamping (float Angular) const =0

Sets a value indicating how much the angular velocity of the objects decreases when they get inside the wind node.

Arguments

  • float Angular - damping value. If a negative value is provided, 0 will be used instead.

virtual float getAngularDamping () const =0

Returns the current angular velocity of the objects decreases when they get inside the wind node.

Return value

Angular damping value.
Last update: 2017-07-03
Build: ()