pub struct MeshGroupData {
pub mesh: Option<Mesh>,
pub dynamic_deformation: bool,
pub translate_children: bool,
}Expand description
Mesh group data (enables dynamic deformation).
Fields§
§mesh: Option<Mesh>Group geometry (can be deformed by parameters).
dynamic_deformation: boolIf true, the mesh can be dynamically deformed.
translate_children: boolIf true, transforms child nodes along with the mesh.
Trait Implementations§
Source§impl Clone for MeshGroupData
impl Clone for MeshGroupData
Source§fn clone(&self) -> MeshGroupData
fn clone(&self) -> MeshGroupData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MeshGroupData
impl Debug for MeshGroupData
Source§impl Default for MeshGroupData
impl Default for MeshGroupData
Source§fn default() -> MeshGroupData
fn default() -> MeshGroupData
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MeshGroupData
impl RefUnwindSafe for MeshGroupData
impl Send for MeshGroupData
impl Sync for MeshGroupData
impl Unpin for MeshGroupData
impl UnsafeUnpin for MeshGroupData
impl UnwindSafe for MeshGroupData
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