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.

PlayerSpectator Class

This class is used to create a free flying camera without a physical body. It is approximated with a sphere, which allows it to collide with objects (but it cannot, for example, push or interact with them). It can also accelerate and damp its velocity.

PlayerSpectator Class

This class inherits from Player

Members


PlayerSpectator ()

Constructor. Creates a new spectator with default properties.

float getAcceleration ()

Returns the current acceleration of the spectator.

Return value

Acceleration, in units per second squared.

int getCollisionMask ()

Returns a collision mask of the spectators's collision sphere. Two objects collide, if they both have matching masks.

Return value

Integer, each bit of which is a mask.

float getCollisionRadius ()

Returns radius of the spectators's collision sphere.

Return value

Radius of the collision sphere in units.

int getCollision ()

Returns a value indicating if collisions with spectator's sphere should be taken into account.

Return value

1 if collisions are taken into account; otherwise, 0.

float getContactDepth (int contact)

Returns penetration depth by the given contact.

Arguments

  • int contact - Contact number.

Return value

Penetration depth.

vec3 getContactNormal (int contact)

Returns a normal of the contact point, in world coordinates.

Arguments

  • int contact - Contact number.

Return value

Normal of the contact point.

Object getContactObject (int contact)

Returns an object participating in the contact with the player (used for collisions with physical object).

Arguments

  • int contact - Contact number.

Return value

Object in contact.

vec3 getContactPoint (int contact)

Returns world coordinates of the contact point.

Arguments

  • int contact - Contact number.

Return value

Contact point.

Shape getContactShape (int num)

Returns a shape that collided with the player.

Arguments

  • int num - Contact number.

Return value

Shape in contact.

int getContactSurface (int contact)

Returns the surface of the current object, which is in contact (used for collisions with non-physical object).

Arguments

  • int contact - Contact number.

Return value

Surface number.

float getDamping ()

Returns spectator's damping.

Return value

Damping.

float getMaxThetaAngle ()

Returns the maximum theta angle (zenith angle, also known as pitch angle) that determines how far downward the player can look. The higher the value, the further down the player can look.

Return value

The current maximum theta angle in degrees.

float getMaxVelocity ()

Returns the velocity of the actor, which is used while the actor runs (while CONTROLS_STATE_RUN is "pressed").

Return value

Velocity in units per second.

float getMinThetaAngle ()

Returns the minimum theta angle (zenith angle, also known as pitch angle) that determines how far upward the player can look. The lower the value, the further up the player can look.

Return value

The current minimum Theta angle in degrees.

float getMinVelocity ()

Returns the default velocity of the spectator.

Return value

Velocity in units per second.

int getNumContacts ()

Returns the number of contacts, in which the spectator's sphere participates.

Return value

Number of contacts.

float getPhiAngle ()

Returns the phi angle (azimuth angle, also known as yaw angle). This angle determines the horizontal viewing direction, i.e. left or right. Positive values rotate the player to the right; negative values rotate it to the left.

Return value

Phi angle value.

float getThetaAngle ()

Returns the theta angle (zenith angle, also known as pitch angle). This angle determines the vertical viewing direction, i.e. upwards or downwards. If a positive value is returned, the player looks upwards; if a negative value is returned, the player looks downwards. The value is clamped between the minimum and the maximum theta angle.

Return value

Theta angle value.

float getTurning ()

Returns a velocity of player turning.

Return value

Turning velocity in degrees per second.

void setAcceleration (float acceleration)

Sets an acceleration of the spectator.

Arguments

  • float acceleration - New acceleration in units per second squared. If a negative value is provided, 0 will be used instead.

void setCollisionMask (int mask)

Sets a collision mask for the spectators's collision sphere. Two objects collide, if they both have matching masks.

Arguments

  • int mask - Integer, each bit of which is a mask.

void setCollisionRadius (float radius)

Updates radius of the spectators's collision sphere.

Arguments

  • float radius - New radius of the collision sphere.

void setCollision (int mode)

Updates a value indicating if collisions with spectator's sphere should be taken into account.

Arguments

  • int mode - 1 to enable collisions, 0 to let the spectator fly through objects.

void setDamping (float damping)

Sets spectator's damping.

Arguments

  • float damping - New damping.

void setMaxThetaAngle (float angle)

Sets the maximum theta angle (zenith angle, also known as pitch angle) that determines how far downward the player can look.

Arguments

  • float angle - New angle in degrees in range [0;90]. The higher the value, the further down the player can look.

void setMaxVelocity (float velocity)

Sets the velocity of the actor, which is used while the actor runs (while CONTROLS_STATE_RUN is "pressed").

Arguments

  • float velocity - New velocity in units per second. If a negative value is provided, 0 will be used instead.

void setMinThetaAngle (float angle)

Sets the minimum theta angle (zenith angle, also known as pitch angle) that determines how far upward the player can look.

Arguments

  • float angle - New angle in degrees in range [-90;0]. The lower the value, the further up the player can look.

void setMinVelocity (float velocity)

Sets the default velocity of the spectator.

Arguments

  • float velocity - New velocity in units per second. If a negative value is provided, 0 will be used instead.

void setPhiAngle (float angle)

Sets the phi angle (azimuth angle, also known as yaw angle). This angle determines the horizontal viewing direction, i.e. left or right.

Arguments

  • float angle - New angle in degrees. Positive values rotate the player right; negative values rotate it left.

void setThetaAngle (float angle)

Sets the theta angle of the player (zenith angle, also known as pitch angle). This angle determines the vertical viewing direction, i.e. upwards or downwards. The value will be clamped between the minimum and the maximum theta angle.

Arguments

  • float angle - New angle in degrees in range [-90;90]. If a positive value is specified, the player will look upwards; if a negative value is specified, the player will look downwards.

void setTurning (float velocity)

Sets a velocity of player turning.

Arguments

  • float velocity - Turning velocity in degrees per second. If a negative value is provided, 0 will be used instead.
Last update: 2017-07-03
Build: ()