This page has been translated automatically.
Programming
Fundamentals
Setting Up Development Environment
UnigineScript
High-Level Systems
C++
C#
UUSL (Unified UNIGINE Shader Language)
File Formats
Rebuilding the Engine and Tools
GUI
Double Precision Coordinates
API
Containers
Common Functionality
Controls-Related Classes
Engine-Related Classes
Filesystem Functionality
GUI-Related Classes
Math Functionality
Node-Related Classes
Networking Functionality
Pathfinding-Related Classes
Physics-Related Classes
Plugins-Related Classes
Rendering-Related Classes
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

Inherits:Object

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

Members


static ObjectGrass()

Constructor. Creates a new grass object.

ObjectGrass cast(Object base)

Casts an ObjectGrass out of the Object instance.

Arguments

  • Object base - Object instance.

Return value

ObjectGrass instance.

ObjectGrass cast(Node node)

Casts an ObjectGrass out of the Node instance.

Arguments

  • Node node - Node instance.

Return value

ObjectGrass instance.

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.

float getAngle()

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

Return value

Slope angle cosine.

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.

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.

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.

float getDensity()

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

Return value

Density factor.

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.

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.

void setIntersection(int intersection)

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

Arguments

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

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.

void setMaskFlipX(int maskflipx)

Flip the mask by X axis.

Arguments

  • int maskflipx - Positive value to flip the mask; 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.

void setMaskFlipY(int maskflipy)

Flip the mask by Y axis.

Arguments

  • int maskflipy - Positive value to flip the mask; 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.

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.

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.

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.

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.

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.

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.

void setMaskMaxValue(int value)

Sets the maximum value of the mask application range.

Arguments

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

int getMaskMaxValue()

Returns the maximum value of the mask application range.

Return value

Maximum mask value.

int setMaskMesh(Mesh mesh)

Sets a mesh to be used as a mask on-the-fly. Limitations:
  • Before the method is called, another mesh must be set via setMaskMeshName() first.
  • If the world is reloaded, the mesh set via setMaskMeshName() will be loaded.
  • If the memory limit is exceeded, the new mesh might be reloaded with the mesh set via setMaskMeshName().

Arguments

  • Mesh mesh - Mesh instance.

Return value

1 if the mesh is set successfully; otherwise - 0.

int getMaskMesh(Mesh mesh)

Returns a value indicating if the mesh mask exists.

Arguments

  • Mesh mesh - Mesh instance.

Return value

1 if mesh mask exists; otherwise - 0.

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.

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.

void setMaskMinValue(int value)

Sets the minimum value of the mask application range.

Arguments

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

int getMaskMinValue()

Returns the minimum value of the mask application range.

Return value

Minimum mask value.

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.

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.

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.

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.

void setNumTextures(int textures)

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

Arguments

  • int textures - The number of contained textures.

int getNumTextures()

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

Return value

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.

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.

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.

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.

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.

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.

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.

int getSeed()

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

Return value

Number used to initialize a pseudo-random sequence.

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.

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.

void setSizeX(float sizex)

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

Arguments

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

float getSizeX()

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

Return value

X-coordinate width in units.

void setSizeY(float sizey)

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

Arguments

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

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.

void setStep(float step)

Sets the step for cells used to render grass.

Arguments

  • float step - Step for grass cells.

float getStep()

Returns the current step for cells used to render grass.

Return value

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].

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.

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.

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.

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.

float getThreshold()

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

Return value

Threshold value.

void setVariation(int variation)

Sets the random horizontal flip for grass polygons.

Arguments

  • int variation - 1 to enable grass flipping, 0 to disable it.

int getVariation()

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

Return value

1 if grass flipping is enabled; otherwise, 0.

int type()

Last update: 2017-07-03
Build: ()