Skip to content

Commit 1896321

Browse files
authored
Merge pull request #6 from payne911/dev
Feature addition: AnimatedRadialGroup
2 parents 0b42fc8 + ec35eaf commit 1896321

File tree

8 files changed

+379
-20
lines changed

8 files changed

+379
-20
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ To use this in your gradle project, add the version number and jitpack repositor
6262
allprojects {
6363
6464
ext {
65-
...
66-
pieMenuVersion = '4.0.0' // add this line
65+
...
66+
pieMenuVersion = '4.1.0' // add this line
6767
}
6868
6969
repositories {
70-
...
71-
maven { url 'https://jitpack.io' } // add this line if it wasn't already there
70+
...
71+
maven { url 'https://jitpack.io' }
7272
}
7373
}
7474
```

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ apply from: 'publish.gradle'
1919
sourceCompatibility = 1.8
2020

2121
def projectName = 'pie-menu'
22-
version '4.0.0'
22+
version '4.1.0'
2323
group 'com.payne.games'
2424

2525
def gdxVersion = '1.9.10'

src/main/java/com/payne/games/piemenu/AnimatedPieMenu.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,14 @@
2828
* that is why you might end up not seeing the widget despite setting its
2929
* visibility to {@code true} if you haven't called the recommended line of code
3030
* provided above.
31+
*
32+
* @deprecated Once {@link com.badlogic.gdx.scenes.scene2d.Action Actions} are
33+
* integrated into the library, this class will become obsolete. However,
34+
* the implementation is very easy to use, so it might remain in the code base
35+
* despite Actions being integrated. The reason behind the deprecation is mostly
36+
* because the Animated classes are a hassle to maintain. It's thus more of a
37+
* code-design decision. For users, this is still a very nice class to work with.
38+
* @author Jérémi Grenier-Berthiaume (aka "payne")
3139
*/
3240
@Deprecated
3341
public class AnimatedPieMenu extends PieMenu {

src/main/java/com/payne/games/piemenu/AnimatedPieWidget.java

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313
/**
14-
* An animated {@link RadialGroup}.<br>
14+
* An animated {@link PieWidget}.<br>
1515
* A very simple folding/unfolding animation can be displayed whenever desired.<br>
1616
* Internally uses a {@link #currentAngle} attribute that is used for transitions
1717
* between states. Because of that, using {@link #setVisible(boolean)} might not
@@ -28,6 +28,14 @@
2828
* that is why you might end up not seeing the widget despite setting its
2929
* visibility to {@code true} if you haven't called the recommended line of code
3030
* provided above.
31+
*
32+
* @deprecated Once {@link com.badlogic.gdx.scenes.scene2d.Action Actions} are
33+
* integrated into the library, this class will become obsolete. However,
34+
* the implementation is very easy to use, so it might remain in the code base
35+
* despite Actions being integrated. The reason behind the deprecation is mostly
36+
* because the Animated classes are a hassle to maintain. It's thus more of a
37+
* code-design decision. For users, this is still a very nice class to work with.
38+
* @author Jérémi Grenier-Berthiaume (aka "payne")
3139
*/
3240
@Deprecated
3341
public class AnimatedPieWidget extends PieWidget {

0 commit comments

Comments
 (0)