#[repr(C)]pub struct _tagEOS_AntiCheatCommon_LogPlayerTickOptions {
pub ApiVersion: i32,
pub PlayerHandle: EOS_AntiCheatCommon_ClientHandle,
pub PlayerPosition: *mut EOS_AntiCheatCommon_Vec3f,
pub PlayerViewRotation: *mut EOS_AntiCheatCommon_Quat,
pub bIsPlayerViewZoomed: EOS_Bool,
pub PlayerHealth: f32,
pub PlayerMovementState: EOS_EAntiCheatCommonPlayerMovementState,
pub PlayerViewPosition: *mut EOS_AntiCheatCommon_Vec3f,
}Expand description
Input parameters for the EOS_AntiCheatServer_LogPlayerTick function.
Fields§
§ApiVersion: i32API Version: Set this to EOS_ANTICHEATCOMMON_LOGPLAYERTICK_API_LATEST.
PlayerHandle: EOS_AntiCheatCommon_ClientHandleLocally unique value used in RegisterClient/RegisterPeer
PlayerPosition: *mut EOS_AntiCheatCommon_Vec3fPlayer character’s current world position as a 3D vector. This should be the center of the character.
PlayerViewRotation: *mut EOS_AntiCheatCommon_QuatPlayer camera’s current world rotation as a quaternion.
bIsPlayerViewZoomed: EOS_BoolTrue if the player’s view is zoomed (e.g. using a sniper rifle), otherwise false
PlayerHealth: f32Player’s current health value
PlayerMovementState: EOS_EAntiCheatCommonPlayerMovementStateAny movement state applicable
PlayerViewPosition: *mut EOS_AntiCheatCommon_Vec3fPlayer camera’s current world position as a 3D vector.
Trait Implementations§
Source§impl Clone for _tagEOS_AntiCheatCommon_LogPlayerTickOptions
impl Clone for _tagEOS_AntiCheatCommon_LogPlayerTickOptions
Source§fn clone(&self) -> _tagEOS_AntiCheatCommon_LogPlayerTickOptions
fn clone(&self) -> _tagEOS_AntiCheatCommon_LogPlayerTickOptions
Returns a duplicate 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 moreimpl Copy for _tagEOS_AntiCheatCommon_LogPlayerTickOptions
Auto Trait Implementations§
impl Freeze for _tagEOS_AntiCheatCommon_LogPlayerTickOptions
impl RefUnwindSafe for _tagEOS_AntiCheatCommon_LogPlayerTickOptions
impl !Send for _tagEOS_AntiCheatCommon_LogPlayerTickOptions
impl !Sync for _tagEOS_AntiCheatCommon_LogPlayerTickOptions
impl Unpin for _tagEOS_AntiCheatCommon_LogPlayerTickOptions
impl UnsafeUnpin for _tagEOS_AntiCheatCommon_LogPlayerTickOptions
impl UnwindSafe for _tagEOS_AntiCheatCommon_LogPlayerTickOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more