pub struct AnnotationManager {
pub m_CurrentPreset_m_AnnotationList: Vec<Annotation>,
pub m_RecentlyChanged: Vec<Annotation>,
pub m_FadeGizmoSize: Option<f32>,
pub m_FadeGizmos: Option<bool>,
pub m_IconSize: Option<f32>,
pub m_ShowGrid: Option<bool>,
pub m_ShowSelectionOutline: Option<bool>,
pub m_ShowSelectionWire: Option<bool>,
pub m_Use3dGizmos: Option<bool>,
pub m_WorldIconSize: Option<f32>,
}Expand description
AnnotationManager is a class of the Unity engine since version 3.4.0.
Fields§
§m_CurrentPreset_m_AnnotationList: Vec<Annotation>§m_RecentlyChanged: Vec<Annotation>§m_FadeGizmoSize: Option<f32>f32: (2021.1.0b1 - 2022.3.2f1)
m_FadeGizmos: Option<bool>bool: (2021.1.0b1 - 2022.3.2f1)
m_IconSize: Option<f32>f32: (3.4.0 - 3.4.2)
m_ShowGrid: Option<bool>bool: (4.3.0 - 2022.3.2f1)
m_ShowSelectionOutline: Option<bool>bool: (5.5.0f3 - 2022.3.2f1)
m_ShowSelectionWire: Option<bool>bool: (5.5.0f3 - 2022.3.2f1)
m_Use3dGizmos: Option<bool>bool: (3.5.0 - 2022.3.2f1)
m_WorldIconSize: Option<f32>f32: (3.5.0 - 2022.3.2f1)
Trait Implementations§
Source§impl Debug for AnnotationManager
impl Debug for AnnotationManager
Source§impl<'de> Deserialize<'de> for AnnotationManager
impl<'de> Deserialize<'de> for AnnotationManager
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AnnotationManager
impl RefUnwindSafe for AnnotationManager
impl Send for AnnotationManager
impl Sync for AnnotationManager
impl Unpin for AnnotationManager
impl UnwindSafe for AnnotationManager
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more