TDME2 1.9.121
PrototypeParticleSystem_ObjectParticleSystem.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
8#include <tdme/math/Vector3.h>
12
13using std::string;
14
22
23void PrototypeParticleSystem_ObjectParticleSystem::setModelFile(const string& modelFileName)
24{
25 if (this->model != nullptr) delete model;
26 this->model = nullptr;
27 this->modelFileName = modelFileName;
28 if (modelFileName.empty() == false) {
29 model = ModelReader::read(
30 Tools::getPathName(modelFileName),
31 Tools::getFileName(modelFileName)
32 );
33 }
34}
35
37 if (model != nullptr) delete model;
38}
Representation of a 3d model.
Definition: Model.h:32
3D vector 3 class
Definition: Vector3.h:22
Exception base class.
Definition: ExceptionBase.h:20
String tools class.
Definition: StringTools.h:20