shaderinfo.cpp
来自「quake3工具源码。包括生成bsp文件」· C++ 代码 · 共 49 行
CPP
49 行
// ShaderInfo.cpp: implementation of the CShaderInfo class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Radiant.h"
#include "ShaderInfo.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CShaderInfo::CShaderInfo()
{
m_fTransValue = 1.0;
m_nFlags = 0;
m_pQTexture = NULL;
}
CShaderInfo::~CShaderInfo()
{
}
void CShaderInfo::Parse(const char *pName)
{
}
void CShaderInfo::setName(char *pName)
{
//--char path[1024];
//--strcpy(path, pName);
//--DefaultExtension(path, ".tga");
m_strName = pName;
m_strName.MakeLower();
if (m_strName.Find("textures") == 0)
{
CString s = m_strName.Right(m_strName.GetLength() - strlen("textures") - 1);
m_strName = s;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?