Enum bevy_pixel_camera::PixelZoom
source · pub enum PixelZoom {
Fixed(i32),
FitSize {
width: i32,
height: i32,
},
FitWidth(i32),
FitHeight(i32),
}Expand description
Configure a Camera2dBundle to use integer scaling and automatically match
a specified resolution.
Note: when this component is present, a plugin system will automatically
update the ScalingMode of the camera bundle.
Variants§
Fixed(i32)
Manually specify the camera zoom, i.e. the number of screen pixels (logical pixels) used to display one virtual pixel (world unit).
FitSize
Automatically set the camera zoom to fit the specified resolution inside the window.
FitWidth(i32)
Automatically set the camera zoom to fit the specified width inside the window.
FitHeight(i32)
Automatically set the camera zoom to fit the specified height inside the window.
Trait Implementations§
source§impl PartialEq for PixelZoom
impl PartialEq for PixelZoom
impl StructuralPartialEq for PixelZoom
Auto Trait Implementations§
impl RefUnwindSafe for PixelZoom
impl Send for PixelZoom
impl Sync for PixelZoom
impl Unpin for PixelZoom
impl UnwindSafe for PixelZoom
Blanket Implementations§
§impl<T, U> AsBindGroupShaderType<U> for T
impl<T, U> AsBindGroupShaderType<U> for T
§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
§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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§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.§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.§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.§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.