pub trait IAkDiffractionPathInfoMethods: IAkDiffractionPathInfo {
Show 20 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 set_virtual_pos(self, value: impl Into<AkTransform>) { ... }
fn get_virtual_pos(self) -> AkTransform { ... }
fn set_node_count(self, value: impl Into<u32>) { ... }
fn get_node_count(self) -> u32 { ... }
fn set_diffraction(self, value: impl Into<f32>) { ... }
fn get_diffraction(self) -> f32 { ... }
fn set_tot_length(self, value: impl Into<f32>) { ... }
fn get_tot_length(self) -> f32 { ... }
fn set_obstruction_value(self, value: impl Into<f32>) { ... }
fn get_obstruction_value(self) -> f32 { ... }
fn get_nodes(self, idx: impl Into<u32>) -> Vector3 { ... }
fn get_angles(self, idx: impl Into<u32>) -> f32 { ... }
fn get_portals(self, idx: impl Into<u32>) -> u64 { ... }
fn get_rooms(self, idx: impl Into<u32>) -> u64 { ... }
fn clone(self, other: impl Into<AkDiffractionPathInfo>) { ... }
fn ctor_2(self) { ... }
}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 set_virtual_pos(self, value: impl Into<AkTransform>)
fn set_virtual_pos(self, value: impl Into<AkTransform>)
set_virtualPos(crate::root::aktransform::AkTransform) overload
Sourcefn get_virtual_pos(self) -> AkTransform
fn get_virtual_pos(self) -> AkTransform
get_virtualPos() overload
Sourcefn set_node_count(self, value: impl Into<u32>)
fn set_node_count(self, value: impl Into<u32>)
set_nodeCount(u32) overload
Sourcefn get_node_count(self) -> u32
fn get_node_count(self) -> u32
get_nodeCount() overload
Sourcefn set_diffraction(self, value: impl Into<f32>)
fn set_diffraction(self, value: impl Into<f32>)
set_diffraction(f32) overload
Sourcefn get_diffraction(self) -> f32
fn get_diffraction(self) -> f32
get_diffraction() overload
Sourcefn set_tot_length(self, value: impl Into<f32>)
fn set_tot_length(self, value: impl Into<f32>)
set_totLength(f32) overload
Sourcefn get_tot_length(self) -> f32
fn get_tot_length(self) -> f32
get_totLength() overload
Sourcefn set_obstruction_value(self, value: impl Into<f32>)
fn set_obstruction_value(self, value: impl Into<f32>)
set_obstructionValue(f32) overload
Sourcefn get_obstruction_value(self) -> f32
fn get_obstruction_value(self) -> f32
get_obstructionValue() overload
Sourcefn get_angles(self, idx: impl Into<u32>) -> f32
fn get_angles(self, idx: impl Into<u32>) -> f32
GetAngles(u32) overload
Sourcefn get_portals(self, idx: impl Into<u32>) -> u64
fn get_portals(self, idx: impl Into<u32>) -> u64
GetPortals(u32) overload
Sourcefn clone(self, other: impl Into<AkDiffractionPathInfo>)
fn clone(self, other: impl Into<AkDiffractionPathInfo>)
Clone(crate::root::akdiffractionpathinfo::AkDiffractionPathInfo) 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: IAkDiffractionPathInfo> IAkDiffractionPathInfoMethods for __T
Available on crate feature
root-akdiffractionpathinfo only.