Home
last modified time | relevance | path

Searched refs:ScaledNumericPanel (Results 1 – 8 of 8) sorted by relevance

/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/flame/
DAngularVelocityPanel.java18 ScaledNumericPanel thetaPanel;
19 ScaledNumericPanel phiPanel;
20 ScaledNumericPanel magnitudePanel;
52 …contentPanel.add( magnitudePanel = new ScaledNumericPanel(editor, aValue == null ? null: aValue.st… in initializeComponents()
57 …contentPanel.add(phiPanel = new ScaledNumericPanel(editor, aValue == null ? null: aValue.phiValue,… in initializeComponents()
62 …contentPanel.add(thetaPanel = new ScaledNumericPanel(editor, aValue == null ? null: aValue.thetaVa… in initializeComponents()
85 public ScaledNumericPanel getThetaPanel(){ in getThetaPanel()
89 public ScaledNumericPanel getPhiPanel(){ in getPhiPanel()
93 public ScaledNumericPanel getMagnitudePanel(){ in getMagnitudePanel()
DScaledNumericPanel.java37 class ScaledNumericPanel extends ParticleValuePanel<ScaledNumericValue> { class
47 …public ScaledNumericPanel (FlameMain editor, ScaledNumericValue value, String chartTitle, String n… in ScaledNumericPanel() method in ScaledNumericPanel
51 public ScaledNumericPanel (FlameMain editor, ScaledNumericValue value, in ScaledNumericPanel() method in ScaledNumericPanel
136 ScaledNumericPanel.this.value.setLowMin(lowMinSlider.getValue()); in initializeComponents()
137 if (!lowMaxSlider.isVisible()) ScaledNumericPanel.this.value.setLowMax(lowMinSlider.getValue()); in initializeComponents()
142 ScaledNumericPanel.this.value.setLowMax(lowMaxSlider.getValue()); in initializeComponents()
147 ScaledNumericPanel.this.value.setHighMin(highMinSlider.getValue()); in initializeComponents()
148 …if (!highMaxSlider.isVisible()) ScaledNumericPanel.this.value.setHighMax(highMinSlider.getValue()); in initializeComponents()
153 ScaledNumericPanel.this.value.setHighMax(highMaxSlider.getValue()); in initializeComponents()
159 ScaledNumericPanel.this.value.setRelative(relativeCheckBox.isSelected()); in initializeComponents()
[all …]
DRegularEmitterPanel.java18 ScaledNumericPanel emissionPanel,
45 …addContent(i++, 0, emissionPanel = new ScaledNumericPanel(editor, emitter.getEmission(), "Duration… in initializeComponents()
46 …addContent(i++, 0, lifePanel = new ScaledNumericPanel(editor, emitter.getLife(), "Duration", "Life… in initializeComponents()
47 …addContent(i++, 0, lifeOffsetPanel = new ScaledNumericPanel(editor, emitter.getLifeOffset(), "Dura… in initializeComponents()
DScaleInfluencerPanel.java9 ScaledNumericPanel scalePanel;
27 addContent(0, 0, scalePanel = new ScaledNumericPanel(editor, null, "Life", "", "")); in initializeComponents()
DStrengthVelocityPanel.java19 ScaledNumericPanel magnitudePanel;
50 …contentPanel.add( magnitudePanel = new ScaledNumericPanel(editor, null, charTitle, "Strength", "In… in initializeComponents()
DSpawnInfluencerPanel.java63 ScaledNumericPanel widthPanel, heightPanel, depthPanel;
220 …addContent(i++, 0, widthPanel = new ScaledNumericPanel(editor, pointSpawnShapeValue.getSpawnWidth(… in initializeComponents()
221 …addContent(i++, 0, heightPanel = new ScaledNumericPanel(editor, pointSpawnShapeValue.getSpawnWidth… in initializeComponents()
222 …addContent(i++, 0, depthPanel = new ScaledNumericPanel(editor, pointSpawnShapeValue.getSpawnWidth(… in initializeComponents()
/external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/particleeditor/
DParticleEditor.java112 addRow(new ScaledNumericPanel(emitter.getEmission(), "Duration", "Emission", in reloadRows()
114 …addRow(new ScaledNumericPanel(emitter.getLife(), "Duration", "Life", "Time particles will live, in… in reloadRows()
115 addRow(new ScaledNumericPanel(emitter.getLifeOffset(), "Duration", "Life Offset", in reloadRows()
122 addRow(new ScaledNumericPanel(emitter.getSpawnWidth(), "Duration", "Spawn Width", in reloadRows()
124 addRow(new ScaledNumericPanel(emitter.getSpawnHeight(), "Duration", "Spawn Height", in reloadRows()
126 …addRow(new ScaledNumericPanel(emitter.getScale(), "Life", "Size", "Particle size, in world units."… in reloadRows()
127 …addRow(new ScaledNumericPanel(emitter.getVelocity(), "Life", "Velocity", "Particle speed, in world… in reloadRows()
128 …addRow(new ScaledNumericPanel(emitter.getAngle(), "Life", "Angle", "Particle emission angle, in de… in reloadRows()
129 …addRow(new ScaledNumericPanel(emitter.getRotation(), "Life", "Rotation", "Particle rotation, in de… in reloadRows()
130 …addRow(new ScaledNumericPanel(emitter.getWind(), "Life", "Wind", "Wind strength, in world units pe… in reloadRows()
[all …]
DScaledNumericPanel.java36 class ScaledNumericPanel extends EditorPanel { class
47 …public ScaledNumericPanel (final ScaledNumericValue value, String chartTitle, String name, String … in ScaledNumericPanel() method in ScaledNumericPanel