pub enum MeshPrimitivePrefab {
Cube(f32),
Box(BoxPrefab),
Sphere(SpherePrefab),
Quad(QuadPrefab),
Capsule(CapsulePrefab),
Circle(CirclePrefab),
Cylinder(CylinderPrefab),
Icosphere(IcospherePrefab),
Plane(PlanePrefab),
RegularPolygon(RegularPolygonPrefab),
Torus(TorusPrefab),
}Expand description
Component to setup mesh of prefab
Variants§
Cube(f32)
Box(BoxPrefab)
Sphere(SpherePrefab)
Quad(QuadPrefab)
Capsule(CapsulePrefab)
Circle(CirclePrefab)
Cylinder(CylinderPrefab)
Icosphere(IcospherePrefab)
Plane(PlanePrefab)
RegularPolygon(RegularPolygonPrefab)
Torus(TorusPrefab)
Implementations§
Source§impl MeshPrimitivePrefab
impl MeshPrimitivePrefab
Sourcepub fn to_mesh(&self) -> Mesh
pub fn to_mesh(&self) -> Mesh
Convert MeshPrimitivePrefab to bevy Mesh
Trait Implementations§
Source§impl Clone for MeshPrimitivePrefab
impl Clone for MeshPrimitivePrefab
Source§fn clone(&self) -> MeshPrimitivePrefab
fn clone(&self) -> MeshPrimitivePrefab
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Component for MeshPrimitivePrefab
impl Component for MeshPrimitivePrefab
Source§type Storage = TableStorage
type Storage = TableStorage
A marker type indicating the storage type used for this component.
This must be either
TableStorage or SparseStorage.Source§impl Default for MeshPrimitivePrefab
impl Default for MeshPrimitivePrefab
Source§fn default() -> MeshPrimitivePrefab
fn default() -> MeshPrimitivePrefab
Returns the “default value” for a type. Read more
Source§impl Enum for MeshPrimitivePrefabwhere
f32: FromReflect + TypePath,
BoxPrefab: FromReflect + TypePath,
SpherePrefab: FromReflect + TypePath,
QuadPrefab: FromReflect + TypePath,
CapsulePrefab: FromReflect + TypePath,
CirclePrefab: FromReflect + TypePath,
CylinderPrefab: FromReflect + TypePath,
IcospherePrefab: FromReflect + TypePath,
PlanePrefab: FromReflect + TypePath,
RegularPolygonPrefab: FromReflect + TypePath,
TorusPrefab: FromReflect + TypePath,
impl Enum for MeshPrimitivePrefabwhere
f32: FromReflect + TypePath,
BoxPrefab: FromReflect + TypePath,
SpherePrefab: FromReflect + TypePath,
QuadPrefab: FromReflect + TypePath,
CapsulePrefab: FromReflect + TypePath,
CirclePrefab: FromReflect + TypePath,
CylinderPrefab: FromReflect + TypePath,
IcospherePrefab: FromReflect + TypePath,
PlanePrefab: FromReflect + TypePath,
RegularPolygonPrefab: FromReflect + TypePath,
TorusPrefab: FromReflect + TypePath,
Source§fn field(&self, __name_param: &str) -> Option<&(dyn Reflect + 'static)>
fn field(&self, __name_param: &str) -> Option<&(dyn Reflect + 'static)>
Returns a reference to the value of the field (in the current variant) with the given name. Read more
Source§fn field_at(&self, __index_param: usize) -> Option<&(dyn Reflect + 'static)>
fn field_at(&self, __index_param: usize) -> Option<&(dyn Reflect + 'static)>
Returns a reference to the value of the field (in the current variant) at the given index.
Source§fn field_mut(
&mut self,
__name_param: &str,
) -> Option<&mut (dyn Reflect + 'static)>
fn field_mut( &mut self, __name_param: &str, ) -> Option<&mut (dyn Reflect + 'static)>
Returns a mutable reference to the value of the field (in the current variant) with the given name. Read more
Source§fn field_at_mut(
&mut self,
__index_param: usize,
) -> Option<&mut (dyn Reflect + 'static)>
fn field_at_mut( &mut self, __index_param: usize, ) -> Option<&mut (dyn Reflect + 'static)>
Returns a mutable reference to the value of the field (in the current variant) at the given index.
Source§fn index_of(&self, __name_param: &str) -> Option<usize>
fn index_of(&self, __name_param: &str) -> Option<usize>
Returns the index of the field (in the current variant) with the given name. Read more
Source§fn name_at(&self, __index_param: usize) -> Option<&str>
fn name_at(&self, __index_param: usize) -> Option<&str>
Returns the name of the field (in the current variant) with the given index. Read more
Source§fn iter_fields(&self) -> VariantFieldIter<'_> ⓘ
fn iter_fields(&self) -> VariantFieldIter<'_> ⓘ
Returns an iterator over the values of the current variant’s fields.
Source§fn variant_name(&self) -> &str
fn variant_name(&self) -> &str
The name of the current variant.
Source§fn variant_index(&self) -> usize
fn variant_index(&self) -> usize
The index of the current variant.
Source§fn variant_type(&self) -> VariantType
fn variant_type(&self) -> VariantType
The type of the current variant.
fn clone_dynamic(&self) -> DynamicEnum
Source§fn is_variant(&self, variant_type: VariantType) -> bool
fn is_variant(&self, variant_type: VariantType) -> bool
Returns true if the current variant’s type matches the given one.
Source§fn variant_path(&self) -> String
fn variant_path(&self) -> String
Returns the full path to the current variant.
Source§impl FromReflect for MeshPrimitivePrefabwhere
f32: FromReflect + TypePath,
BoxPrefab: FromReflect + TypePath,
SpherePrefab: FromReflect + TypePath,
QuadPrefab: FromReflect + TypePath,
CapsulePrefab: FromReflect + TypePath,
CirclePrefab: FromReflect + TypePath,
CylinderPrefab: FromReflect + TypePath,
IcospherePrefab: FromReflect + TypePath,
PlanePrefab: FromReflect + TypePath,
RegularPolygonPrefab: FromReflect + TypePath,
TorusPrefab: FromReflect + TypePath,
impl FromReflect for MeshPrimitivePrefabwhere
f32: FromReflect + TypePath,
BoxPrefab: FromReflect + TypePath,
SpherePrefab: FromReflect + TypePath,
QuadPrefab: FromReflect + TypePath,
CapsulePrefab: FromReflect + TypePath,
CirclePrefab: FromReflect + TypePath,
CylinderPrefab: FromReflect + TypePath,
IcospherePrefab: FromReflect + TypePath,
PlanePrefab: FromReflect + TypePath,
RegularPolygonPrefab: FromReflect + TypePath,
TorusPrefab: FromReflect + TypePath,
Source§fn from_reflect(
__param0: &(dyn Reflect + 'static),
) -> Option<MeshPrimitivePrefab>
fn from_reflect( __param0: &(dyn Reflect + 'static), ) -> Option<MeshPrimitivePrefab>
Constructs a concrete instance of
Self from a reflected value.Source§fn take_from_reflect(
reflect: Box<dyn Reflect>,
) -> Result<Self, Box<dyn Reflect>>
fn take_from_reflect( reflect: Box<dyn Reflect>, ) -> Result<Self, Box<dyn Reflect>>
Attempts to downcast the given value to
Self using,
constructing the value using from_reflect if that fails. Read moreSource§impl GetTypeRegistration for MeshPrimitivePrefabwhere
f32: FromReflect + TypePath,
BoxPrefab: FromReflect + TypePath,
SpherePrefab: FromReflect + TypePath,
QuadPrefab: FromReflect + TypePath,
CapsulePrefab: FromReflect + TypePath,
CirclePrefab: FromReflect + TypePath,
CylinderPrefab: FromReflect + TypePath,
IcospherePrefab: FromReflect + TypePath,
PlanePrefab: FromReflect + TypePath,
RegularPolygonPrefab: FromReflect + TypePath,
TorusPrefab: FromReflect + TypePath,
impl GetTypeRegistration for MeshPrimitivePrefabwhere
f32: FromReflect + TypePath,
BoxPrefab: FromReflect + TypePath,
SpherePrefab: FromReflect + TypePath,
QuadPrefab: FromReflect + TypePath,
CapsulePrefab: FromReflect + TypePath,
CirclePrefab: FromReflect + TypePath,
CylinderPrefab: FromReflect + TypePath,
IcospherePrefab: FromReflect + TypePath,
PlanePrefab: FromReflect + TypePath,
RegularPolygonPrefab: FromReflect + TypePath,
TorusPrefab: FromReflect + TypePath,
Source§impl Reflect for MeshPrimitivePrefabwhere
f32: FromReflect + TypePath,
BoxPrefab: FromReflect + TypePath,
SpherePrefab: FromReflect + TypePath,
QuadPrefab: FromReflect + TypePath,
CapsulePrefab: FromReflect + TypePath,
CirclePrefab: FromReflect + TypePath,
CylinderPrefab: FromReflect + TypePath,
IcospherePrefab: FromReflect + TypePath,
PlanePrefab: FromReflect + TypePath,
RegularPolygonPrefab: FromReflect + TypePath,
TorusPrefab: FromReflect + TypePath,
impl Reflect for MeshPrimitivePrefabwhere
f32: FromReflect + TypePath,
BoxPrefab: FromReflect + TypePath,
SpherePrefab: FromReflect + TypePath,
QuadPrefab: FromReflect + TypePath,
CapsulePrefab: FromReflect + TypePath,
CirclePrefab: FromReflect + TypePath,
CylinderPrefab: FromReflect + TypePath,
IcospherePrefab: FromReflect + TypePath,
PlanePrefab: FromReflect + TypePath,
RegularPolygonPrefab: FromReflect + TypePath,
TorusPrefab: FromReflect + TypePath,
Source§fn get_represented_type_info(&self) -> Option<&'static TypeInfo>
fn get_represented_type_info(&self) -> Option<&'static TypeInfo>
Source§fn into_any(self: Box<MeshPrimitivePrefab>) -> Box<dyn Any>
fn into_any(self: Box<MeshPrimitivePrefab>) -> Box<dyn Any>
Returns the value as a
Box<dyn Any>.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Returns the value as a
&mut dyn Any.Source§fn into_reflect(self: Box<MeshPrimitivePrefab>) -> Box<dyn Reflect>
fn into_reflect(self: Box<MeshPrimitivePrefab>) -> Box<dyn Reflect>
Casts this type to a boxed reflected value.
Source§fn as_reflect(&self) -> &(dyn Reflect + 'static)
fn as_reflect(&self) -> &(dyn Reflect + 'static)
Casts this type to a reflected value.
Source§fn as_reflect_mut(&mut self) -> &mut (dyn Reflect + 'static)
fn as_reflect_mut(&mut self) -> &mut (dyn Reflect + 'static)
Casts this type to a mutable reflected value.
Source§fn clone_value(&self) -> Box<dyn Reflect>
fn clone_value(&self) -> Box<dyn Reflect>
Clones the value as a
Reflect trait object. Read moreSource§fn set(
&mut self,
__value_param: Box<dyn Reflect>,
) -> Result<(), Box<dyn Reflect>>
fn set( &mut self, __value_param: Box<dyn Reflect>, ) -> Result<(), Box<dyn Reflect>>
Performs a type-checked assignment of a reflected value to this value. Read more
Source§fn apply(&mut self, __value_param: &(dyn Reflect + 'static))
fn apply(&mut self, __value_param: &(dyn Reflect + 'static))
Applies a reflected value to this value. Read more
Source§fn reflect_ref(&self) -> ReflectRef<'_>
fn reflect_ref(&self) -> ReflectRef<'_>
Returns an enumeration of “kinds” of type. Read more
Source§fn reflect_mut(&mut self) -> ReflectMut<'_>
fn reflect_mut(&mut self) -> ReflectMut<'_>
Returns a mutable enumeration of “kinds” of type. Read more
Source§fn reflect_owned(self: Box<MeshPrimitivePrefab>) -> ReflectOwned
fn reflect_owned(self: Box<MeshPrimitivePrefab>) -> ReflectOwned
Returns an owned enumeration of “kinds” of type. Read more
Source§fn reflect_hash(&self) -> Option<u64>
fn reflect_hash(&self) -> Option<u64>
Returns a hash of the value (which includes the type). Read more
Source§fn reflect_partial_eq(&self, value: &(dyn Reflect + 'static)) -> Option<bool>
fn reflect_partial_eq(&self, value: &(dyn Reflect + 'static)) -> Option<bool>
Returns a “partial equality” comparison result. Read more
Source§fn type_name(&self) -> &str
fn type_name(&self) -> &str
👎Deprecated since 0.12.0: view the method documentation to find alternatives to this method.
Returns the type path of the underlying type. Read more
Source§fn debug(&self, f: &mut Formatter<'_>) -> Result<(), Error>
fn debug(&self, f: &mut Formatter<'_>) -> Result<(), Error>
Debug formatter for the value. Read more
Source§fn serializable(&self) -> Option<Serializable<'_>>
fn serializable(&self) -> Option<Serializable<'_>>
Returns a serializable version of the value. Read more
Source§fn is_dynamic(&self) -> bool
fn is_dynamic(&self) -> bool
Indicates whether or not this type is a dynamic type. Read more
Source§impl TypePath for MeshPrimitivePrefabwhere
f32: FromReflect + TypePath,
BoxPrefab: FromReflect + TypePath,
SpherePrefab: FromReflect + TypePath,
QuadPrefab: FromReflect + TypePath,
CapsulePrefab: FromReflect + TypePath,
CirclePrefab: FromReflect + TypePath,
CylinderPrefab: FromReflect + TypePath,
IcospherePrefab: FromReflect + TypePath,
PlanePrefab: FromReflect + TypePath,
RegularPolygonPrefab: FromReflect + TypePath,
TorusPrefab: FromReflect + TypePath,
impl TypePath for MeshPrimitivePrefabwhere
f32: FromReflect + TypePath,
BoxPrefab: FromReflect + TypePath,
SpherePrefab: FromReflect + TypePath,
QuadPrefab: FromReflect + TypePath,
CapsulePrefab: FromReflect + TypePath,
CirclePrefab: FromReflect + TypePath,
CylinderPrefab: FromReflect + TypePath,
IcospherePrefab: FromReflect + TypePath,
PlanePrefab: FromReflect + TypePath,
RegularPolygonPrefab: FromReflect + TypePath,
TorusPrefab: FromReflect + TypePath,
Source§fn type_path() -> &'static str
fn type_path() -> &'static str
Returns the fully qualified path of the underlying type. Read more
Source§fn short_type_path() -> &'static str
fn short_type_path() -> &'static str
Returns a short, pretty-print enabled path to the type. Read more
Source§fn type_ident() -> Option<&'static str>
fn type_ident() -> Option<&'static str>
Source§fn crate_name() -> Option<&'static str>
fn crate_name() -> Option<&'static str>
Source§impl Typed for MeshPrimitivePrefabwhere
f32: FromReflect + TypePath,
BoxPrefab: FromReflect + TypePath,
SpherePrefab: FromReflect + TypePath,
QuadPrefab: FromReflect + TypePath,
CapsulePrefab: FromReflect + TypePath,
CirclePrefab: FromReflect + TypePath,
CylinderPrefab: FromReflect + TypePath,
IcospherePrefab: FromReflect + TypePath,
PlanePrefab: FromReflect + TypePath,
RegularPolygonPrefab: FromReflect + TypePath,
TorusPrefab: FromReflect + TypePath,
impl Typed for MeshPrimitivePrefabwhere
f32: FromReflect + TypePath,
BoxPrefab: FromReflect + TypePath,
SpherePrefab: FromReflect + TypePath,
QuadPrefab: FromReflect + TypePath,
CapsulePrefab: FromReflect + TypePath,
CirclePrefab: FromReflect + TypePath,
CylinderPrefab: FromReflect + TypePath,
IcospherePrefab: FromReflect + TypePath,
PlanePrefab: FromReflect + TypePath,
RegularPolygonPrefab: FromReflect + TypePath,
TorusPrefab: FromReflect + TypePath,
Auto Trait Implementations§
impl Freeze for MeshPrimitivePrefab
impl RefUnwindSafe for MeshPrimitivePrefab
impl Send for MeshPrimitivePrefab
impl Sync for MeshPrimitivePrefab
impl Unpin for MeshPrimitivePrefab
impl UnwindSafe for MeshPrimitivePrefab
Blanket Implementations§
Source§impl<T, U> AsBindGroupShaderType<U> for T
impl<T, U> AsBindGroupShaderType<U> for T
Source§fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
Return the
T ShaderType for self. When used in AsBindGroup
derives, it is safe to assume that all images in self exist.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
Source§impl<C> Bundle for Cwhere
C: Component,
impl<C> Bundle for Cwhere
C: Component,
fn component_ids( components: &mut Components, storages: &mut Storages, ids: &mut impl FnMut(ComponentId), )
unsafe fn from_components<T, F>(ctx: &mut T, func: &mut F) -> C
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<C> DynamicBundle for Cwhere
C: Component,
impl<C> DynamicBundle for Cwhere
C: Component,
fn get_components(self, func: &mut impl FnMut(StorageType, OwningPtr<'_>))
Source§impl<T> DynamicTypePath for Twhere
T: TypePath,
impl<T> DynamicTypePath for Twhere
T: TypePath,
Source§fn reflect_type_path(&self) -> &str
fn reflect_type_path(&self) -> &str
See
TypePath::type_path.Source§fn reflect_short_type_path(&self) -> &str
fn reflect_short_type_path(&self) -> &str
Source§fn reflect_type_ident(&self) -> Option<&str>
fn reflect_type_ident(&self) -> Option<&str>
See
TypePath::type_ident.Source§fn reflect_crate_name(&self) -> Option<&str>
fn reflect_crate_name(&self) -> Option<&str>
See
TypePath::crate_name.Source§fn reflect_module_path(&self) -> Option<&str>
fn reflect_module_path(&self) -> Option<&str>
Source§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
Source§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere
T: Default,
Source§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Creates
Self using data from the given World.Source§impl<T> GetPath for T
impl<T> GetPath for T
Source§fn reflect_path<'p>(
&self,
path: impl ReflectPath<'p>,
) -> Result<&(dyn Reflect + 'static), ReflectPathError<'p>>
fn reflect_path<'p>( &self, path: impl ReflectPath<'p>, ) -> Result<&(dyn Reflect + 'static), ReflectPathError<'p>>
Returns a reference to the value specified by
path. Read moreSource§fn reflect_path_mut<'p>(
&mut self,
path: impl ReflectPath<'p>,
) -> Result<&mut (dyn Reflect + 'static), ReflectPathError<'p>>
fn reflect_path_mut<'p>( &mut self, path: impl ReflectPath<'p>, ) -> Result<&mut (dyn Reflect + 'static), ReflectPathError<'p>>
Returns a mutable reference to the value specified by
path. Read moreSource§fn path<'p, T>(
&self,
path: impl ReflectPath<'p>,
) -> Result<&T, ReflectPathError<'p>>where
T: Reflect,
fn path<'p, T>(
&self,
path: impl ReflectPath<'p>,
) -> Result<&T, ReflectPathError<'p>>where
T: Reflect,
Returns a statically typed reference to the value specified by
path. Read moreSource§fn path_mut<'p, T>(
&mut self,
path: impl ReflectPath<'p>,
) -> Result<&mut T, ReflectPathError<'p>>where
T: Reflect,
fn path_mut<'p, T>(
&mut self,
path: impl ReflectPath<'p>,
) -> Result<&mut T, ReflectPathError<'p>>where
T: Reflect,
Returns a statically typed mutable reference to the value specified by
path. Read moreSource§impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
impl<T, W> HasTypeWitness<W> for Twhere
W: MakeTypeWitness<Arg = T>,
T: ?Sized,
Source§impl<T> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.