pub trait IAkImageSourceParamsMethods: IAkImageSourceParams {
Show 18 methods
// Provided methods
fn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>) { ... }
fn set_c_ptr(self, c_ptr: impl Into<IntPtr>) { ... }
fn finalize(self) { ... }
fn dispose(self) { ... }
fn ctor_2(self) { ... }
fn ctor_3(
self,
in_source_position: impl Into<Vector3>,
in_f_distance_scaling_factor: impl Into<f32>,
in_f_level: impl Into<f32>,
) { ... }
fn set_source_position(self, value: impl Into<Vector3>) { ... }
fn get_source_position(self) -> Vector3 { ... }
fn set_f_distance_scaling_factor(self, value: impl Into<f32>) { ... }
fn get_f_distance_scaling_factor(self) -> f32 { ... }
fn set_f_level(self, value: impl Into<f32>) { ... }
fn get_f_level(self) -> f32 { ... }
fn set_f_diffraction(self, value: impl Into<f32>) { ... }
fn get_f_diffraction(self) -> f32 { ... }
fn set_u_diffraction_emitter_side(self, value: impl Into<u8>) { ... }
fn get_u_diffraction_emitter_side(self) -> u8 { ... }
fn set_u_diffraction_listener_side(self, value: impl Into<u8>) { ... }
fn get_u_diffraction_listener_side(self) -> u8 { ... }
}Provided Methods§
Sourcefn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)
fn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)
.ctor(::unity::IntPtr, bool) overload
Sourcefn ctor_3(
self,
in_source_position: impl Into<Vector3>,
in_f_distance_scaling_factor: impl Into<f32>,
in_f_level: impl Into<f32>,
)
fn ctor_3( self, in_source_position: impl Into<Vector3>, in_f_distance_scaling_factor: impl Into<f32>, in_f_level: impl Into<f32>, )
.ctor(crate::unity_engine::vector3::Vector3, f32, f32) overload
Sourcefn set_source_position(self, value: impl Into<Vector3>)
fn set_source_position(self, value: impl Into<Vector3>)
set_sourcePosition(crate::unity_engine::vector3::Vector3) overload
Sourcefn get_source_position(self) -> Vector3
fn get_source_position(self) -> Vector3
get_sourcePosition() overload
Sourcefn set_f_distance_scaling_factor(self, value: impl Into<f32>)
fn set_f_distance_scaling_factor(self, value: impl Into<f32>)
set_fDistanceScalingFactor(f32) overload
Sourcefn get_f_distance_scaling_factor(self) -> f32
fn get_f_distance_scaling_factor(self) -> f32
get_fDistanceScalingFactor() overload
Sourcefn set_f_level(self, value: impl Into<f32>)
fn set_f_level(self, value: impl Into<f32>)
set_fLevel(f32) overload
Sourcefn get_f_level(self) -> f32
fn get_f_level(self) -> f32
get_fLevel() overload
Sourcefn set_f_diffraction(self, value: impl Into<f32>)
fn set_f_diffraction(self, value: impl Into<f32>)
set_fDiffraction(f32) overload
Sourcefn get_f_diffraction(self) -> f32
fn get_f_diffraction(self) -> f32
get_fDiffraction() overload
Sourcefn set_u_diffraction_emitter_side(self, value: impl Into<u8>)
fn set_u_diffraction_emitter_side(self, value: impl Into<u8>)
set_uDiffractionEmitterSide(u8) overload
Sourcefn get_u_diffraction_emitter_side(self) -> u8
fn get_u_diffraction_emitter_side(self) -> u8
get_uDiffractionEmitterSide() overload
Sourcefn set_u_diffraction_listener_side(self, value: impl Into<u8>)
fn set_u_diffraction_listener_side(self, value: impl Into<u8>)
set_uDiffractionListenerSide(u8) overload
Sourcefn get_u_diffraction_listener_side(self) -> u8
fn get_u_diffraction_listener_side(self) -> u8
get_uDiffractionListenerSide() 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: IAkImageSourceParams> IAkImageSourceParamsMethods for __T
Available on crate feature
root-akimagesourceparams only.