Added offset calculation to camera get position

This commit is contained in:
maverickdgg 2023-02-26 02:20:57 +08:00
parent b017618373
commit c8baff878e
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ namespace SHADE
SHVec3 SHCameraComponent::GetPosition() const noexcept
{
return position;
return position + offset;
}
float SHCameraComponent::GetYaw() const noexcept