← Back to carmenta.com
Carmenta Engine SDK Documentation
×

LineVisualizer.RenderingPriority Property

Get or sets how the visualization is prioritized.

Thread safety: This property is not thread-safe. Show

Syntax

C#
public AttributeVariable< RenderingPriority > RenderingPriority { get; set; }

Property Value

Type: An attribute variable that returns a value of type RenderingPriority.
Default: Default
A value that specifies how the visualization is prioritized.

Remarks

The rendering priority can be Default or High; see RenderingPriority.

Example

C#
// Set the rendering priority to high
public static void SetHighRenderingPriority(LineVisualizer lineVisualizer)
{
    // This property is a member of a type that might be referred to by a View 
    // or a GlobeView, either directly or indirectly through other objects, which means 
    // that you must use the Guard class to take the global configuration lock when it 
    // is modified to synchronize access with any running Carmenta Engine threads.
    using (Guard guard = new Guard())
    {
        // Visualization generated with rendering priority High will be drawn in front of 
        // visualization with rendering priority Default.
        // Regardless of whether it is blocked by other visualization or not.
        // This is currently only supported in 3D views.
        lineVisualizer.RenderingPriority = RenderingPriority.High;
    }
}

Platforms

Windows, Linux, Android

By accessing the information on this site you accept our terms and conditions and privacy policy.
This site uses cookies to enhance your experience and provide additional functionality.

Accept