We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40c44f9 commit b1b6aceCopy full SHA for b1b6ace
1 file changed
src/main/java/org/openpatch/scratch/extensions/package-info.java
@@ -1,4 +1,16 @@
1
/**
2
+ * This package contains extensions for Scratch for Java.
3
+ *
4
+ * For example, it includes extensions for animations:
5
6
+ * <pre>{@code
7
+ * import org.openpatch.scratch.extensions.animation.AnimatedSprite;
8
9
+ * AnimatedSprite sprite = new AnimatedSprite();
10
+ * sprite.addAnimation("walk", "assets/walk_%d.png", 4);
11
+ * sprite.playAnimation("walk");
12
+ * }</pre>
13
14
* @name-in-docs Extensions
15
* @index-in-docs 4
16
*/
0 commit comments