| 1574 | } |
| 1575 | |
| 1576 | Maybe<DancePtr> Humanoid::getDance() const { |
| 1577 | if (m_dance.isNothing()) |
| 1578 | return {}; |
| 1579 | |
| 1580 | auto danceDatabase = Root::singleton().danceDatabase(); |
| 1581 | return danceDatabase->getDance(*m_dance); |
| 1582 | } |
| 1583 | |
| 1584 | float Humanoid::getBobYOffset() const { |
| 1585 | int bodyStateSeq = getBodyStateSequence(); |
no test coverage detected