Description
The MultisampleScreen
field is a member of the MultisampleAmount
enumeration within the Sandbox namespace. This field represents a specific multisampling option that is used to determine the level of multisampling applied to screen rendering. Multisampling is a technique used to improve image quality by reducing aliasing effects.
The MultisampleScreen
field is marked with the HideAttribute
, indicating that it may not be intended for direct use in typical application code or may be hidden from certain tools or editors.
Usage
To use the MultisampleScreen
field, you typically select it as part of a configuration or setting related to rendering quality. However, due to the HideAttribute
, it may not be directly accessible or visible in some contexts. Consider using other fields in the MultisampleAmount
enumeration, such as Multisample2x
, Multisample4x
, etc., for more common use cases.
Example
// Example of setting a multisample amount for rendering
MultisampleAmount sampleAmount = MultisampleAmount.Multisample4x;
// Note: MultisampleScreen is hidden and may not be directly accessible
// MultisampleAmount sampleAmount = MultisampleAmount.MultisampleScreen; // This may not be recommended or possible due to HideAttribute