HomeSort by relevance Sort by last modified time
    Searched refs:ColorInfluencer (Results 1 - 5 of 5) sorted by null

  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/flame/
ColorInfluencerPanel.java 3 import com.badlogic.gdx.graphics.g3d.particles.influencers.ColorInfluencer;
7 public class ColorInfluencerPanel extends InfluencerPanel<ColorInfluencer.Single> {
12 public ColorInfluencerPanel (FlameMain particleEditor3D, ColorInfluencer.Single influencer) {
18 private void initializeComponents(ColorInfluencer.Single emitter){
FlameMain.java 85 import com.badlogic.gdx.graphics.g3d.particles.influencers.ColorInfluencer;
150 new InfluencerWrapper("Single Color", ColorInfluencer.Single.class),
151 new InfluencerWrapper("Random Color", ColorInfluencer.Random.class),
159 new InfluencerWrapper("Single Color", ColorInfluencer.Single.class),
160 new InfluencerWrapper("Random Color", ColorInfluencer.Random.class),
168 new InfluencerWrapper("Single Color", ColorInfluencer.Single.class),
169 new InfluencerWrapper("Random Color", ColorInfluencer.Random.class),
304 if(influencer instanceof ColorInfluencer.Single){
305 return new ColorInfluencerPanel(this, (ColorInfluencer.Single) influencer);
307 if(influencer instanceof ColorInfluencer.Random)
    [all...]
EffectPanel.java 44 import com.badlogic.gdx.graphics.g3d.particles.influencers.ColorInfluencer;
112 ColorInfluencer.Random colorInfluencer = new ColorInfluencer.Random();
134 colorInfluencer,
154 ColorInfluencer.Single colorInfluencer = new ColorInfluencer.Single();
155 colorInfluencer.colorValue.setColors(new float[] {1, 0.12156863f, 0.047058824f, 0,0,0});
156 colorInfluencer.colorValue.setTimeline(new float[] {0, 1})
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/influencers/
ColorInfluencer.java 13 public abstract class ColorInfluencer extends Influencer{
16 public static class Random extends ColorInfluencer{
43 public static class Single extends ColorInfluencer {
60 public void set(Single colorInfluencer){
61 this.colorValue.load(colorInfluencer.colorValue);
62 this.alphaValue.load(colorInfluencer.alphaValue);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/
ParticleControllerTest.java 24 import com.badlogic.gdx.graphics.g3d.particles.influencers.ColorInfluencer;
31 import com.badlogic.gdx.graphics.g3d.particles.influencers.ColorInfluencer.Single;
175 ColorInfluencer.Single colorInfluencer = new ColorInfluencer.Single();
176 colorInfluencer.colorValue.setColors(new float[] {colors[0], colors[1], colors[2], 0,0,0});
177 colorInfluencer.colorValue.setTimeline(new float[] {0, 1});
178 colorInfluencer.alphaValue.setHigh(1);
179 colorInfluencer.alphaValue.setTimeline(new float[] {0, 0.5f, 0.8f, 1});
180 colorInfluencer.alphaValue.setScaling(new float[] {0, 0.15f, 0.5f, 0})
    [all...]

Completed in 165 milliseconds