Demo matches (#767)

This commit is contained in:
LagoLunatic
2025-05-24 18:54:46 -04:00
committed by GitHub
parent 4a29f64e6b
commit 7cd75e8f7b
83 changed files with 945 additions and 424 deletions
+2 -2
View File
@@ -90,7 +90,7 @@ void daBoko_c::getTopPos(cXyz* ret) {
if (mpModel != NULL) {
cMtx_multVec(mpModel->getBaseTRMtx(), &m_top_offset[fopAcM_GetParam(this)], ret);
} else {
*ret = fopAcM_GetPosition(this) + m_top_offset[fopAcM_GetParam(this)];
*ret = current.pos + m_top_offset[fopAcM_GetParam(this)];
}
}
@@ -99,6 +99,6 @@ void daBoko_c::getBlurRootPos(cXyz* ret) {
if (mpModel != NULL) {
cMtx_multVec(mpModel->getBaseTRMtx(), &m_blur_root_offset[fopAcM_GetParam(this)], ret);
} else {
*ret = fopAcM_GetPosition(this) + m_blur_root_offset[fopAcM_GetParam(this)];
*ret = current.pos + m_blur_root_offset[fopAcM_GetParam(this)];
}
}