Class Particle
- java.lang.Object
-
- de.coreengine.rendering.renderable.Particle
-
public class Particle extends Object
-
-
Constructor Summary
Constructors Constructor Description Particle()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.vecmath.Vector3f
getPosition()
javax.vecmath.Vector2f
getSize()
String
getTexture()
void
setTexture(String texture)
Setting texture of the particle
-
-
-
Method Detail
-
getTexture
public String getTexture()
- Returns:
- Particles current texture
-
setTexture
public void setTexture(String texture)
Setting texture of the particle- Parameters:
texture
- New texture of the particle
-
getSize
public javax.vecmath.Vector2f getSize()
- Returns:
- Read/Writeable 2d size of the particle
-
getPosition
public javax.vecmath.Vector3f getPosition()
- Returns:
- Read/Writeable 3d position of the particle
-
-