mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-20 23:23:47 +00:00
Rename all member variables to follow the style guidelines (prefixed with the 'm') - ColladaExtensions
This commit is contained in:
parent
733347fd61
commit
9aeb4389f3
6 changed files with 101 additions and 101 deletions
|
|
@ -45,31 +45,31 @@ const char* ColladaAppSequence::getName() const
|
|||
|
||||
S32 ColladaAppSequence::getNumTriggers()
|
||||
{
|
||||
return clipExt->triggers.size();
|
||||
return clipExt->mTriggers.size();
|
||||
}
|
||||
|
||||
void ColladaAppSequence::getTrigger(S32 index, TSShape::Trigger& trigger)
|
||||
{
|
||||
trigger.pos = clipExt->triggers[index].time;
|
||||
trigger.state = clipExt->triggers[index].state;
|
||||
trigger.pos = clipExt->mTriggers[index].time;
|
||||
trigger.state = clipExt->mTriggers[index].state;
|
||||
}
|
||||
|
||||
U32 ColladaAppSequence::getFlags() const
|
||||
{
|
||||
U32 flags = 0;
|
||||
if (clipExt->cyclic) flags |= TSShape::Cyclic;
|
||||
if (clipExt->blend) flags |= TSShape::Blend;
|
||||
if (clipExt->mCyclic) flags |= TSShape::Cyclic;
|
||||
if (clipExt->mBlend) flags |= TSShape::Blend;
|
||||
return flags;
|
||||
}
|
||||
|
||||
F32 ColladaAppSequence::getPriority()
|
||||
{
|
||||
return clipExt->priority;
|
||||
return clipExt->mPriority;
|
||||
}
|
||||
|
||||
F32 ColladaAppSequence::getBlendRefTime()
|
||||
{
|
||||
return clipExt->blendReferenceTime;
|
||||
return clipExt->mBlendReferenceTime;
|
||||
}
|
||||
|
||||
void ColladaAppSequence::setActive(bool active)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue