bool GeneratesEntityModelGeometry { get; set; }

book_4_sparkGenerated
code_blocksInput

Description

The GeneratesEntityModelGeometry property indicates whether this MapNode generates models for use within the map. This boolean property is useful for determining if the node contributes to the visual geometry of the map by generating entity models.

Usage

To check if a MapNode generates entity model geometry, access the GeneratesEntityModelGeometry property. This property returns a bool value, where true indicates that the node generates models, and false indicates that it does not.

Example

// Example of accessing the GeneratesEntityModelGeometry property
MapNode node = new MapNode();

// Check if the node generates entity model geometry
bool doesGenerate = node.GeneratesEntityModelGeometry;

if (doesGenerate)
{
    // Perform actions knowing the node generates models
    // For example, log or process the node further
}