mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 03:33:48 +00:00
ease member vars tagged as member vars
This commit is contained in:
parent
d979cf9d2d
commit
300d9eefbf
4 changed files with 88 additions and 88 deletions
|
|
@ -142,10 +142,10 @@ inline bool mathRead(Stream& stream, QuatF* q)
|
|||
|
||||
inline bool mathRead(Stream& stream, EaseF* e)
|
||||
{
|
||||
bool success = stream.read( &e->dir );
|
||||
success &= stream.read( &e->type );
|
||||
success &= stream.read( &e->param[ 0 ] );
|
||||
success &= stream.read( &e->param[ 1 ] );
|
||||
bool success = stream.read( &e->mDir );
|
||||
success &= stream.read( &e->mType );
|
||||
success &= stream.read( &e->mParam[ 0 ] );
|
||||
success &= stream.read( &e->mParam[ 1 ] );
|
||||
return success;
|
||||
}
|
||||
|
||||
|
|
@ -270,10 +270,10 @@ inline bool mathWrite(Stream& stream, const QuatF& q)
|
|||
|
||||
inline bool mathWrite(Stream& stream, const EaseF& e)
|
||||
{
|
||||
bool success = stream.write(e.dir);
|
||||
success &= stream.write(e.type);
|
||||
success &= stream.write(e.param[0]);
|
||||
success &= stream.write(e.param[1]);
|
||||
bool success = stream.write(e.mDir);
|
||||
success &= stream.write(e.mType);
|
||||
success &= stream.write(e.mParam[0]);
|
||||
success &= stream.write(e.mParam[1]);
|
||||
return success;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue