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.

ObjectGrass Class

This class is used to create grass. The grass object is rendered in grid cells.

The following samples demonstrate the ObjectGrass class usage:

ObjectGrass Class

This class inherits from Object

Members


ObjectGrass ()

Constructor. Creates a new grass object.

float getAngle ()

Returns the current angle cosine defining the slope steepness appropriate for grass growing.

Return value

Slope angle cosine.

vec4 getAspectMean ()

Returns the current mean value of the grass aspect (width to height ratio), defined for four diffuse texture columns.

Return value

Mean value of grass aspect.

vec4 getAspectSpread ()

Returns the current spread value of the grass aspect (width to height ratio), defined for four diffuse texture columns.

Return value

Spread value of grass aspect.

float getDensity ()

Returns the current density factor for the grass per square unit.

Return value

Density factor.

int getFieldMask ()

Returns a mask specifying the area of the Field node to be applied to the grass.

Return value

Integer, each bit of which is a mask.

int getIntersection ()

Returns a value indicating whether grass grow upon the ground: either the terrain or a mesh set as a parent node.

Return value

Positive number if intersection is enabled; otherwise, 0.

int getMaskFlipX ()

Returns a flag indicating if a mask is flipped by X axis.

Return value

Positive value if the mask is flipped; otherwise, 0.

int getMaskFlipY ()

Returns a flag indicating if a mask is flipped by Y axis.

Return value

Positive value if the mask is flipped; otherwise, 0.

string getMaskImageName ()

Returns a name of the current mask texture that defines the areas of grass growing. Possible mask formats are R8, RG8, RGB8 and RGBA8.

Return value

Name (path) of the mask texture.

int getMaskImage (Image image)

Writes the image that is currently used to define the areas of grass growing into the given buffer. Possible mask formats are R8, RG8, RGB8 and RGBA8.

Arguments

  • Image image - Image buffer to store a mask into.

Return value

1 if the mask image is successfully written into the buffer; otherwise, 0.

int getMaskInverse ()

Returns a flag indicating if the grass is rendered inside or outside the mask mesh contour.

Return value

0 if the grass is rendered inside the mesh contour; 1 if outside.

int getMaskMaxValue ()

Returns the maximum value of the mask application range.

Return value

Maximum mask value.

string getMaskMeshName ()

Returns the current mesh to used as a mask for the grass. This mesh should be plane.

Return value

Path to the *.mesh file.

int getMaskMinValue ()

Returns the minimum value of the mask application range.

Return value

Minimum mask value.

vec4 getMaxHeightMean ()

Returns the mean value for the maximum grass height (rendered in areas with the highest density according to the mask). The height is defined for four diffuse texture columns.

Return value

Mean value for the maximum grass height in units.

vec4 getMaxHeightSpread ()

Returns the spread value for the maximum grass height (rendered in areas with the highest density according to the mask). The height is defined for four diffuse texture columns.

Return value

Spread value for the maximum grass height in units.

vec4 getMinHeightMean ()

Returns the mean value for the minimum grass height (rendered in areas with the lowest density according to the mask). The height is defined for four diffuse texture columns.

Return value

Mean value for the minimum grass height in units.

vec4 getMinHeightSpread ()

Returns the spread value for the minimum grass height (rendered in areas with the lowest density according to the mask). The height is defined for four diffuse texture columns.

Return value

Spread value for the minimum grass height in units.

int getNumTextures ()

Returns the number of textures contained in the grass diffuse texture.

Return value

The number of contained textures.

vec4 getOffsetMean ()

Returns the current mean value of the grass offset from the surface along the surface normal, defined for four diffuse texture columns.

Return value

Mean value of grass polygons offset in units.

vec4 getOffsetSpread ()

Returns the current spread value for the grass offset from the surface along the surface normal, defined for four diffuse texture columns.

Return value

Spread value for grass polygons offset in units.

int getOrientation ()

Returns a flag indicating if grass polygons are oriented along the normal of its parent (for example, a terrain).

Return value

1 if the grass is oriented along the normals of the ground; 0 if it always points upwards.

vec4 getProbability ()

Returns the current grass rendering probability per column (in the diffuse texture). The higher the value for some column, the more frequently it will be rendered.

Return value

Per-column probability.

int getSeed ()

Returns the seed used for pseudo-random positioning of grass.

Return value

Number used to initialize a pseudo-random sequence.

float getShadowRadius ()

Returns the current distance to draw additional grass polygons outside the view frustum. This option allows to eliminate popping of shadows at the edges of the screen when the camera is turning.

Return value

Distance in units.

float getSizeX ()

Returns the current width of the grass object along the X-coordinate.

Return value

X-coordinate width in units.

float getSizeY ()

Returns the current length of the grass object along the Y-coordinate.

Return value

Y-coordinate length in units.

int getSpawnCount ()

Returns the number of cells to be generated.

Return value

Number of cells to be generated if the scene generation is not completed; otherwise, 0.

float getStep ()

Returns the current step for cells used to render grass.

Return value

Step for grass cells.

int getSubdivision ()

Returns the current divisor used to subdivide grass rendering cells into smaller sub-cells. Subdividing is used if a grass node is used as a distant LOD for WorldClutter or ObjectMeshClutter with smaller cells. This way, positions of randomly scattered objects will coincide with those of grass-based impostors.

Return value

Divisor for cells.

int getThinning ()

Returns a flag indicating if the grass is thinned out with a distance (random grass polygons are not rendered across the grass Fade distance).

Return value

1 if the grass is thinned out; 0 if all grass polygons are rendered at the distance.

float getThreshold ()

Returns the current threshold for density, starting from which the grass is rendered.

Return value

Threshold value.

int getVariation ()

Returns a value indicating if the random horizontal flip for grass polygons is set.

Return value

Positive number if grass flipping is enabled; otherwise, 0.

void setAngle (float angle)

Sets the angle cosine defining the slope steepness appropriate for grass growing.

Arguments

  • float angle - Slope angle cosine in range from 0 to 1.

void setAspect (vec4 mean, vec4 spread)

Sets the aspect of the grass polygons (width to height ratio).

Arguments

  • vec4 mean - Mean value of grass aspect.
  • vec4 spread - Spread value of grass aspect.

void setDensity (float density)

Sets the density factor for the grass per square unit.

Arguments

  • float density - Density factor. If a negative value is provided, 0 will be used instead.

void setFieldMask (int mask)

Sets a mask specifying the area of the Field node to be applied to the grass.

Arguments

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

void setIntersection (int mode)

Sets a value indicating whether grass should grow upon the ground: either the terrain or a mesh set as a parent node.

Arguments

  • int mode - Positive number to enable intersection; 0 to disable.

void setMaskFlipX (int flip)

Flip the mask by X axis.

Arguments

  • int flip - Positive value to flip the mask; otherwise, 0.

void setMaskFlipY (int flip)

Flip the mask by Y axis.

Arguments

  • int flip - Positive value to flip the mask; otherwise, 0.

void setMaskImageName (string name)

Sets the name of a mask texture that defines the areas of growing grass. Possible mask formats are R8, RG8, RGB8 and RGBA8.

Arguments

  • string name - Name (path) of the mask texture.

int setMaskImage (Image image)

Sets an image that defines the areas of growing grass. Possible mask formats are R8, RG8, RGB8 and RGBA8.

Arguments

  • Image image - Pointer to the image.

Return value

1 if the mask image is successfully set; otherwise, 0.

void setMaskInverse (int inverse)

Specifies if the grass should be rendered inside or outside the mask mesh contour.

Arguments

  • int inverse - 0 to render the grass inside the mesh contour; 1 to render it outside.

void setMaskMaxValue (int value)

Sets the maximum value of the mask application range.

Arguments

  • int value - Maximum mask value, [0;255].

void setMaskMeshName (string name)

Sets a mesh to be used as a mask for the grass. This mesh should be plane.

Arguments

  • string name - Path to the *.mesh file.

void setMaskMinValue (int value)

Sets the minimum value of the mask application range.

Arguments

  • int value - Minimum mask value, [0;255].

void setMaxHeight (vec4 mean, vec4 spread)

Sets the maximum grass height (rendered in areas with the highest density according to the mask). The height is defined for four diffuse texture columns, as mean and spread values (Result = Mean + Random * Spread, where Random is a random value in range from -1 to 1).

Arguments

  • vec4 mean - Mean value for the maximum grass height in units. If a non-positive value is provided, EPSILON will be used instead.
  • vec4 spread - Spread value for the maximum grass height in units.

void setMinHeight (vec4 mean, vec4 spread)

Sets the minimum grass height (rendered in areas with the lowest density according to the mask). The height is defined for four diffuse texture columns, as mean and spread values (Result = Mean + Random * Spread, where Random is a random value in range from -1 to 1).

Arguments

  • vec4 mean - Mean value for the minimum grass height in units. If a non-positive value is provided, EPSILON will be used instead.
  • vec4 spread - Spread value for the minimum grass height in units.

void setNumTextures (int num_slots)

Sets the number of textures contained in the grass diffuse texture.

Arguments

  • int num_slots - The number of contained textures.

void setOffset (vec4 mean, vec4 spread)

Sets the grass offset from the surface along the surface normal, defined for four diffuse texture columns. If a negative mean value is provided, vec4_eps will be used instead.

Arguments

  • vec4 mean - Mean value of grass polygons offset in units.
  • vec4 spread - Spread value of grass polygons offset in units.

void setOrientation (int orientation)

Sets a flag to orient grass polygons along the normal of its parent (for example, a terrain).

Arguments

  • int orientation - 1 to orient the grass along the normals of the ground; 0 to render it always pointing upwards.

void setProbability (vec4 probability)

Sets the grass rendering probability per column (in the diffuse texture). The higher the value for some column, the more frequently it will be rendered.

Arguments

  • vec4 probability - Per-column probability. Any values can be set, since they are normalized.

void setSeed (int seed)

Sets the seed for pseudo-random positioning of grass.

Arguments

  • int seed - Number used to initialize a pseudo-random sequence. If a negative value is provided, 0 will be used instead.

void setShadowRadius (float radius)

Sets the distance to draw additional grass polygons outside the view frustum. This option allows to eliminate popping of shadows at the edges of the screen when the camera is turning.

Arguments

  • float radius - Distance in units. If a negative value is provided, 0 will be used instead.

void setSizeX (float size)

Sets the width of the grass object along the X-coordinate.

Arguments

  • float size - X-coordinate width in units. If a negative value is provided, 0 will be used instead.

void setSizeY (float size)

Sets the length of the grass object along the Y-coordinate.

Arguments

  • float size - Y-coordinate length in units. If a negative value is provided, 0 will be used instead.

void setStep (float step)

Sets the step for cells used to render grass.

Arguments

  • float step - Step for grass cells.

void setSubdivision (int subdivision)

Subdivide grass rendering cells into smaller sub-cells. It is used if a grass node is used as a distant LOD for WorldClutter or ObjectMeshClutter with smaller cells. This way, positions of randomly scattered objects will coincide with those of grass-based impostors.

Arguments

  • int subdivision - Divisor for cells. The value is clamped to a range [1;32].

void setThinning (int thinning)

Sets a flag to thin out grass with a distance (random grass polygons are not rendered across the grass Fade distance).

Arguments

  • int thinning - 1 to thin out the grass; 0 to render all grass polygons at the distance.

void setThreshold (float threshold)

Sets the threshold for density, starting from which the grass will be rendered.

Arguments

  • float threshold - Threshold value in range from 0 to 1.

void setVariation (int variation)

Sets the random horizontal flip for grass polygons.

Arguments

  • int variation - Positive number to enable grass flipping, 0 to disable it.
Last update: 2017-07-03
Build: ()