-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6b19a29
commit fc8af5d
Showing
2 changed files
with
28 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.vscode | ||
.mvn | ||
target | ||
target | ||
target/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Simple Animation Rendering Library | ||
|
||
|
||
## External Dependecies: | ||
You will need to install [Raylib](https://github.com/CreedVI/Raylib-J/releases/tag/v0.5.2) and [Processing](https://processing.org/download) jars in your local repository. After you downloaded the library jar you can use this command: | ||
|
||
```bash | ||
$ mvn install:install-file -Dfile=./core/library/core.jar -DgroupId=org.processing -DartifactId=core -Dversion=4.0.0 -Dpackaging=jar | ||
``` | ||
|
||
Same for the raylib jar. | ||
|
||
## Build | ||
|
||
Build a jar | ||
|
||
```bash | ||
$ mvn package | ||
``` | ||
|
||
Then run it | ||
|
||
```bash | ||
$ java -jar ./target/animation-renderer-lib-2.0.0.jar | ||
``` | ||
|