From 9fb93e8f7a494865b057bb8bd378e07009fbd29c Mon Sep 17 00:00:00 2001 From: "rem..om" Date: Sat, 13 Jul 2013 13:25:07 +0000 Subject: [PATCH] SDK LodGenerator Tool, fixed some typos git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10708 75d07b2b-3a1a-0410-a2c5-0572b91ccdca --- .../nodes/actions/impl/GenerateLODVisualPanel1.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/GenerateLODVisualPanel1.java b/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/GenerateLODVisualPanel1.java index cd75ff54e..e685dce7b 100644 --- a/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/GenerateLODVisualPanel1.java +++ b/sdk/jme3-core/src/com/jme3/gde/core/sceneexplorer/nodes/actions/impl/GenerateLODVisualPanel1.java @@ -502,10 +502,10 @@ public final class GenerateLODVisualPanel1 extends JPanel { private void reductionMethodActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_reductionMethodActionPerformed switch ((LodGenerator.TriangleReductionMethod) reductionMethod.getSelectedItem()) { case PROPORTIONAL: - reductionDescription.setText("Enter float values from 0 to 1.\n each values represent the proportion of triangle to remove from the full mesh."); + reductionDescription.setText("Enter float values from 0 to 1.\n each value represent the proportion of triangles to remove from the full mesh."); break; case CONSTANT: - reductionDescription.setText("Enter integrer values from 0 to " + triSize + " of the mesh.\n each values represent the number of triangle to remove from the full mesh. "); + reductionDescription.setText("Enter integrer values from 0 to " + triSize + " of the mesh.\n each value represent the number of triangles to remove from the full mesh. "); break; case COLLAPSE_COST: reductionDescription.setText("Don't use this");