-
Unsure if gameSessionManifest is even where I should be looking for this stuff, but could someone point out where i can access some of this information? (Shot impacts, headshots, positioning, etc) |
Beta Was this translation helpful? Give feedback.
Answered by
saul
Oct 8, 2024
Replies: 1 comment 1 reply
-
The game session manifest likely contains details for the Steam Game Coordinator about the lobby. I don't think you'll find anything useful about gameplay (impacts, headshots, positions etc) in there.
Hitgroup is a number that maps into this enum: enum HitGroup
{
Generic = 0,
Head = 1,
Chest = 2,
Stomach = 3,
Leftarm = 4,
Rightarm = 5,
Leftleg = 6,
Rightleg = 7,
Neck = 8,
Unused = 9,
Gear = 10,
Special = 11,
}; Hope that helps! |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
saul
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The game session manifest likely contains details for the Steam Game Coordinator about the lobby. I don't think you'll find anything useful about gameplay (impacts, headshots, positions etc) in there.
demo.Source1GameEvent.BulletImpact
demo.Source1GameEvent.PlayerHurt
anddemo.Source1GameEvent.PlayerDeath
(see theHitgroup
property on the event)e.AttackerPawn.Origin
Hitgroup is a number that maps into this enum: