Skip to content

Commit

Permalink
Fix JmeVehicleWheel: wrong Sheet.Set name
Browse files Browse the repository at this point in the history
  • Loading branch information
capdevon authored Mar 28, 2024
1 parent 4a1465a commit d66c467
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 d66c467

Please sign in to comment.