Struct sdl2_sys::SDL_HapticCustom [] [src]

#[repr(C)]
pub struct SDL_HapticCustom { pub type_: Uint16, pub direction: SDL_HapticDirection, pub length: Uint32, pub delay: Uint16, pub button: Uint16, pub interval: Uint16, pub channels: Uint8, pub period: Uint16, pub samples: Uint16, pub data: *mut Uint16, pub attack_length: Uint16, pub attack_level: Uint16, pub fade_length: Uint16, pub fade_level: Uint16, }

\brief A structure containing a template for the ::SDL_HAPTIC_CUSTOM effect.

A custom force feedback effect is much like a periodic effect, where the application can define its exact shape. You will have to allocate the data yourself. Data should consist of channels * samples Uint16 samples.

If channels is one, the effect is rotated using the defined direction. Otherwise it uses the samples in data for the different axes.

\sa SDL_HAPTIC_CUSTOM \sa SDL_HapticEffect

Fields

< ::SDL_HAPTIC_CUSTOM

< Direction of the effect.

< Duration of the effect.

< Delay before starting the effect.

< Button that triggers the effect.

< How soon it can be triggered again after button.

< Axes to use, minimum of one.

< Sample periods.

< Amount of samples.

< Should contain channels*samples items.

< Duration of the attack.

< Level at the start of the attack.

< Duration of the fade.

< Level at the end of the fade.

Trait Implementations

impl Debug for SDL_HapticCustom
[src]

[src]

Formats the value using the given formatter.

impl Copy for SDL_HapticCustom
[src]

impl Clone for SDL_HapticCustom
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more