TDME2 1.9.121
PrototypeParticleSystem_ObjectParticleSystem.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
9#include <tdme/math/Vector3.h>
10
11using std::string;
12
24
25/**
26 * Prototype object particle system definition
27 * @author Andreas Drewke
28 * @version $Id$
29 */
31{
32private:
36 Model* model { nullptr };
38
39public:
40 /**
41 * Public constructor
42 */
44 scale.set(1.0f, 1.0f, 1.0f);
45 maxCount = 10;
46 autoEmit = true;
47 model = nullptr;
48 modelFileName = "";
49 }
50
51 /**
52 * Destructor
53 */
55
56 /**
57 * @return scale
58 */
59 inline const Vector3& getScale() {
60 return scale;
61 }
62
63 /**
64 * Set scale
65 * @param scale scale
66 */
67 inline void setScale(const Vector3& scale) {
68 this->scale = scale;
69 }
70
71 /**
72 * @return max count
73 */
74 inline int getMaxCount() {
75 return maxCount;
76 }
77
78 /**
79 * Set max count
80 * @param maxCount max count
81 */
82 inline void setMaxCount(int maxCount) {
83 this->maxCount = maxCount;
84 }
85
86 /**
87 * @return is auto emit
88 */
89 inline bool isAutoEmit() {
90 return autoEmit;
91 }
92
93 /**
94 * Set auto emit
95 * @param autoEmit autoEmit
96 */
97 inline void setAutoEmit(bool autoEmit) {
98 this->autoEmit = autoEmit;
99 }
100
101 /**
102 * @return model
103 */
104 inline Model* getModel() {
105 return model;
106 }
107
108 /**
109 * @return model file
110 */
111 inline const string& getModelFileName() {
112 return modelFileName;
113 }
114
115 /**
116 * Set model file
117 * @param modelFileName model file name
118 */
119 void setModelFile(const string& modelFileName);
120
121};
Representation of a 3d model.
Definition: Model.h:32
3D vector 3 class
Definition: Vector3.h:22
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73