TDME2 1.9.121
PrototypeLODLevel.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
9
11
12using std::string;
13
17
18PrototypeLODLevel::PrototypeLODLevel(
20 const string& fileName,
21 Model* model,
22 float minDistance
23) :
24 type(type),
25 fileName(fileName),
26 model(model),
27 minDistance(minDistance) {
28 colorMul.set(1.0f, 1.0f, 1.0f, 1.0f);
29 colorAdd.set(0.0f, 0.0f, 0.0f, 0.0f);
30}
31
33 if (model != nullptr) delete model;
34}
LOD object 3D to be used with engine class.
Definition: LODObject3D.h:47
void set(const array< float, 4 > &color)
Set up color.
Definition: Color4Base.h:68
Color 4 definition.
Definition: Color4.h:20
Representation of a 3d model.
Definition: Model.h:32
Prototype LOD level definition.