forked from metin-server/m2dev-client-src
effect decorators removed
This commit is contained in:
@@ -14,55 +14,45 @@ BOOL CEmitterProperty::isEmitFromEdge()
|
||||
return m_bEmitFromEdgeFlag;
|
||||
}
|
||||
|
||||
void CEmitterProperty::GetEmittingSize(float fTime, float * pfValue)
|
||||
void CEmitterProperty::GetEmittingSize(float fTime, float* pfValue)
|
||||
{
|
||||
//GetTimeEventBlendValue<TTimeEventTableFloat, float>(fTime, m_TimeEventEmittingSize, pfValue);
|
||||
GetTimeEventBlendValue(fTime, m_TimeEventEmittingSize, pfValue);
|
||||
*pfValue = GetTimeEventBlendValue(fTime, m_TimeEventEmittingSize);
|
||||
}
|
||||
void CEmitterProperty::GetEmittingAngularVelocity(float fTime, float * pfValue)
|
||||
void CEmitterProperty::GetEmittingAngularVelocity(float fTime, float* pfValue)
|
||||
{
|
||||
//GetTimeEventBlendValue<TTimeEventTableFloat, float>(fTime, m_TimeEventEmittingAngularVelocity, pfValue);
|
||||
GetTimeEventBlendValue(fTime, m_TimeEventEmittingAngularVelocity, pfValue);
|
||||
*pfValue = GetTimeEventBlendValue(fTime, m_TimeEventEmittingAngularVelocity);
|
||||
}
|
||||
void CEmitterProperty::GetEmittingDirectionX(float fTime, float * pfValue)
|
||||
void CEmitterProperty::GetEmittingDirectionX(float fTime, float* pfValue)
|
||||
{
|
||||
//GetTimeEventBlendValue<TTimeEventTableFloat, float>(fTime, m_TimeEventEmittingDirectionX, pfValue);
|
||||
GetTimeEventBlendValue(fTime, m_TimeEventEmittingDirectionX, pfValue);
|
||||
*pfValue = GetTimeEventBlendValue(fTime, m_TimeEventEmittingDirectionX);
|
||||
}
|
||||
void CEmitterProperty::GetEmittingDirectionY(float fTime, float * pfValue)
|
||||
void CEmitterProperty::GetEmittingDirectionY(float fTime, float* pfValue)
|
||||
{
|
||||
//GetTimeEventBlendValue<TTimeEventTableFloat, float>(fTime, m_TimeEventEmittingDirectionY, pfValue);
|
||||
GetTimeEventBlendValue(fTime, m_TimeEventEmittingDirectionY, pfValue);
|
||||
*pfValue = GetTimeEventBlendValue(fTime, m_TimeEventEmittingDirectionY);
|
||||
}
|
||||
void CEmitterProperty::GetEmittingDirectionZ(float fTime, float * pfValue)
|
||||
void CEmitterProperty::GetEmittingDirectionZ(float fTime, float* pfValue)
|
||||
{
|
||||
//GetTimeEventBlendValue<TTimeEventTableFloat, float>(fTime, m_TimeEventEmittingDirectionZ, pfValue);
|
||||
GetTimeEventBlendValue(fTime, m_TimeEventEmittingDirectionZ, pfValue);
|
||||
*pfValue = GetTimeEventBlendValue(fTime, m_TimeEventEmittingDirectionZ);
|
||||
}
|
||||
void CEmitterProperty::GetEmittingVelocity(float fTime, float * pfValue)
|
||||
void CEmitterProperty::GetEmittingVelocity(float fTime, float* pfValue)
|
||||
{
|
||||
//GetTimeEventBlendValue<TTimeEventTableFloat, float>(fTime, m_TimeEventEmittingVelocity, pfValue);
|
||||
GetTimeEventBlendValue(fTime, m_TimeEventEmittingVelocity, pfValue);
|
||||
*pfValue = GetTimeEventBlendValue(fTime, m_TimeEventEmittingVelocity);
|
||||
}
|
||||
void CEmitterProperty::GetEmissionCountPerSecond(float fTime, float * pfValue)
|
||||
void CEmitterProperty::GetEmissionCountPerSecond(float fTime, float* pfValue)
|
||||
{
|
||||
//GetTimeEventBlendValue<TTimeEventTableFloat, float>(fTime, m_TimeEventEmissionCountPerSecond, pfValue);
|
||||
GetTimeEventBlendValue(fTime, m_TimeEventEmissionCountPerSecond, pfValue);
|
||||
*pfValue = GetTimeEventBlendValue(fTime, m_TimeEventEmissionCountPerSecond);
|
||||
}
|
||||
void CEmitterProperty::GetParticleLifeTime(float fTime, float * pfValue)
|
||||
void CEmitterProperty::GetParticleLifeTime(float fTime, float* pfValue)
|
||||
{
|
||||
//GetTimeEventBlendValue<TTimeEventTableFloat, float>(fTime, m_TimeEventLifeTime, pfValue);
|
||||
GetTimeEventBlendValue(fTime, m_TimeEventLifeTime, pfValue);
|
||||
*pfValue = GetTimeEventBlendValue(fTime, m_TimeEventLifeTime);
|
||||
}
|
||||
void CEmitterProperty::GetParticleSizeX(float fTime, float * pfValue)
|
||||
void CEmitterProperty::GetParticleSizeX(float fTime, float* pfValue)
|
||||
{
|
||||
//GetTimeEventBlendValue<TTimeEventTableFloat, float>(fTime, m_TimeEventSizeX, pfValue);
|
||||
GetTimeEventBlendValue(fTime, m_TimeEventSizeX, pfValue);
|
||||
*pfValue = GetTimeEventBlendValue(fTime, m_TimeEventSizeX);
|
||||
}
|
||||
void CEmitterProperty::GetParticleSizeY(float fTime, float * pfValue)
|
||||
void CEmitterProperty::GetParticleSizeY(float fTime, float* pfValue)
|
||||
{
|
||||
//GetTimeEventBlendValue<TTimeEventTableFloat, float>(fTime, m_TimeEventSizeY, pfValue);
|
||||
GetTimeEventBlendValue(fTime, m_TimeEventSizeY, pfValue);
|
||||
*pfValue = GetTimeEventBlendValue(fTime, m_TimeEventSizeY);
|
||||
}
|
||||
|
||||
void CEmitterProperty::Clear()
|
||||
|
||||
Reference in New Issue
Block a user