mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 22:54:34 +00:00
Merge pull request #1730 from Azaezel/copyConstructorCorruption
accutex was left out of the copy constructor for TSRenderState.
This commit is contained in:
commit
2794f18d78
1 changed files with 2 additions and 1 deletions
|
|
@ -46,7 +46,8 @@ TSRenderState::TSRenderState( const TSRenderState &state )
|
|||
mNoRenderNonTranslucent( state.mNoRenderNonTranslucent ),
|
||||
mMaterialHint( state.mMaterialHint ),
|
||||
mCuller( state.mCuller ),
|
||||
mUseOriginSort( state.mUseOriginSort ),
|
||||
mLightQuery( state.mLightQuery ),
|
||||
mUseOriginSort( state.mUseOriginSort )
|
||||
mAccuTex( state.mAccuTex )
|
||||
{
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue