diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2025-01-01 19:41:42 +1100 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2025-01-01 19:41:42 +1100 |
commit | 5159b073bd9e3d2b903df27188b6b42db1ac65c7 (patch) | |
tree | 7bd5d94b7ec0cea38180f282a70b786d31ae6a6a /source/game/StarHumanoid.cpp | |
parent | a589a41fb49dacdbef0186f9ee389ea189c083f4 (diff) |
/render: support for rendering out character and clothing sheets
Diffstat (limited to 'source/game/StarHumanoid.cpp')
-rw-r--r-- | source/game/StarHumanoid.cpp | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/source/game/StarHumanoid.cpp b/source/game/StarHumanoid.cpp index 97b90cd..2acc632 100644 --- a/source/game/StarHumanoid.cpp +++ b/source/game/StarHumanoid.cpp @@ -390,6 +390,46 @@ void Humanoid::setHelmetMaskDirectives(Directives helmetMaskDirectives) { m_helmetMaskDirectives = std::move(helmetMaskDirectives); } +Directives const& Humanoid::headArmorDirectives() const { + return m_headArmorDirectives; +}; + +String const& Humanoid::headArmorFrameset() const { + return m_headArmorFrameset; +}; + +Directives const& Humanoid::chestArmorDirectives() const { + return m_chestArmorDirectives; +}; + +String const& Humanoid::chestArmorFrameset() const { + return m_chestArmorFrameset; +}; + +String const& Humanoid::backSleeveFrameset() const { + return m_backSleeveFrameset; +}; + +String const& Humanoid::frontSleeveFrameset() const { + return m_frontSleeveFrameset; +}; + +Directives const& Humanoid::legsArmorDirectives() const { + return m_legsArmorDirectives; +}; + +String const& Humanoid::legsArmorFrameset() const { + return m_legsArmorFrameset; +}; + +Directives const& Humanoid::backArmorDirectives() const { + return m_backArmorDirectives; +}; + +String const& Humanoid::backArmorFrameset() const { + return m_backArmorFrameset; +}; + void Humanoid::setBodyHidden(bool hidden) { m_bodyHidden = hidden; } |