IPlayerVitals interface
Vitals (HP / Stamina) facet of the local player’s state.
public interface IPlayerVitalsMembers
Section titled “Members”| name | description |
|---|---|
| Health { get; } | Current HP; zero before the player is in-world. |
| MaxHealth { get; } | Maximum HP; zero before the player is in-world. |
| MaxStamina { get; } | Maximum stamina; zero before the player is in-world. |
| Stamina { get; } | Current stamina (origin energy); zero before the player is in-world. |
Remarks
Section titled “Remarks”Phase 9a supplement renamed Mana → Stamina to match Star Resonance’s own terminology. The underlying probe (PandaPlayerStateProbe) already reads the game’s LuaOriginEnergy / LuaMaxOriEnergy fields, which are the stamina pool — the rename is only the C# identifier on our side. See docs/superpowers/specs/2026-05-29-phase-9a-layout-primitives-design.md.
See Also
Section titled “See Also”- namespace Stellar.Abstractions.Services