Revision 07308ac9
Added by Leszek Koltunski almost 2 years ago
src/main/java/org/distorted/overlays/OverlayStars.java | ||
---|---|---|
48 | 48 |
public class OverlayStars extends OverlayGeneric implements EffectListener |
49 | 49 |
{ |
50 | 50 |
private static final int DUR_APP = 1500; |
51 |
private static final int DUR_MOV = 3500;
|
|
51 |
private static final int DUR_MOV = 3000;
|
|
52 | 52 |
private static final int DUR_GLO = 600; |
53 | 53 |
|
54 | 54 |
private ListenerOverlay mListener; |
... | ... | |
75 | 75 |
Dynamic3D move = new Dynamic3D(); |
76 | 76 |
move.setMode(Dynamic.MODE_PATH); |
77 | 77 |
move.setDuration(DUR_MOV); |
78 |
move.setCount(0.5f);
|
|
78 |
move.setCount(0.40f);
|
|
79 | 79 |
|
80 | 80 |
float widthS = (mRandom.nextFloat()-0.5f)*mWidth*1.10f; |
81 | 81 |
float widthM = widthS + (mRandom.nextFloat()-0.5f)*mWidth*0.2f; |
Also available in: Unified diff
Minor.