bool GeneratesEntityModelGeometry { get; set; }

robot_2Generated
code_blocksInput

Description

The GeneratesEntityModelGeometry property indicates whether the current MapNode instance is responsible for generating models that can be used within the map. This boolean property is useful for determining if a particular node contributes to the visual geometry of the map by generating entity models.

Usage

To use the GeneratesEntityModelGeometry property, simply access it from an instance of MapNode. This property is read-only and returns a bool value.

Example

// Example of accessing the GeneratesEntityModelGeometry property
MapNode mapNode = new MapNode();
bool doesGenerateModels = mapNode.GeneratesEntityModelGeometry;

if (doesGenerateModels)
{
    // Perform actions knowing this node generates entity model geometry
}