├── .gitignore ├── README.md ├── android ├── AndroidManifest.xml ├── assets │ └── badlogic.jpg ├── build.gradle ├── ic_launcher-web.png ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ └── values │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── roaringcatgames │ └── testgame │ └── android │ └── AndroidLauncher.java ├── core ├── build.gradle └── src │ ├── BrownieBouncer.gwt.xml │ └── com │ └── roaringcatgames │ └── testgame │ ├── Assets.java │ ├── BrownieBouncer.java │ ├── GameScreen.java │ ├── IScreenDispatcher.java │ ├── ScreenDispatcher.java │ ├── SplashScreen.java │ ├── components │ ├── AnimationComponent.java │ ├── BodyComponent.java │ ├── PuffinComponent.java │ ├── StateComponent.java │ ├── TextureComponent.java │ └── TransformComponent.java │ └── systems │ ├── AnimationSystem.java │ ├── PhysicsDebugSystem.java │ ├── PhysicsSystem.java │ ├── RenderingSystem.java │ ├── UselessStateSwapSystem.java │ └── ZComparator.java ├── desktop ├── build.gradle └── src │ └── com │ └── roaringcatgames │ └── testgame │ └── desktop │ └── DesktopLauncher.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── html ├── build.gradle ├── src │ └── com │ │ └── roaringcatgames │ │ └── testgame │ │ ├── GdxDefinition.gwt.xml │ │ ├── GdxDefinitionSuperdev.gwt.xml │ │ └── client │ │ └── HtmlLauncher.java └── webapp │ ├── WEB-INF │ └── web.xml │ ├── index.html │ ├── refresh.png │ ├── soundmanager2-jsmin.js │ ├── soundmanager2-setup.js │ └── styles.css ├── ios ├── Info.plist.xml ├── build.gradle ├── data │ ├── Default-375w-667h@2x.png │ ├── Default-414w-736h@3x.png │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Default@2x~ipad.png │ ├── Default~ipad.png │ ├── Icon-72.png │ ├── Icon-72@2x.png │ ├── Icon.png │ └── Icon@2x.png ├── robovm-build │ └── xcode │ │ └── .ib │ │ ├── Prefix.pch │ │ └── brownie-bouncer.ios.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ │ └── robovm.plist ├── robovm.properties ├── robovm.xml └── src │ └── com │ └── roaringcatgames │ └── testgame │ └── IOSLauncher.java ├── screenshots ├── falling1.png └── falling2.png ├── settings.gradle └── texture-packer ├── animations └── puffin │ ├── puffin_000.png │ ├── puffin_001.png │ ├── puffin_002.png │ ├── puffin_003.png │ ├── puffin_004.png │ ├── puffin_005.png │ ├── puffin_006.png │ ├── puffin_007.png │ ├── puffin_008.png │ ├── puffin_009.png │ ├── puffin_010.png │ ├── puffin_011.png │ ├── puffin_012.png │ ├── puffin_013.png │ ├── puffin_014.png │ ├── puffin_015.png │ ├── runnin_000.png │ ├── runnin_001.png │ ├── runnin_002.png │ ├── runnin_003.png │ ├── runnin_004.png │ ├── runnin_005.png │ ├── runnin_006.png │ ├── runnin_007.png │ ├── runnin_008.png │ ├── runnin_009.png │ ├── runnin_010.png │ ├── runnin_011.png │ ├── runnin_012.png │ ├── runnin_013.png │ ├── runnin_014.png │ └── runnin_015.png ├── build.gradle └── src └── GameTexturePacker.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/README.md -------------------------------------------------------------------------------- /android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/android/AndroidManifest.xml -------------------------------------------------------------------------------- /android/assets/badlogic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/android/assets/badlogic.jpg -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/android/ic_launcher-web.png -------------------------------------------------------------------------------- /android/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/android/proguard-project.txt -------------------------------------------------------------------------------- /android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/android/project.properties -------------------------------------------------------------------------------- /android/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/android/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/android/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/android/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/android/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/android/res/values/strings.xml -------------------------------------------------------------------------------- /android/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/android/res/values/styles.xml -------------------------------------------------------------------------------- /android/src/com/roaringcatgames/testgame/android/AndroidLauncher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/android/src/com/roaringcatgames/testgame/android/AndroidLauncher.java -------------------------------------------------------------------------------- /core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/core/build.gradle -------------------------------------------------------------------------------- /core/src/BrownieBouncer.gwt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/core/src/BrownieBouncer.gwt.xml -------------------------------------------------------------------------------- /core/src/com/roaringcatgames/testgame/Assets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/core/src/com/roaringcatgames/testgame/Assets.java -------------------------------------------------------------------------------- /core/src/com/roaringcatgames/testgame/BrownieBouncer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/core/src/com/roaringcatgames/testgame/BrownieBouncer.java -------------------------------------------------------------------------------- /core/src/com/roaringcatgames/testgame/GameScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/core/src/com/roaringcatgames/testgame/GameScreen.java -------------------------------------------------------------------------------- /core/src/com/roaringcatgames/testgame/IScreenDispatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/core/src/com/roaringcatgames/testgame/IScreenDispatcher.java -------------------------------------------------------------------------------- /core/src/com/roaringcatgames/testgame/ScreenDispatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/core/src/com/roaringcatgames/testgame/ScreenDispatcher.java -------------------------------------------------------------------------------- /core/src/com/roaringcatgames/testgame/SplashScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/core/src/com/roaringcatgames/testgame/SplashScreen.java -------------------------------------------------------------------------------- /core/src/com/roaringcatgames/testgame/components/AnimationComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/core/src/com/roaringcatgames/testgame/components/AnimationComponent.java -------------------------------------------------------------------------------- /core/src/com/roaringcatgames/testgame/components/BodyComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/core/src/com/roaringcatgames/testgame/components/BodyComponent.java -------------------------------------------------------------------------------- /core/src/com/roaringcatgames/testgame/components/PuffinComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/core/src/com/roaringcatgames/testgame/components/PuffinComponent.java -------------------------------------------------------------------------------- /core/src/com/roaringcatgames/testgame/components/StateComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/core/src/com/roaringcatgames/testgame/components/StateComponent.java -------------------------------------------------------------------------------- /core/src/com/roaringcatgames/testgame/components/TextureComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/core/src/com/roaringcatgames/testgame/components/TextureComponent.java -------------------------------------------------------------------------------- /core/src/com/roaringcatgames/testgame/components/TransformComponent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/core/src/com/roaringcatgames/testgame/components/TransformComponent.java -------------------------------------------------------------------------------- /core/src/com/roaringcatgames/testgame/systems/AnimationSystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/core/src/com/roaringcatgames/testgame/systems/AnimationSystem.java -------------------------------------------------------------------------------- /core/src/com/roaringcatgames/testgame/systems/PhysicsDebugSystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/core/src/com/roaringcatgames/testgame/systems/PhysicsDebugSystem.java -------------------------------------------------------------------------------- /core/src/com/roaringcatgames/testgame/systems/PhysicsSystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/core/src/com/roaringcatgames/testgame/systems/PhysicsSystem.java -------------------------------------------------------------------------------- /core/src/com/roaringcatgames/testgame/systems/RenderingSystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/core/src/com/roaringcatgames/testgame/systems/RenderingSystem.java -------------------------------------------------------------------------------- /core/src/com/roaringcatgames/testgame/systems/UselessStateSwapSystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/core/src/com/roaringcatgames/testgame/systems/UselessStateSwapSystem.java -------------------------------------------------------------------------------- /core/src/com/roaringcatgames/testgame/systems/ZComparator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/core/src/com/roaringcatgames/testgame/systems/ZComparator.java -------------------------------------------------------------------------------- /desktop/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/desktop/build.gradle -------------------------------------------------------------------------------- /desktop/src/com/roaringcatgames/testgame/desktop/DesktopLauncher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/desktop/src/com/roaringcatgames/testgame/desktop/DesktopLauncher.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/gradlew.bat -------------------------------------------------------------------------------- /html/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/html/build.gradle -------------------------------------------------------------------------------- /html/src/com/roaringcatgames/testgame/GdxDefinition.gwt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/html/src/com/roaringcatgames/testgame/GdxDefinition.gwt.xml -------------------------------------------------------------------------------- /html/src/com/roaringcatgames/testgame/GdxDefinitionSuperdev.gwt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/html/src/com/roaringcatgames/testgame/GdxDefinitionSuperdev.gwt.xml -------------------------------------------------------------------------------- /html/src/com/roaringcatgames/testgame/client/HtmlLauncher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/html/src/com/roaringcatgames/testgame/client/HtmlLauncher.java -------------------------------------------------------------------------------- /html/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/html/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /html/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/html/webapp/index.html -------------------------------------------------------------------------------- /html/webapp/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/html/webapp/refresh.png -------------------------------------------------------------------------------- /html/webapp/soundmanager2-jsmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/html/webapp/soundmanager2-jsmin.js -------------------------------------------------------------------------------- /html/webapp/soundmanager2-setup.js: -------------------------------------------------------------------------------- 1 | window.SM2_DEFER = true; -------------------------------------------------------------------------------- /html/webapp/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/html/webapp/styles.css -------------------------------------------------------------------------------- /ios/Info.plist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/ios/Info.plist.xml -------------------------------------------------------------------------------- /ios/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/ios/build.gradle -------------------------------------------------------------------------------- /ios/data/Default-375w-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/ios/data/Default-375w-667h@2x.png -------------------------------------------------------------------------------- /ios/data/Default-414w-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/ios/data/Default-414w-736h@3x.png -------------------------------------------------------------------------------- /ios/data/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/ios/data/Default-568h@2x.png -------------------------------------------------------------------------------- /ios/data/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/ios/data/Default.png -------------------------------------------------------------------------------- /ios/data/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/ios/data/Default@2x.png -------------------------------------------------------------------------------- /ios/data/Default@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/ios/data/Default@2x~ipad.png -------------------------------------------------------------------------------- /ios/data/Default~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/ios/data/Default~ipad.png -------------------------------------------------------------------------------- /ios/data/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/ios/data/Icon-72.png -------------------------------------------------------------------------------- /ios/data/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/ios/data/Icon-72@2x.png -------------------------------------------------------------------------------- /ios/data/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/ios/data/Icon.png -------------------------------------------------------------------------------- /ios/data/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/ios/data/Icon@2x.png -------------------------------------------------------------------------------- /ios/robovm-build/xcode/.ib/Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/ios/robovm-build/xcode/.ib/Prefix.pch -------------------------------------------------------------------------------- /ios/robovm-build/xcode/.ib/brownie-bouncer.ios.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/ios/robovm-build/xcode/.ib/brownie-bouncer.ios.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/robovm-build/xcode/.ib/brownie-bouncer.ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/ios/robovm-build/xcode/.ib/brownie-bouncer.ios.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/robovm-build/xcode/.ib/brownie-bouncer.ios.xcodeproj/robovm.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/ios/robovm-build/xcode/.ib/brownie-bouncer.ios.xcodeproj/robovm.plist -------------------------------------------------------------------------------- /ios/robovm.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/ios/robovm.properties -------------------------------------------------------------------------------- /ios/robovm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/ios/robovm.xml -------------------------------------------------------------------------------- /ios/src/com/roaringcatgames/testgame/IOSLauncher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/ios/src/com/roaringcatgames/testgame/IOSLauncher.java -------------------------------------------------------------------------------- /screenshots/falling1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/screenshots/falling1.png -------------------------------------------------------------------------------- /screenshots/falling2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/screenshots/falling2.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/settings.gradle -------------------------------------------------------------------------------- /texture-packer/animations/puffin/puffin_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/puffin_000.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/puffin_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/puffin_001.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/puffin_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/puffin_002.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/puffin_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/puffin_003.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/puffin_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/puffin_004.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/puffin_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/puffin_005.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/puffin_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/puffin_006.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/puffin_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/puffin_007.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/puffin_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/puffin_008.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/puffin_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/puffin_009.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/puffin_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/puffin_010.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/puffin_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/puffin_011.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/puffin_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/puffin_012.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/puffin_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/puffin_013.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/puffin_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/puffin_014.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/puffin_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/puffin_015.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/runnin_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/runnin_000.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/runnin_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/runnin_001.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/runnin_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/runnin_002.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/runnin_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/runnin_003.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/runnin_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/runnin_004.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/runnin_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/runnin_005.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/runnin_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/runnin_006.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/runnin_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/runnin_007.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/runnin_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/runnin_008.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/runnin_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/runnin_009.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/runnin_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/runnin_010.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/runnin_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/runnin_011.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/runnin_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/runnin_012.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/runnin_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/runnin_013.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/runnin_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/runnin_014.png -------------------------------------------------------------------------------- /texture-packer/animations/puffin/runnin_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/animations/puffin/runnin_015.png -------------------------------------------------------------------------------- /texture-packer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/build.gradle -------------------------------------------------------------------------------- /texture-packer/src/GameTexturePacker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoaringCatGames/libgdx-ashley-box2d-example/HEAD/texture-packer/src/GameTexturePacker.java --------------------------------------------------------------------------------