pub struct Group {
pub group_uuid: u32,
pub name: String,
pub color: [f32; 3],
}Expand description
Node group for visual organization in editor. The “folders” you see in the UI, for easier navigation.
Fields§
§group_uuid: u32Unique group UUID.
name: StringReadable group name (e.g. “Head”, “Eyes”, “Hair”).
color: [f32; 3]Normalized RGB color [0.0-1.0] for editor visualization.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Group
impl RefUnwindSafe for Group
impl Send for Group
impl Sync for Group
impl Unpin for Group
impl UnsafeUnpin for Group
impl UnwindSafe for Group
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