mirror of
https://github.com/AxioDL/PrimeWorldEditor.git
synced 2025-06-17 12:03:34 +00:00
CMaterial: Simplify Clone() a little
Given we use std::array now, we can perform a direct assignment instead of a loop.
This commit is contained in:
parent
28587fb622
commit
5b96480a45
@ -59,10 +59,8 @@ std::unique_ptr<CMaterial> CMaterial::Clone()
|
||||
pOut->mVersion = mVersion;
|
||||
pOut->mOptions = mOptions;
|
||||
pOut->mVtxDesc = mVtxDesc;
|
||||
for (uint32 iKonst = 0; iKonst < 4; iKonst++)
|
||||
pOut->mKonstColors[iKonst] = mKonstColors[iKonst];
|
||||
for (uint32 iTev = 0; iTev < 4; iTev++)
|
||||
pOut->mTevColors[iTev] = mTevColors[iTev];
|
||||
pOut->mKonstColors = mKonstColors;
|
||||
pOut->mTevColors = mTevColors;
|
||||
pOut->mBlendSrcFac = mBlendSrcFac;
|
||||
pOut->mBlendDstFac = mBlendDstFac;
|
||||
pOut->mLightingEnabled = mLightingEnabled;
|
||||
|
Loading…
x
Reference in New Issue
Block a user