Skip to main content

IAkImageSourceParamsMethods

Trait IAkImageSourceParamsMethods 

Source
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§

Source

fn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)

.ctor(::unity::IntPtr, bool) overload

Source

fn set_c_ptr(self, c_ptr: impl Into<IntPtr>)

setCPtr(::unity::IntPtr) overload

Source

fn finalize(self)

Finalize() overload

Source

fn dispose(self)

Dispose() overload

Source

fn ctor_2(self)

.ctor() overload

Source

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

Source

fn set_source_position(self, value: impl Into<Vector3>)

set_sourcePosition(crate::unity_engine::vector3::Vector3) overload

Source

fn get_source_position(self) -> Vector3

get_sourcePosition() overload

Source

fn set_f_distance_scaling_factor(self, value: impl Into<f32>)

set_fDistanceScalingFactor(f32) overload

Source

fn get_f_distance_scaling_factor(self) -> f32

get_fDistanceScalingFactor() overload

Source

fn set_f_level(self, value: impl Into<f32>)

set_fLevel(f32) overload

Source

fn get_f_level(self) -> f32

get_fLevel() overload

Source

fn set_f_diffraction(self, value: impl Into<f32>)

set_fDiffraction(f32) overload

Source

fn get_f_diffraction(self) -> f32

get_fDiffraction() overload

Source

fn set_u_diffraction_emitter_side(self, value: impl Into<u8>)

set_uDiffractionEmitterSide(u8) overload

Source

fn get_u_diffraction_emitter_side(self) -> u8

get_uDiffractionEmitterSide() overload

Source

fn set_u_diffraction_listener_side(self, value: impl Into<u8>)

set_uDiffractionListenerSide(u8) overload

Source

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§

Source§

impl<__T: IAkImageSourceParams> IAkImageSourceParamsMethods for __T

Available on crate feature root-akimagesourceparams only.