Address PR feedback.

This commit is contained in:
Brian Phlipot
2023-02-02 11:54:17 -08:00
committed by teejusb
parent 4a6b1a743c
commit d079940fea
44 changed files with 259 additions and 236 deletions
+8 -8
View File
@@ -297,8 +297,8 @@ struct NoteColumnRenderer : public Actor
// and receptor positions follow the splines. It's called by their row
// update functions. -Kyz
void UpdateReceptorGhostStuff(Actor* receptor) const;
virtual void DrawPrimitives();
virtual void PushSelf(lua_State* L);
virtual void DrawPrimitives() override;
virtual void PushSelf(lua_State* L) override;
struct NCR_TweenState
{
@@ -321,12 +321,12 @@ struct NoteColumnRenderer : public Actor
}
const NCR_TweenState& NCR_DestTweenState() const { return const_cast<NoteColumnRenderer*>(this)->NCR_DestTweenState(); }
virtual void SetCurrentTweenStart();
virtual void EraseHeadTween();
virtual void UpdatePercentThroughTween(float between);
virtual void BeginTweening(float time, ITween* interp);
virtual void StopTweening();
virtual void FinishTweening();
virtual void SetCurrentTweenStart() override;
virtual void EraseHeadTween() override;
virtual void UpdatePercentThroughTween(float between) override;
virtual void BeginTweening(float time, ITween* interp) override;
virtual void StopTweening() override;
virtual void FinishTweening() override;
NCSplineHandler* GetPosHandler() { return &NCR_DestTweenState().m_pos_handler; }
NCSplineHandler* GetRotHandler() { return &NCR_DestTweenState().m_rot_handler; }