2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 20:27:43 +00:00

Add missed VectorElement

This commit is contained in:
2016-02-17 00:07:32 -08:00
parent 8c659f9fb8
commit 25de1ca641
3 changed files with 23 additions and 0 deletions

View File

@@ -476,6 +476,11 @@ CVectorElement* CParticleDataFactory::GetVectorElement(CInputStream& in)
CVectorElement* b = GetVectorElement(in);
return new CVESubtract(a, b);
}
case SBIG('CTVC'):
{
CColorElement* a = GetColorElement(in);
return new CVEColorToVector(a);
}
default: break;
}
return nullptr;