mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-12 15:14:35 +00:00
Rename all member variables to follow the style guidelines (prefixed with the 'm') - ColladaUtils (struct AnimChannels, struct AnimData, struct AnimatedElement)
This commit is contained in:
parent
9ccf5baf94
commit
40037b8b51
6 changed files with 82 additions and 82 deletions
|
|
@ -108,9 +108,9 @@ protected:
|
|||
/// Get the value of the named animated parameter (use defaultVal if parameter not found)
|
||||
template<typename T> void get(const char* name, AnimatedElement<T>& value, T defaultVal)
|
||||
{
|
||||
value.defaultVal = defaultVal;
|
||||
value.mDefaultVal = defaultVal;
|
||||
if (const domAny* param = findParam(name))
|
||||
value.element = param;
|
||||
value.mElement = param;
|
||||
}
|
||||
|
||||
public:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue