Skip to content

Commit d727670

Browse files
committed
Updated README.
1 parent 37d9bb3 commit d727670

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
---
88

9-
A library for [libGDX](https://libgdx.badlogicgames.com/), an open-source game development application framework written in Java.
9+
A library to obtain a circular WidgetGroup within [libGDX](https://libgdx.badlogicgames.com/), an open-source game development application framework written in Java.
1010

1111
Aims at providing users with the so-called `RadialGroup`: it is a simple container that places its children `Actors` in a circular fashion.
1212

@@ -99,7 +99,7 @@ The basic idea looks like this:
9999
/* Setting up and creating the widget. */
100100
PieMenu.PieMenuStyle style = new PieMenu.PieMenuStyle();
101101
style.sliceColor = new Color(.33f,.33f,.33f,1); // "style" variables affect the way the widget looks
102-
PieMenu menu = new PieMenu(batch, skin.getRegion("white"), style, 80); // "white" would be a 1x1 white pixel
102+
PieMenu menu = new PieMenu(skin.getRegion("white"), style, 80); // "white" would be a 1x1 white pixel
103103

104104
/* Adding a listener. */
105105
menu.addListener(new ChangeListener() {
@@ -122,7 +122,7 @@ stage.addActor(menu);
122122
And *voilà*!
123123

124124
### [Wiki](https://github.com/payne911/PieMenu/wiki)
125-
This library offers you many types of behaviors related to pie menus. Many of those are well-documented in the Wiki (with description, code and gif), so make sure to check it out.
125+
This library offers you many types of behaviors related to pie-menus. Many of those are well-documented in the Wiki (with description, code and gif), so make sure to check it out.
126126

127127
More specifically, you might be interested in:
128128
* [Complete examples of code](https://github.com/payne911/PieMenu/wiki/Examples), along with textual descriptions of the expected behavior

0 commit comments

Comments
 (0)