├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── example ├── AnimateSpriteExample.gif ├── app │ ├── .babelrc │ ├── .buckconfig │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .watchmanconfig │ ├── __tests__ │ │ ├── index.android.js │ │ └── index.ios.js │ ├── android │ │ ├── app │ │ │ ├── BUCK │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── animatedspriteexample │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MainApplication.java │ │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── keystores │ │ │ ├── BUCK │ │ │ └── debug.keystore.properties │ │ └── settings.gradle │ ├── index.android.js │ ├── index.ios.js │ ├── ios │ │ ├── AnimatedSpriteExample-tvOS │ │ │ └── Info.plist │ │ ├── AnimatedSpriteExample-tvOSTests │ │ │ └── Info.plist │ │ ├── AnimatedSpriteExample.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── AnimatedSpriteExample-tvOS.xcscheme │ │ │ │ └── AnimatedSpriteExample.xcscheme │ │ ├── AnimatedSpriteExample │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj │ │ │ │ └── LaunchScreen.xib │ │ │ ├── Images.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── main.m │ │ └── AnimatedSpriteExampleTests │ │ │ ├── AnimatedSpriteExampleTests.m │ │ │ └── Info.plist │ ├── package.json │ └── sprites │ │ └── monster │ │ ├── monsterSprite.js │ │ ├── monster_celebrate01.png │ │ ├── monster_celebrate02.png │ │ ├── monster_disgust01.png │ │ ├── monster_eat01.png │ │ ├── monster_eat02.png │ │ ├── monster_idle.png │ │ ├── monster_walk01.png │ │ ├── monster_walk02.png │ │ └── monster_walk03.png ├── rnas │ ├── .babelrc │ ├── .buckconfig │ ├── .flowconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .watchmanconfig │ ├── __tests__ │ │ ├── index.android.js │ │ └── index.ios.js │ ├── android │ │ ├── app │ │ │ ├── BUCK │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── rnas │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MainApplication.java │ │ │ │ └── res │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── keystores │ │ │ ├── BUCK │ │ │ └── debug.keystore.properties │ │ └── settings.gradle │ ├── app.json │ ├── index.android.js │ ├── index.ios.js │ ├── ios │ │ ├── rnas-tvOS │ │ │ └── Info.plist │ │ ├── rnas-tvOSTests │ │ │ └── Info.plist │ │ ├── rnas.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── rnas-tvOS.xcscheme │ │ │ │ └── rnas.xcscheme │ │ ├── rnas │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj │ │ │ │ └── LaunchScreen.xib │ │ │ ├── Images.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── main.m │ │ └── rnasTests │ │ │ ├── Info.plist │ │ │ └── rnasTests.m │ ├── package.json │ ├── sprites │ │ └── monster │ │ │ ├── monsterSprite.js │ │ │ ├── monster_celebrate01.png │ │ │ ├── monster_celebrate02.png │ │ │ ├── monster_disgust01.png │ │ │ ├── monster_eat01.png │ │ │ ├── monster_eat02.png │ │ │ ├── monster_idle.png │ │ │ ├── monster_walk01.png │ │ │ ├── monster_walk02.png │ │ │ └── monster_walk03.png │ └── yarn.lock └── sprites │ └── monster │ ├── monsterSprite.js │ ├── monster_celebrate01.png │ ├── monster_celebrate02.png │ ├── monster_disgust01.png │ ├── monster_eat01.png │ ├── monster_eat02.png │ ├── monster_idle.png │ ├── monster_walk01.png │ ├── monster_walk02.png │ └── monster_walk03.png ├── index.js ├── package.json └── src ├── Tweens └── Tweens.js └── components └── AnimatedSprite.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | 2 | example/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/README.md -------------------------------------------------------------------------------- /example/AnimateSpriteExample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/AnimateSpriteExample.gif -------------------------------------------------------------------------------- /example/app/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /example/app/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/.buckconfig -------------------------------------------------------------------------------- /example/app/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/.flowconfig -------------------------------------------------------------------------------- /example/app/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /example/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/.gitignore -------------------------------------------------------------------------------- /example/app/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/app/__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/__tests__/index.android.js -------------------------------------------------------------------------------- /example/app/__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/__tests__/index.ios.js -------------------------------------------------------------------------------- /example/app/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/android/app/BUCK -------------------------------------------------------------------------------- /example/app/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/android/app/build.gradle -------------------------------------------------------------------------------- /example/app/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/app/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/app/android/app/src/main/java/com/animatedspriteexample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/android/app/src/main/java/com/animatedspriteexample/MainActivity.java -------------------------------------------------------------------------------- /example/app/android/app/src/main/java/com/animatedspriteexample/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/android/app/src/main/java/com/animatedspriteexample/MainApplication.java -------------------------------------------------------------------------------- /example/app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/app/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/app/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/app/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/android/build.gradle -------------------------------------------------------------------------------- /example/app/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/android/gradle.properties -------------------------------------------------------------------------------- /example/app/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/app/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/app/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/android/gradlew -------------------------------------------------------------------------------- /example/app/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/android/gradlew.bat -------------------------------------------------------------------------------- /example/app/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/android/keystores/BUCK -------------------------------------------------------------------------------- /example/app/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /example/app/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'AnimatedSpriteExample' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /example/app/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/index.android.js -------------------------------------------------------------------------------- /example/app/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/index.ios.js -------------------------------------------------------------------------------- /example/app/ios/AnimatedSpriteExample-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/ios/AnimatedSpriteExample-tvOS/Info.plist -------------------------------------------------------------------------------- /example/app/ios/AnimatedSpriteExample-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/ios/AnimatedSpriteExample-tvOSTests/Info.plist -------------------------------------------------------------------------------- /example/app/ios/AnimatedSpriteExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/ios/AnimatedSpriteExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/app/ios/AnimatedSpriteExample.xcodeproj/xcshareddata/xcschemes/AnimatedSpriteExample-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/ios/AnimatedSpriteExample.xcodeproj/xcshareddata/xcschemes/AnimatedSpriteExample-tvOS.xcscheme -------------------------------------------------------------------------------- /example/app/ios/AnimatedSpriteExample.xcodeproj/xcshareddata/xcschemes/AnimatedSpriteExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/ios/AnimatedSpriteExample.xcodeproj/xcshareddata/xcschemes/AnimatedSpriteExample.xcscheme -------------------------------------------------------------------------------- /example/app/ios/AnimatedSpriteExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/ios/AnimatedSpriteExample/AppDelegate.h -------------------------------------------------------------------------------- /example/app/ios/AnimatedSpriteExample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/ios/AnimatedSpriteExample/AppDelegate.m -------------------------------------------------------------------------------- /example/app/ios/AnimatedSpriteExample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/ios/AnimatedSpriteExample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /example/app/ios/AnimatedSpriteExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/ios/AnimatedSpriteExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/app/ios/AnimatedSpriteExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/ios/AnimatedSpriteExample/Info.plist -------------------------------------------------------------------------------- /example/app/ios/AnimatedSpriteExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/ios/AnimatedSpriteExample/main.m -------------------------------------------------------------------------------- /example/app/ios/AnimatedSpriteExampleTests/AnimatedSpriteExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/ios/AnimatedSpriteExampleTests/AnimatedSpriteExampleTests.m -------------------------------------------------------------------------------- /example/app/ios/AnimatedSpriteExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/ios/AnimatedSpriteExampleTests/Info.plist -------------------------------------------------------------------------------- /example/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/package.json -------------------------------------------------------------------------------- /example/app/sprites/monster/monsterSprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/sprites/monster/monsterSprite.js -------------------------------------------------------------------------------- /example/app/sprites/monster/monster_celebrate01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/sprites/monster/monster_celebrate01.png -------------------------------------------------------------------------------- /example/app/sprites/monster/monster_celebrate02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/sprites/monster/monster_celebrate02.png -------------------------------------------------------------------------------- /example/app/sprites/monster/monster_disgust01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/sprites/monster/monster_disgust01.png -------------------------------------------------------------------------------- /example/app/sprites/monster/monster_eat01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/sprites/monster/monster_eat01.png -------------------------------------------------------------------------------- /example/app/sprites/monster/monster_eat02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/sprites/monster/monster_eat02.png -------------------------------------------------------------------------------- /example/app/sprites/monster/monster_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/sprites/monster/monster_idle.png -------------------------------------------------------------------------------- /example/app/sprites/monster/monster_walk01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/sprites/monster/monster_walk01.png -------------------------------------------------------------------------------- /example/app/sprites/monster/monster_walk02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/sprites/monster/monster_walk02.png -------------------------------------------------------------------------------- /example/app/sprites/monster/monster_walk03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/app/sprites/monster/monster_walk03.png -------------------------------------------------------------------------------- /example/rnas/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /example/rnas/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/.buckconfig -------------------------------------------------------------------------------- /example/rnas/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/.flowconfig -------------------------------------------------------------------------------- /example/rnas/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /example/rnas/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/.gitignore -------------------------------------------------------------------------------- /example/rnas/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /example/rnas/__tests__/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/__tests__/index.android.js -------------------------------------------------------------------------------- /example/rnas/__tests__/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/__tests__/index.ios.js -------------------------------------------------------------------------------- /example/rnas/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/android/app/BUCK -------------------------------------------------------------------------------- /example/rnas/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/android/app/build.gradle -------------------------------------------------------------------------------- /example/rnas/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/rnas/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/rnas/android/app/src/main/java/com/rnas/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/android/app/src/main/java/com/rnas/MainActivity.java -------------------------------------------------------------------------------- /example/rnas/android/app/src/main/java/com/rnas/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/android/app/src/main/java/com/rnas/MainApplication.java -------------------------------------------------------------------------------- /example/rnas/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/rnas/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/rnas/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/rnas/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example/rnas/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/rnas/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/rnas/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/android/build.gradle -------------------------------------------------------------------------------- /example/rnas/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/android/gradle.properties -------------------------------------------------------------------------------- /example/rnas/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/rnas/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/rnas/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/android/gradlew -------------------------------------------------------------------------------- /example/rnas/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/android/gradlew.bat -------------------------------------------------------------------------------- /example/rnas/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/android/keystores/BUCK -------------------------------------------------------------------------------- /example/rnas/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /example/rnas/android/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'rnas' 2 | 3 | include ':app' 4 | -------------------------------------------------------------------------------- /example/rnas/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/app.json -------------------------------------------------------------------------------- /example/rnas/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/index.android.js -------------------------------------------------------------------------------- /example/rnas/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/index.ios.js -------------------------------------------------------------------------------- /example/rnas/ios/rnas-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/ios/rnas-tvOS/Info.plist -------------------------------------------------------------------------------- /example/rnas/ios/rnas-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/ios/rnas-tvOSTests/Info.plist -------------------------------------------------------------------------------- /example/rnas/ios/rnas.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/ios/rnas.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/rnas/ios/rnas.xcodeproj/xcshareddata/xcschemes/rnas-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/ios/rnas.xcodeproj/xcshareddata/xcschemes/rnas-tvOS.xcscheme -------------------------------------------------------------------------------- /example/rnas/ios/rnas.xcodeproj/xcshareddata/xcschemes/rnas.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/ios/rnas.xcodeproj/xcshareddata/xcschemes/rnas.xcscheme -------------------------------------------------------------------------------- /example/rnas/ios/rnas/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/ios/rnas/AppDelegate.h -------------------------------------------------------------------------------- /example/rnas/ios/rnas/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/ios/rnas/AppDelegate.m -------------------------------------------------------------------------------- /example/rnas/ios/rnas/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/ios/rnas/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /example/rnas/ios/rnas/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/ios/rnas/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/rnas/ios/rnas/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/ios/rnas/Info.plist -------------------------------------------------------------------------------- /example/rnas/ios/rnas/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/ios/rnas/main.m -------------------------------------------------------------------------------- /example/rnas/ios/rnasTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/ios/rnasTests/Info.plist -------------------------------------------------------------------------------- /example/rnas/ios/rnasTests/rnasTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/ios/rnasTests/rnasTests.m -------------------------------------------------------------------------------- /example/rnas/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/package.json -------------------------------------------------------------------------------- /example/rnas/sprites/monster/monsterSprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/sprites/monster/monsterSprite.js -------------------------------------------------------------------------------- /example/rnas/sprites/monster/monster_celebrate01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/sprites/monster/monster_celebrate01.png -------------------------------------------------------------------------------- /example/rnas/sprites/monster/monster_celebrate02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/sprites/monster/monster_celebrate02.png -------------------------------------------------------------------------------- /example/rnas/sprites/monster/monster_disgust01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/sprites/monster/monster_disgust01.png -------------------------------------------------------------------------------- /example/rnas/sprites/monster/monster_eat01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/sprites/monster/monster_eat01.png -------------------------------------------------------------------------------- /example/rnas/sprites/monster/monster_eat02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/sprites/monster/monster_eat02.png -------------------------------------------------------------------------------- /example/rnas/sprites/monster/monster_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/sprites/monster/monster_idle.png -------------------------------------------------------------------------------- /example/rnas/sprites/monster/monster_walk01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/sprites/monster/monster_walk01.png -------------------------------------------------------------------------------- /example/rnas/sprites/monster/monster_walk02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/sprites/monster/monster_walk02.png -------------------------------------------------------------------------------- /example/rnas/sprites/monster/monster_walk03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/sprites/monster/monster_walk03.png -------------------------------------------------------------------------------- /example/rnas/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/rnas/yarn.lock -------------------------------------------------------------------------------- /example/sprites/monster/monsterSprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/sprites/monster/monsterSprite.js -------------------------------------------------------------------------------- /example/sprites/monster/monster_celebrate01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/sprites/monster/monster_celebrate01.png -------------------------------------------------------------------------------- /example/sprites/monster/monster_celebrate02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/sprites/monster/monster_celebrate02.png -------------------------------------------------------------------------------- /example/sprites/monster/monster_disgust01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/sprites/monster/monster_disgust01.png -------------------------------------------------------------------------------- /example/sprites/monster/monster_eat01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/sprites/monster/monster_eat01.png -------------------------------------------------------------------------------- /example/sprites/monster/monster_eat02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/sprites/monster/monster_eat02.png -------------------------------------------------------------------------------- /example/sprites/monster/monster_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/sprites/monster/monster_idle.png -------------------------------------------------------------------------------- /example/sprites/monster/monster_walk01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/sprites/monster/monster_walk01.png -------------------------------------------------------------------------------- /example/sprites/monster/monster_walk02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/sprites/monster/monster_walk02.png -------------------------------------------------------------------------------- /example/sprites/monster/monster_walk03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/example/sprites/monster/monster_walk03.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/package.json -------------------------------------------------------------------------------- /src/Tweens/Tweens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/src/Tweens/Tweens.js -------------------------------------------------------------------------------- /src/components/AnimatedSprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micahrye/react-native-animated-sprite/HEAD/src/components/AnimatedSprite.js --------------------------------------------------------------------------------