Changed a bunch of variables to use bitwise shift instead of multiplication and division

This commit is contained in:
2020-04-08 06:43:02 -06:00
parent 4e38fd9da5
commit 5ffa837f50
21 changed files with 241 additions and 166 deletions

View File

@@ -0,0 +1,27 @@
Gdx Texture Packer GUI
Simple utility to help you pack and manage texture atlases for LibGDX game framework. It's mostly just visual wrapper over LibGDX TexturePacker classes and offers more convenient way of using it.
For further details visit GitHub project page:
https://github.com/crashinvaders/gdx-texture-packer-gui
Requirements:
- Java 7 JRE (or higher) (can be donwnloaded here http://www.oracle.com/technetwork/java/javase/downloads/index.html)
- OpenGL support
How to launch:
Application is packed into JAR executable file. To launch it, issue next command
java -jar gdx-texturepacker.jar
MacOS and UNIX
You may execute launch.sh bash script to launch application
Windows
launch.bat - starts application
launcher_no_cmd.vbs - does exactly what launch.bat does, but CMD window won't appear in that case
If you got any questions or would like to share some ideas, reach me out at anton@crashinvaders.com
Hope you will enjoy it!
Anton Chekulaev