TDME2 1.9.121
PrototypeParticleSystem_FogParticleSystem.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
9
10using std::string;
11
15
17
18PrototypeParticleSystem_FogParticleSystem::PrototypeParticleSystem_FogParticleSystem()
19{
20}
21
22void PrototypeParticleSystem_FogParticleSystem::setTextureFileName(const string& textureFileName, const string& transparencyTextureFileName) {
23 if (texture != nullptr) texture->releaseReference();
24 texture = nullptr;
25 this->textureFileName = textureFileName;
26 this->transparencyTextureFileName = transparencyTextureFileName;
27 if (this->transparencyTextureFileName.empty() == false && this->textureFileName.empty() == false) {
28 texture = TextureReader::read2(
29 Tools::getPathName(this->textureFileName),
30 Tools::getFileName(this->textureFileName),
31 Tools::getPathName(this->transparencyTextureFileName),
32 Tools::getFileName(this->transparencyTextureFileName)
33 );
34 } else
35 if (this->textureFileName.empty() == false) {
36 texture = TextureReader::read(
37 Tools::getPathName(this->textureFileName),
38 Tools::getFileName(this->textureFileName)
39 );
40 }
41}
42
44 if (texture != nullptr) texture->releaseReference();
45}
void setTextureFileName(const string &textureFileName, const string &transparencyTextureFileName=string())
Set texture file name with optional transparency texture.
void releaseReference()
releases a reference, thus decrementing the counter and delete it if reference counter is zero
Definition: Reference.cpp:20