pub trait PrototypeApp {
    // Required methods
    fn clear_color(self, value: Rgba) -> Self;
    fn sprite_filtering(self, value: ImageFiltering) -> Self;
    fn view_size(self, value: Scalar) -> Self;
    fn preload_asset(self, path: impl ToString) -> Self;
    fn input_mappings(self, mappings: InputMappings) -> Self;
    fn nodes(self, nodes: ScriptedNodes) -> Self;
    fn scripting_registry(self, registry: Registry) -> Self;
    fn run(self);
}

Required Methods§

source

fn clear_color(self, value: Rgba) -> Self

source

fn sprite_filtering(self, value: ImageFiltering) -> Self

source

fn view_size(self, value: Scalar) -> Self

source

fn preload_asset(self, path: impl ToString) -> Self

source

fn input_mappings(self, mappings: InputMappings) -> Self

source

fn nodes(self, nodes: ScriptedNodes) -> Self

source

fn scripting_registry(self, registry: Registry) -> Self

source

fn run(self)

Implementors§