pub trait IPostProcessManager: ISingletonMonoBehaviour_1<PostProcessManager> {
// Provided methods
fn m_root(self) -> Volume { ... }
fn set_m_root(self, value: Volume) { ... }
fn m_bmap(self) -> Volume { ... }
fn set_m_bmap(self, value: Volume) { ... }
fn m_combat(self) -> Volume { ... }
fn set_m_combat(self, value: Volume) { ... }
fn bmap_combat_change_time(self) -> f32 { ... }
fn set_bmap_combat_change_time(self, value: f32) { ... }
fn curve_interpolate(self) -> AnimationCurve { ... }
fn set_curve_interpolate(self, value: AnimationCurve) { ... }
fn curve_blur(self) -> AnimationCurve { ... }
fn set_curve_blur(self, value: AnimationCurve) { ... }
}Provided Methods§
fn m_root(self) -> Volume
fn set_m_root(self, value: Volume)
fn m_bmap(self) -> Volume
fn set_m_bmap(self, value: Volume)
fn m_combat(self) -> Volume
fn set_m_combat(self, value: Volume)
fn bmap_combat_change_time(self) -> f32
fn set_bmap_combat_change_time(self, value: f32)
fn curve_interpolate(self) -> AnimationCurve
fn set_curve_interpolate(self, value: AnimationCurve)
fn curve_blur(self) -> AnimationCurve
fn set_curve_blur(self, value: AnimationCurve)
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.