You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
888 B
39 lines
888 B
5 years ago
|
//========= Copyright Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
|
||
|
#ifndef TOGGLETEXTUREPROXY
|
||
|
#define TOGGLETEXTUREPROXY
|
||
|
|
||
|
#include "materialsystem/imaterialproxy.h"
|
||
|
|
||
|
class IMaterial;
|
||
|
class IMaterialVar;
|
||
|
|
||
|
#pragma warning (disable : 4100)
|
||
|
|
||
|
class CBaseToggleTextureProxy : public IMaterialProxy
|
||
|
{
|
||
|
public:
|
||
|
CBaseToggleTextureProxy();
|
||
|
virtual ~CBaseToggleTextureProxy();
|
||
|
|
||
|
virtual bool Init( IMaterial *pMaterial, KeyValues *pKeyValues );
|
||
|
virtual void OnBind( void *pC_BaseEntity );
|
||
|
virtual void Release( void ) { delete this; }
|
||
|
virtual IMaterial *GetMaterial();
|
||
|
|
||
|
private:
|
||
|
void Cleanup();
|
||
|
|
||
|
C_BaseEntity *BindArgToEntity( void *pArg );
|
||
|
|
||
|
IMaterialVar *m_TextureVar;
|
||
|
IMaterialVar *m_TextureFrameNumVar;
|
||
|
bool m_WrapAnimation;
|
||
|
};
|
||
|
|
||
|
#endif // TOGGLETEXTUREPROXY
|