Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/game/StarHumanoid.cpp
diff options
context:
space:
mode:
authorKae <80987908+Novaenia@users.noreply.github.com>2025-01-01 19:41:42 +1100
committerKae <80987908+Novaenia@users.noreply.github.com>2025-01-01 19:41:42 +1100
commit5159b073bd9e3d2b903df27188b6b42db1ac65c7 (patch)
tree7bd5d94b7ec0cea38180f282a70b786d31ae6a6a /source/game/StarHumanoid.cpp
parenta589a41fb49dacdbef0186f9ee389ea189c083f4 (diff)
/render: support for rendering out character and clothing sheets
Diffstat (limited to 'source/game/StarHumanoid.cpp')
-rw-r--r--source/game/StarHumanoid.cpp40
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;
}