mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
fix AnimValue smooth values on clients
the dbs were not transmitting the bools
This commit is contained in:
parent
9d4bfec4d1
commit
80c49ec692
|
|
@ -244,6 +244,7 @@ void LightAnimData::AnimValue<COUNT>::write( BitStream *stream ) const
|
|||
stream->write( value2[i] );
|
||||
stream->write( period[i] );
|
||||
stream->writeString( keys[i] );
|
||||
stream->writeFlag(smooth[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -256,6 +257,7 @@ void LightAnimData::AnimValue<COUNT>::read( BitStream *stream )
|
|||
stream->read( &value2[i] );
|
||||
stream->read( &period[i] );
|
||||
keys[i] = stream->readSTString();
|
||||
smooth[i] = stream->readFlag();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue