2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 01:07:43 +00:00

Initial CInterpolationCamera Imps

This commit is contained in:
2018-06-25 23:58:43 -07:00
parent f8b8211b0f
commit 8df333b29a
4 changed files with 89 additions and 3 deletions

View File

@@ -78,7 +78,6 @@ class CCameraManager
void RestoreHintlessCamera(CStateManager& mgr);
void InterpolateToBallCamera(const zeus::CTransform& xf, TUniqueId camId, const zeus::CVector3f& lookPos,
float f1, float f2, float f3, bool b1, CStateManager& mgr);
static constexpr bool ShouldBypassInterpolation() { return false; }
void SkipBallCameraCinematic(CStateManager& mgr);
void ApplyCameraHint(const CScriptCameraHint& hint, CStateManager& mgr);
@@ -157,6 +156,8 @@ public:
const CScriptCameraHint* GetCameraHint(CStateManager& mgr) const;
bool HasCameraHint(CStateManager& mgr) const;
bool IsInterpolationCameraActive() const;
bool ShouldBypassInterpolation() { return false; }
};
}