Skip to main content

IHubEnvSubMethods

Trait IHubEnvSubMethods 

Source
pub trait IHubEnvSubMethods: IHubEnvSub {
    // Provided methods
    fn get_morning(self) -> GameObject { ... }
    fn get_day(self) -> GameObject { ... }
    fn get_evening(self) -> GameObject { ... }
    fn get_night(self) -> GameObject { ... }
    fn push_params(self, timezone_type: impl Into<HubUtil_TimezoneType>) { ... }
    fn pop_params(self) { ... }
    fn apply_fog(self) { ... }
    fn support_fog_stack(self) -> bool { ... }
    fn set_post_process_active(
        self,
        obj: impl Into<GameObject>,
        value: impl Into<bool>,
    ) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_morning(self) -> GameObject

get_Morning() overload

Source

fn get_day(self) -> GameObject

get_Day() overload

Source

fn get_evening(self) -> GameObject

get_Evening() overload

Source

fn get_night(self) -> GameObject

get_Night() overload

Source

fn push_params(self, timezone_type: impl Into<HubUtil_TimezoneType>)

PushParams(crate::app::hubutil::HubUtil_TimezoneType) overload

Source

fn pop_params(self)

PopParams() overload

Source

fn apply_fog(self)

ApplyFog() overload

Source

fn support_fog_stack(self) -> bool

SupportFogStack() overload

Source

fn set_post_process_active( self, obj: impl Into<GameObject>, value: impl Into<bool>, )

SetPostProcessActive(crate::unity_engine::gameobject::GameObject, bool) overload

Source

fn ctor(self)

.ctor() overload

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<__T: IHubEnvSub> IHubEnvSubMethods for __T

Available on crate feature app-hubenvsub only.