pub trait IHubManualCullingMethods: IHubManualCulling {
// Provided methods
fn get_or_create_cull_group_target_list(
self,
group_num: impl Into<i32>,
) -> Array<bool> { ... }
fn awake(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_or_create_cull_group_target_list(
self,
group_num: impl Into<i32>,
) -> Array<bool>
fn get_or_create_cull_group_target_list( self, group_num: impl Into<i32>, ) -> Array<bool>
GetOrCreateCullGroupTargetList(i32) 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§
impl<__T: IHubManualCulling> IHubManualCullingMethods for __T
Available on crate feature
app-hubmanualculling only.