pub type EOS_AntiCheatCommon_LogPlayerTickOptions = _tagEOS_AntiCheatCommon_LogPlayerTickOptions;Expand description
Input parameters for the EOS_AntiCheatServer_LogPlayerTick function.
Aliased Type§
#[repr(C)]pub struct EOS_AntiCheatCommon_LogPlayerTickOptions {
pub ApiVersion: i32,
pub PlayerHandle: *mut c_void,
pub PlayerPosition: *mut _tagEOS_AntiCheatCommon_Vec3f,
pub PlayerViewRotation: *mut _tagEOS_AntiCheatCommon_Quat,
pub bIsPlayerViewZoomed: i32,
pub PlayerHealth: f32,
pub PlayerMovementState: i32,
pub PlayerViewPosition: *mut _tagEOS_AntiCheatCommon_Vec3f,
}Fields§
§ApiVersion: i32API Version: Set this to EOS_ANTICHEATCOMMON_LOGPLAYERTICK_API_LATEST.
PlayerHandle: *mut c_voidLocally unique value used in RegisterClient/RegisterPeer
PlayerPosition: *mut _tagEOS_AntiCheatCommon_Vec3fPlayer character’s current world position as a 3D vector. This should be the center of the character.
PlayerViewRotation: *mut _tagEOS_AntiCheatCommon_QuatPlayer camera’s current world rotation as a quaternion.
bIsPlayerViewZoomed: i32True if the player’s view is zoomed (e.g. using a sniper rifle), otherwise false
PlayerHealth: f32Player’s current health value
PlayerMovementState: i32Any movement state applicable
PlayerViewPosition: *mut _tagEOS_AntiCheatCommon_Vec3fPlayer camera’s current world position as a 3D vector.