diff options
author | Joshua Slack <[email protected]> | 2017-09-11 12:44:59 -0500 |
---|---|---|
committer | Joshua Slack <[email protected]> | 2017-09-11 12:44:59 -0500 |
commit | 32c3c21a2f63261ac778b1362b9c183e600ba710 (patch) | |
tree | 1f57f417a041d2a41ebf53c02b7f578b4dc22198 /ardor3d-examples/src | |
parent | 90fa0f6c4997d65e5c5980cd1602956d62cc83c8 (diff) |
Added state cleanup to popup components.
Prettied up the PieMenu skin a bit.
Diffstat (limited to 'ardor3d-examples/src')
-rw-r--r-- | ardor3d-examples/src/main/java/com/ardor3d/example/ui/InteractUIExample.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ardor3d-examples/src/main/java/com/ardor3d/example/ui/InteractUIExample.java b/ardor3d-examples/src/main/java/com/ardor3d/example/ui/InteractUIExample.java index 03d7a75..e93cf93 100644 --- a/ardor3d-examples/src/main/java/com/ardor3d/example/ui/InteractUIExample.java +++ b/ardor3d-examples/src/main/java/com/ardor3d/example/ui/InteractUIExample.java @@ -332,7 +332,7 @@ public class InteractUIExample extends ExampleBase { protected void showMenu() { if (menu == null) { - menu = new UIPieMenu(hud); + menu = new UIPieMenu(hud, 100); menu.addItem(new UIPieMenuItem("Add Node After", null, true, new ActionListener() { @Override public void actionPerformed(final ActionEvent event) { |