From edda5ea96a348f0d0a0d54832fe50c983c24922e Mon Sep 17 00:00:00 2001 From: "Devin J. Pohly" Date: Tue, 28 May 2013 22:22:00 -0400 Subject: [PATCH] Remove old propagation for diffuse --- src/ActorFrame.cpp | 3 --- src/ActorFrame.h | 3 --- 2 files changed, 6 deletions(-) diff --git a/src/ActorFrame.cpp b/src/ActorFrame.cpp index 01340837f2..74600ea9c8 100644 --- a/src/ActorFrame.cpp +++ b/src/ActorFrame.cpp @@ -376,12 +376,9 @@ void ActorFrame::UpdateInternal( float fDeltaTime ) } PropagateActorFrameCommand( FinishTweening ) -PropagateActorFrameCommand1Param( SetDiffuse, RageColor ) PropagateActorFrameCommand1Param( SetZTestMode, ZTestMode ) PropagateActorFrameCommand1Param( SetZWrite, bool ) PropagateActorFrameCommand1Param( HurryTweening, float ) -PropagateActorFrameCommand1Param( SetDiffuseAlpha, float ) -PropagateActorFrameCommand1Param( SetBaseAlpha, float ) float ActorFrame::GetTweenTimeLeft() const diff --git a/src/ActorFrame.h b/src/ActorFrame.h index ba377ffcfb..6be8957e59 100644 --- a/src/ActorFrame.h +++ b/src/ActorFrame.h @@ -69,9 +69,6 @@ public: virtual void EndDraw(); // propagated commands - virtual void SetDiffuse( RageColor c ); - virtual void SetDiffuseAlpha( float f ); - virtual void SetBaseAlpha( float f ); virtual void SetZTestMode( ZTestMode mode ); virtual void SetZWrite( bool b ); virtual void FinishTweening();