PointVisualizer.RenderingPriority Property
Get or sets how the visualization is prioritized.
Syntax
public AttributeVariable< RenderingPriority > RenderingPriority { get; set; }
Property Value
Default: Default
A value that specifies how the visualization is prioritized.
Remarks
The rendering priority can be Default or High; see RenderingPriority.
Example
// Set the rendering priority to high
public static void SetHighRenderingPriority(PointVisualizer pointVisualizer)
{
// 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.
pointVisualizer.RenderingPriority = RenderingPriority.High;
}
}
Platforms
Windows, Linux, Android