[][src]Enum kludgine::scene::SceneTarget

pub enum SceneTarget {
    Scene(Scene),
    Camera {
        origin: Point<f32, Scaled>,
        zoom: f32,
        scene: Scene,
    },
}

Variants

Scene(Scene)
Camera

Fields of Camera

origin: Point<f32, Scaled>zoom: f32scene: Scene

Implementations

impl SceneTarget[src]

pub async fn size<'_>(&'_ self) -> Size<f32, Scaled>[src]

pub async fn effective_scale_factor<'_>(&'_ self) -> ScreenScale[src]

pub fn scene_handle(&self) -> Scene[src]

pub fn set_camera(&self, zoom: f32, look_at: Point<f32, Scaled>) -> SceneTarget[src]

pub fn set_zoom(&self, zoom: f32) -> SceneTarget[src]

pub async fn lookup_font<'_, '_>(
    &'_ self,
    family: &'_ str,
    weight: Weight,
    style: FontStyle
) -> KludgineResult<Font>
[src]

pub async fn theme<'_>(&'_ self) -> Arc<Box<dyn Theme>>[src]

pub fn origin(&self) -> Point<f32, Scaled>[src]

pub fn zoom(&self) -> f32[src]

pub async fn elapsed<'_>(&'_ self) -> Option<Duration>[src]

pub async fn pressed_keys<'_>(&'_ self) -> HashSet<VirtualKeyCode>[src]

pub async fn key_pressed<'_>(&'_ self, key: VirtualKeyCode) -> bool[src]

pub async fn register_font<'_, '_>(&'_ mut self, font: &'_ Font)[src]

Trait Implementations

impl Clone for SceneTarget[src]

Auto Trait Implementations

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Component for T where
    T: 'static + Send + Sync
[src]

type Storage = PackedStorage<T>

The storage type required to hold all instances of this component in a world.

impl<T, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Resource for T where
    T: 'static, 
[src]

impl<T> SetParameter for T

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,