2001-11-04 19:34:28 +00:00
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
File: TransitionFadeWipe.cpp
|
2001-11-03 10:52:42 +00:00
|
|
|
|
2001-11-04 19:34:28 +00:00
|
|
|
Desc: Fades out or in.
|
|
|
|
|
|
2002-05-19 01:59:48 +00:00
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
2001-11-04 19:34:28 +00:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|
2001-11-03 10:52:42 +00:00
|
|
|
|
2002-12-10 08:13:29 +00:00
|
|
|
#ifndef TRANSITION_FADE_WIPE_H
|
|
|
|
|
#define TRANSITION_FADE_WIPE_H
|
2001-11-03 10:52:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "Transition.h"
|
2002-05-19 01:59:48 +00:00
|
|
|
#include "Quad.h"
|
2001-11-03 10:52:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class TransitionFadeWipe : public Transition
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
TransitionFadeWipe();
|
|
|
|
|
~TransitionFadeWipe();
|
|
|
|
|
|
2002-05-19 01:59:48 +00:00
|
|
|
virtual void DrawPrimitives();
|
2001-12-28 10:15:59 +00:00
|
|
|
|
|
|
|
|
protected:
|
2002-05-19 01:59:48 +00:00
|
|
|
Quad m_rectBlack, m_rectGradient;
|
2002-01-16 10:01:32 +00:00
|
|
|
|
2001-11-03 10:52:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-11-16 08:37:12 +00:00
|
|
|
#endif
|