Starsector API
Loading...
Searching...
No Matches
ParticleControllerAPI.java
Go to the documentation of this file.
1package com.fs.starfarer.api.campaign;
2
3import java.awt.Color;
4
5public interface ParticleControllerAPI {
6
7 float getBrightness();
8 float getNewness();
9 boolean isExpired();
10 void advance(float elapsed);
11 void setVel(float dx, float dy);
12 void setPos(float x, float y);
13 float getAge();
14 void setAge(float age);
15 float getDx();
16 void setDx(float dx);
17 float getDy();
18 void setDy(float dy);
19 float getMaxAge();
20 void setMaxAge(float maxAge);
21 float getX();
22 void setX(float x);
23 float getY();
24 void setY(float y);
25 float getAngle();
26 void setAngle(float angle);
28 void setRotationSpeed(float rotationSpeed);
30 void setRampUpPeriod(float rampUpPeriod);
31 void setColor(Color color);
32 Color getColor();
33
34}