TDME2 1.9.121
PrototypeParticleSystem.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
5
16
17/**
18 * Prototype particle system definition
19 * @author Andreas Drewke
20 * @version $Id$
21 */
23{
24private:
35
36 /**
37 * Unset particle system type
38 */
39 void unsetType();
40
41 /**
42 * Unset emitter
43 */
44 void unsetEmitter();
45
46public:
47 /**
48 * Public constructor
49 */
51
52 /**
53 * Destructor
54 */
56
57 /**
58 * @return particle system type
59 */
61 return type;
62 }
63
64 /**
65 * Set particle system type
66 * @param type type
67 */
69
70 /**
71 * @return object particle system
72 */
74 return ops;
75 }
76
77 /**
78 * @return point particle system
79 */
81 return pps;
82 }
83
84 /**
85 * @return fog particle system
86 */
88 return fps;
89 }
90
91 /**
92 * @return particle system emitter
93 */
95 return emitter;
96 }
97
98 /**
99 * Set emitter
100 * @param emitter emitter
101 */
103
104 /**
105 * @return point particle emitter
106 */
108 return ppe;
109 }
110
111 /**
112 * @return bounding box particle emitter
113 */
115 return bbpe;
116 }
117
118 /**
119 * @return circle particle emitter
120 */
122 return cpe;
123 }
124
125 /**
126 * @return circle particle emitter plane velocity
127 */
129 return cpepv;
130 }
131
132 /**
133 * @return sphere particle emitter
134 */
136 return spe;
137 }
138
139};
PrototypeParticleSystem_ObjectParticleSystem * ops
PrototypeParticleSystem_PointParticleEmitter * getPointParticleEmitter()
PrototypeParticleSystem_BoundingBoxParticleEmitter * bbpe
PrototypeParticleSystem_CircleParticleEmitterPlaneVelocity * getCircleParticleEmitterPlaneVelocity()
PrototypeParticleSystem_PointParticleEmitter * ppe
PrototypeParticleSystem_PointParticleSystem * getPointParticleSystem()
PrototypeParticleSystem_CircleParticleEmitter * cpe
void setEmitter(PrototypeParticleSystem_Emitter *emitter)
Set emitter.
PrototypeParticleSystem_SphereParticleEmitter * spe
PrototypeParticleSystem_CircleParticleEmitter * getCircleParticleEmitter()
void setType(PrototypeParticleSystem_Type *type)
Set particle system type.
PrototypeParticleSystem_BoundingBoxParticleEmitter * getBoundingBoxParticleEmitters()
PrototypeParticleSystem_ObjectParticleSystem * getObjectParticleSystem()
PrototypeParticleSystem_PointParticleSystem * pps
PrototypeParticleSystem_SphereParticleEmitter * getSphereParticleEmitter()
PrototypeParticleSystem_FogParticleSystem * getFogParticleSystem()
PrototypeParticleSystem_FogParticleSystem * fps
PrototypeParticleSystem_CircleParticleEmitterPlaneVelocity * cpepv