Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ public CBasePlayerController (IntPtr pointer) : base(pointer) {}
[SchemaMember("CBasePlayerController", "m_iConnected")]
public ref PlayerConnectedState Connected => ref Schema.GetRef<PlayerConnectedState>(this.Handle, "CBasePlayerController", "m_iConnected");

// m_iMostConnected
[SchemaMember("CBasePlayerController", "m_iMostConnected")]
public ref PlayerConnectedState MostConnected => ref Schema.GetRef<PlayerConnectedState>(this.Handle, "CBasePlayerController", "m_iMostConnected");

// m_iszPlayerName
[SchemaMember("CBasePlayerController", "m_iszPlayerName")]
public string PlayerName
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,18 +50,10 @@ public CCSPlayerAnimationState (IntPtr pointer) : base(pointer) {}
[SchemaMember("CCSPlayerAnimationState", "m_staticAimTimerStartTick")]
public ref Int32 StaticAimTimerStartTick => ref Schema.GetRef<Int32>(this.Handle, "CCSPlayerAnimationState", "m_staticAimTimerStartTick");

// m_stutterStepStartTick
[SchemaMember("CCSPlayerAnimationState", "m_stutterStepStartTick")]
public ref Int32 StutterStepStartTick => ref Schema.GetRef<Int32>(this.Handle, "CCSPlayerAnimationState", "m_stutterStepStartTick");

// m_plantAndTurnStartTick
[SchemaMember("CCSPlayerAnimationState", "m_plantAndTurnStartTick")]
public ref Int32 PlantAndTurnStartTick => ref Schema.GetRef<Int32>(this.Handle, "CCSPlayerAnimationState", "m_plantAndTurnStartTick");

// m_bIsStutterStep
[SchemaMember("CCSPlayerAnimationState", "m_bIsStutterStep")]
public ref bool IsStutterStep => ref Schema.GetRef<bool>(this.Handle, "CCSPlayerAnimationState", "m_bIsStutterStep");

// m_flTurnOnSpotAngle
[SchemaMember("CCSPlayerAnimationState", "m_flTurnOnSpotAngle")]
public ref float TurnOnSpotAngle => ref Schema.GetRef<float>(this.Handle, "CCSPlayerAnimationState", "m_flTurnOnSpotAngle");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@ public CCSPlayer_MovementServices (IntPtr pointer) : base(pointer) {}
[SchemaMember("CCSPlayer_MovementServices", "m_AnimationState")]
public CCSPlayerAnimationState AnimationState => Schema.GetDeclaredClass<CCSPlayerAnimationState>(this.Handle, "CCSPlayer_MovementServices", "m_AnimationState");

// m_bUsingGroundTopologyOffset
[SchemaMember("CCSPlayer_MovementServices", "m_bUsingGroundTopologyOffset")]
public ref bool UsingGroundTopologyOffset => ref Schema.GetRef<bool>(this.Handle, "CCSPlayer_MovementServices", "m_bUsingGroundTopologyOffset");

// m_flUsingGroundTopologyOffsetTransitionSmoothing
[SchemaMember("CCSPlayer_MovementServices", "m_flUsingGroundTopologyOffsetTransitionSmoothing")]
public ref float UsingGroundTopologyOffsetTransitionSmoothing => ref Schema.GetRef<float>(this.Handle, "CCSPlayer_MovementServices", "m_flUsingGroundTopologyOffsetTransitionSmoothing");

// m_vecLadderNormal
[SchemaMember("CCSPlayer_MovementServices", "m_vecLadderNormal")]
public Vector LadderNormal => Schema.GetDeclaredClass<Vector>(this.Handle, "CCSPlayer_MovementServices", "m_vecLadderNormal");
Expand Down Expand Up @@ -214,14 +222,6 @@ public CCSPlayer_MovementServices (IntPtr pointer) : base(pointer) {}
[SchemaMember("CCSPlayer_MovementServices", "m_vecWalkWishVel")]
public Vector2D WalkWishVel => Schema.GetDeclaredClass<Vector2D>(this.Handle, "CCSPlayer_MovementServices", "m_vecWalkWishVel");

// m_gtLastTimeOnStaticWorldGround
[SchemaMember("CCSPlayer_MovementServices", "m_gtLastTimeOnStaticWorldGround")]
public ref float GtLastTimeOnStaticWorldGround => ref Schema.GetRef<float>(this.Handle, "CCSPlayer_MovementServices", "m_gtLastTimeOnStaticWorldGround");

// m_gtLastTimeInAir
[SchemaMember("CCSPlayer_MovementServices", "m_gtLastTimeInAir")]
public ref float GtLastTimeInAir => ref Schema.GetRef<float>(this.Handle, "CCSPlayer_MovementServices", "m_gtLastTimeInAir");

// m_bHasEverProcessedCommand
[SchemaMember("CCSPlayer_MovementServices", "m_bHasEverProcessedCommand")]
public ref bool HasEverProcessedCommand => ref Schema.GetRef<bool>(this.Handle, "CCSPlayer_MovementServices", "m_bHasEverProcessedCommand");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ public CMapInfo (IntPtr pointer) : base(pointer) {}
[SchemaMember("CMapInfo", "m_bRainTraceToSkyEnabled")]
public ref bool RainTraceToSkyEnabled => ref Schema.GetRef<bool>(this.Handle, "CMapInfo", "m_bRainTraceToSkyEnabled");

// m_bGPUCullSkybox
[SchemaMember("CMapInfo", "m_bGPUCullSkybox")]
public ref bool GPUCullSkybox => ref Schema.GetRef<bool>(this.Handle, "CMapInfo", "m_bGPUCullSkybox");

// m_flEnvRainStrength
[SchemaMember("CMapInfo", "m_flEnvRainStrength")]
public ref float EnvRainStrength => ref Schema.GetRef<float>(this.Handle, "CMapInfo", "m_flEnvRainStrength");
Expand Down
Loading
Loading