Enum ark_api::world::CombineMode
source · #[non_exhaustive]
pub enum CombineMode {
Average,
Min,
Multiply,
Max,
}Expand description
How to combine a physical property of two interacting physics bodies to use in a calculation e.g. friction when sliding. Property values are between bounded (0.0..=1.0) NOTE: highest value combine mode specified on both bodies takes precedence
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Average
Use the average (mean) value of the two property values
Min
Use the smallest value of the two property values
Multiply
Use the multiplication of the two values property values
Max
Use the largest value of the two property values
Trait Implementations§
source§impl CheckedBitPattern for CombineMode
impl CheckedBitPattern for CombineMode
§type Bits = u32
type Bits = u32
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.source§fn is_valid_bit_pattern(bits: &<CombineMode as CheckedBitPattern>::Bits) -> bool
fn is_valid_bit_pattern(bits: &<CombineMode as CheckedBitPattern>::Bits) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.source§impl Clone for CombineMode
impl Clone for CombineMode
source§fn clone(&self) -> CombineMode
fn clone(&self) -> CombineMode
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for CombineMode
impl Debug for CombineMode
source§impl<'de> Deserialize<'de> for CombineMode
impl<'de> Deserialize<'de> for CombineMode
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<CombineMode, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<CombineMode, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Hash for CombineMode
impl Hash for CombineMode
source§impl PartialEq<CombineMode> for CombineMode
impl PartialEq<CombineMode> for CombineMode
source§fn eq(&self, other: &CombineMode) -> bool
fn eq(&self, other: &CombineMode) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl<'a_, C_> Readable<'a_, C_> for CombineModewhere
C_: Context,
impl<'a_, C_> Readable<'a_, C_> for CombineModewhere C_: Context,
fn read_from<R_>( _reader_: &mut R_ ) -> Result<CombineMode, <C_ as Context>::Error>where R_: Reader<'a_, C_>,
fn minimum_bytes_needed() -> usize
fn read_from_buffer_with_ctx( context: C, buffer: &'a [u8] ) -> Result<Self, <C as Context>::Error>
fn read_with_length_from_buffer_with_ctx( context: C, buffer: &'a [u8] ) -> (Result<Self, <C as Context>::Error>, usize)
fn read_from_buffer_copying_data_with_ctx( context: C, buffer: &[u8] ) -> Result<Self, <C as Context>::Error>
fn read_with_length_from_buffer_copying_data_with_ctx( context: C, buffer: &[u8] ) -> (Result<Self, <C as Context>::Error>, usize)
fn read_with_length_from_buffer_copying_data_with_ctx_mut( context: &mut C, buffer: &[u8] ) -> (Result<Self, <C as Context>::Error>, usize)
fn read_from_stream_unbuffered_with_ctx<S>( context: C, stream: S ) -> Result<Self, <C as Context>::Error>where S: Read,
fn read_from_stream_buffered_with_ctx<S>( context: C, stream: S ) -> Result<Self, <C as Context>::Error>where S: Read,
fn read_from_file_with_ctx( context: C, path: impl AsRef<Path> ) -> Result<Self, <C as Context>::Error>
source§impl Serialize for CombineMode
impl Serialize for CombineMode
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
source§impl TryFrom<u32> for CombineMode
impl TryFrom<u32> for CombineMode
§type Error = TryFromPrimitiveError<CombineMode>
type Error = TryFromPrimitiveError<CombineMode>
The type returned in the event of a conversion error.
source§fn try_from(
number: u32
) -> Result<CombineMode, TryFromPrimitiveError<CombineMode>>
fn try_from( number: u32 ) -> Result<CombineMode, TryFromPrimitiveError<CombineMode>>
Performs the conversion.
source§impl TryFromPrimitive for CombineMode
impl TryFromPrimitive for CombineMode
type Primitive = u32
const NAME: &'static str = "CombineMode"
fn try_from_primitive( number: <CombineMode as TryFromPrimitive>::Primitive ) -> Result<CombineMode, TryFromPrimitiveError<CombineMode>>
source§impl ValueConverterTrait<CombineMode> for ValueConverter
impl ValueConverterTrait<CombineMode> for ValueConverter
source§fn into_value(v: CombineMode) -> Value
fn into_value(v: CombineMode) -> Value
Wraps the passed-in value in a
Value enum.source§fn from_value(v: &Value) -> CombineMode
fn from_value(v: &Value) -> CombineMode
Extracts the value from a
Value enum.