27Prototype::Prototype(
int id,
Prototype_Type* entityType,
const string& name,
const string& description,
const string& fileName,
const string& modelFileName,
const string& thumbnail,
Model* model,
const Vector3& pivot):
31 this->
type = entityType;
61 for (
auto sound:
sounds)
delete sound;
66 if (this->model ==
model)
return;
67 if (this->model !=
nullptr)
delete this->
model;
125 if (this->imposterLOD !=
nullptr)
delete this->
imposterLOD;
139 if (sound !=
nullptr)
return nullptr;
Representation of a 3d model.
ShaderModel * getShaderModel()
Prototype audio definition.
Prototype bounding volume definition.
Prototype LOD level definition.
Prototype particle system definition.
Prototype physics body definitions.
Prototype terrain definition.
static STATIC_DLL_IMPEXT Prototype_Type * MODEL
static STATIC_DLL_IMPEXT Prototype_Type * TERRAIN
static STATIC_DLL_IMPEXT Prototype_Type * PARTICLESYSTEM
PrototypeAudio * addSound(const string &id)
Add sound with given id.
void setLODLevel3(PrototypeLODLevel *lodLevel)
Set LOD level 3.
void setImposterLOD(PrototypeImposterLOD *imposterLOD)
Set imposter LOD.
vector< PrototypeBoundingVolume * > boundingVolumes
PrototypeAudio * getSound(const string &id)
Returns sound of given sound id.
virtual ~Prototype()
Destructor.
PrototypeTerrain * terrain
map< string, PrototypeAudio * > soundsById
PrototypePhysics * physics
PrototypeLODLevel * lodLevel3
bool addBoundingVolume(int idx, PrototypeBoundingVolume *prototypeBoundingVolume)
Add bounding volume at given index.
void setModel(Model *model)
Set model.
PrototypeLODLevel * lodLevel2
void removeBoundingVolume(int idx)
Remove bounding volume at given index.
void setLODLevel2(PrototypeLODLevel *lodLevel)
Set LOD level 2.
vector< PrototypeParticleSystem * > particleSystems
vector< PrototypeAudio * > sounds
PrototypeImposterLOD * imposterLOD
void removeLODLevel(int lodLevel)
Remove LOD level.
Vector3 & set(float x, float y, float z)
Set up vector.