Skip to content

Commit

Permalink
Merge pull request #590 from capdevon/capdevon-JmeVehicleWheel
Browse files Browse the repository at this point in the history
Fix JmeVehicleWheel: wrong Sheet.Set name
  • Loading branch information
tonihele authored Apr 3, 2024
2 parents 8a5aa12 + d66c467 commit 7979eb5
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
import com.jme3.bullet.objects.VehicleWheel;
import com.jme3.gde.core.icons.IconList;
import com.jme3.gde.core.scene.SceneApplication;
import com.jme3.light.Light;
import com.jme3.math.Vector3f;
import java.awt.Image;
import java.io.IOException;
Expand Down Expand Up @@ -87,7 +86,7 @@ protected Sheet createSheet() {
Sheet sheet = Sheet.createDefault();
Sheet.Set set = Sheet.createPropertiesSet();
set.setDisplayName("VehicleWheel");
set.setName(Light.class.getName());
set.setName(VehicleWheel.class.getName());
VehicleWheel obj = wheel;
if (obj == null) {
return sheet;
Expand Down

0 comments on commit 7979eb5

Please sign in to comment.