├── .gitignore ├── Game assets ├── Overlays │ ├── FlowerEmpty.png │ ├── FlowerFull.png │ ├── ItemsPearl.png │ ├── MaxIcon.png │ ├── congratulations.png │ ├── congratulations_pandaMax.png │ └── dpad.png ├── Particle systems │ ├── collect.scnp │ ├── confetti.png │ ├── confetti.scnp │ └── glow01.png └── game.scnassets │ ├── bamboo.scn │ ├── bamboos.scn │ ├── bloc.scn │ ├── enemy.scn │ ├── flower.scn │ ├── grass.scn │ ├── level.scn │ ├── panda.scn │ ├── particles.scn │ ├── pearl.scn │ ├── skybox │ └── skybox01_cube.png │ ├── sounds │ ├── Music_victory.mp3 │ ├── Step_grass_00.mp3 │ ├── Step_grass_01.mp3 │ ├── Step_grass_02.mp3 │ ├── Step_grass_03.mp3 │ ├── Step_grass_04.mp3 │ ├── Step_grass_05.mp3 │ ├── Step_grass_06.mp3 │ ├── Step_grass_07.mp3 │ ├── Step_grass_08.mp3 │ ├── Step_grass_09.mp3 │ ├── Step_rock_00.mp3 │ ├── Step_rock_01.mp3 │ ├── Step_rock_02.mp3 │ ├── Step_rock_03.mp3 │ ├── Step_rock_04.mp3 │ ├── Step_rock_05.mp3 │ ├── Step_rock_06.mp3 │ ├── Step_rock_07.mp3 │ ├── Step_rock_08.mp3 │ ├── Step_rock_09.mp3 │ ├── Step_splash_00.mp3 │ ├── Step_splash_01.mp3 │ ├── Step_splash_02.mp3 │ ├── Step_splash_03.mp3 │ ├── aah_extinction.mp3 │ ├── collect1.mp3 │ ├── collect2.mp3 │ ├── fire_extinction.mp3 │ ├── flamethrower.mp3 │ ├── hit.mp3 │ ├── music.m4a │ ├── ouch_firehit.mp3 │ ├── panda_catch_fire.mp3 │ ├── stone_roll.mp3 │ └── wind.m4a │ ├── stoneShell01.scn │ ├── stoneShell02.scn │ ├── stoneShell03.scn │ ├── textures │ ├── bamboo_leaves_diffuse.png │ ├── bamboo_leaves_diffuse.pvrtc │ ├── bamboo_trunk_diffuse.png │ ├── bamboo_trunk_diffuse.pvrtc │ ├── bokeh.png │ ├── fire.png │ ├── flameThrower_ambient.png │ ├── flameThrower_ambient.pvrtc │ ├── flameThrower_base_diffuse.png │ ├── flameThrower_base_diffuse.pvrtc │ ├── flameThrower_diffuse.png │ ├── flameThrower_diffuse.pvrtc │ ├── flameThrower_normal.png │ ├── flameThrower_normal.pvrtc │ ├── flameThrower_specular.png │ ├── flameThrower_specular.pvrtc │ ├── flower_ambiant.png │ ├── flower_diffuse.png │ ├── flower_diffuse.pvrtc │ ├── flower_normal.png │ ├── flower_normal.pvrtc │ ├── glow_ellipse.png │ ├── grass.png │ ├── grass.pvrtc │ ├── grass_ambient.png │ ├── grass_diffuse.png │ ├── grass_diffuse.pvrtc │ ├── grass_specular.png │ ├── grass_specular.pvrtc │ ├── ground_diffuse.png │ ├── ground_diffuse.pvrtc │ ├── ground_normal.png │ ├── ground_normal.pvrtc │ ├── ground_specular.png │ ├── ground_specular.pvrtc │ ├── lightmap.png │ ├── max_ambiant.png │ ├── max_diffuse.png │ ├── max_specular.png │ ├── moss_diffuse.png │ ├── moss_diffuse.pvrtc │ ├── moss_round_diffuse.png │ ├── moss_round_diffuse.pvrtc │ ├── moss_round_specular.png │ ├── moss_round_specular.pvrtc │ ├── moss_specular.png │ ├── moss_specular.pvrtc │ ├── mountain_diffuse.png │ ├── mountain_diffuse.pvrtc │ ├── mountain_normal.png │ ├── mountain_normal.pvrtc │ ├── mountain_specular.png │ ├── mountain_specular.pvrtc │ ├── pearl_ambient.png │ ├── pearl_cubemap.png │ ├── pearl_diffuse.png │ ├── pearl_diffuse.pvrtc │ ├── puddle_diffuse.png │ ├── puddle_normal.png │ ├── reflection_blurred_low_row.png │ ├── ripple01.png │ ├── rock_dark_diffuse.png │ ├── rock_dark_diffuse.pvrtc │ ├── rock_dark_normal.png │ ├── rock_dark_normal.pvrtc │ ├── rock_diffuse.png │ ├── rock_diffuse.pvrtc │ ├── rock_normal.png │ ├── rock_normal.pvrtc │ ├── rock_specular.png │ ├── rock_specular.pvrtc │ ├── rock_wall_arch_diffuse.png │ ├── rock_wall_arch_flower_diffuse.png │ ├── rock_wall_arch_flower_diffuse.pvrtc │ ├── rock_wall_arch_flower_normal.png │ ├── rock_wall_arch_flower_normal.pvrtc │ ├── rock_wall_arch_nologo_diffuse.png │ ├── rock_wall_arch_nologo_diffuse.pvrtc │ ├── rock_wall_arch_normal.png │ ├── rock_wall_dark_diffuse.png │ ├── rock_wall_dark_diffuse.pvrtc │ ├── rock_wall_diffuse.png │ ├── rock_wall_diffuse.pvrtc │ ├── rock_wall_diffuse_noLine.png │ ├── rock_wall_diffuse_noLine.pvrtc │ ├── rock_wall_normal.png │ ├── rock_wall_normal.pvrtc │ ├── rock_wall_normal_noLine.png │ ├── rock_wall_normal_noLine.pvrtc │ ├── rock_wall_specular.png │ ├── rock_wall_specular.pvrtc │ ├── smoke.png │ ├── spark.png │ ├── splash.png │ ├── splash02.png │ ├── star.png │ ├── water_ambient.png │ ├── water_diffuse.png │ └── water_normal.png │ └── walk.scn ├── LICENSE.txt ├── Objective-C ├── Common │ ├── AAPLCharacter.h │ ├── AAPLCharacter.m │ ├── AAPLGameControls.m │ ├── AAPLGameView.h │ ├── AAPLGameView.m │ ├── AAPLGameViewController.h │ ├── AAPLGameViewController.m │ └── AAPLGameViewControllerPrivate.h ├── Fox.xcodeproj │ └── project.pbxproj ├── OSX │ ├── AAPLAppDelegate.h │ ├── AAPLAppDelegate.m │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── osx-128x128.png │ │ │ ├── osx-128x128@2x.png │ │ │ ├── osx-16x16.png │ │ │ ├── osx-16x16@2x.png │ │ │ ├── osx-256x256.png │ │ │ ├── osx-256x256@2x.png │ │ │ ├── osx-32x32.png │ │ │ ├── osx-32x32@2x.png │ │ │ ├── osx-512x512.png │ │ │ └── osx-512x512@2x.png │ ├── Info.plist │ └── main.m ├── iOS │ ├── AAPLAppDelegate.h │ ├── AAPLAppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── ipad-29x29.png │ │ │ ├── ipad-29x29@2x.png │ │ │ ├── ipad-40x40.png │ │ │ ├── ipad-40x40@2x.png │ │ │ ├── ipad-76x76.png │ │ │ ├── ipad-76x76@2x.png │ │ │ ├── iphone-29x29@2x.png │ │ │ ├── iphone-29x29@3x.png │ │ │ ├── iphone-40x40@2x.png │ │ │ ├── iphone-40x40@3x.png │ │ │ ├── iphone-60x60@2x.png │ │ │ ├── iphone-60x60@3x.png │ │ │ └── iphone-83.5x83.5@2x.png │ │ └── Contents.json │ ├── Info.plist │ ├── Launch Screen.storyboard │ ├── broadcast_button@2x.png │ ├── broadcast_button_on@2x.png │ └── main.m └── tvOS │ ├── AAPLAppDelegate.h │ ├── AAPLAppDelegate.m │ ├── Base.lproj │ └── Main.storyboard │ ├── Images.xcassets │ ├── App Icon & Top Shelf Image.brandassets │ │ ├── App Icon - Large.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── tvos-layer1.png │ │ │ │ └── Contents.json │ │ │ ├── Background.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── tvos-layer0.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── tvos-layer3.png │ │ │ │ └── Contents.json │ │ │ ├── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── tvos-layer2.png │ │ │ │ └── Contents.json │ │ │ └── Near.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tvos-layer4.png │ │ │ │ └── Contents.json │ │ ├── App Icon - Small.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── tvos-layer1.png │ │ │ │ └── Contents.json │ │ │ ├── Background.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── tvos-layer0.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── tvos-layer3.png │ │ │ │ └── Contents.json │ │ │ ├── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── tvos-layer2.png │ │ │ │ └── Contents.json │ │ │ └── Near.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tvos-layer4.png │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── Top Shelf Image.imageset │ │ │ ├── Contents.json │ │ │ └── top-shelf.png │ ├── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json │ ├── Info.plist │ └── main.m └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /Game assets/Overlays/FlowerEmpty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/Overlays/FlowerEmpty.png -------------------------------------------------------------------------------- /Game assets/Overlays/FlowerFull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/Overlays/FlowerFull.png -------------------------------------------------------------------------------- /Game assets/Overlays/ItemsPearl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/Overlays/ItemsPearl.png -------------------------------------------------------------------------------- /Game assets/Overlays/MaxIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/Overlays/MaxIcon.png -------------------------------------------------------------------------------- /Game assets/Overlays/congratulations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/Overlays/congratulations.png -------------------------------------------------------------------------------- /Game assets/Overlays/congratulations_pandaMax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/Overlays/congratulations_pandaMax.png -------------------------------------------------------------------------------- /Game assets/Overlays/dpad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/Overlays/dpad.png -------------------------------------------------------------------------------- /Game assets/Particle systems/collect.scnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/Particle systems/collect.scnp -------------------------------------------------------------------------------- /Game assets/Particle systems/confetti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/Particle systems/confetti.png -------------------------------------------------------------------------------- /Game assets/Particle systems/confetti.scnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/Particle systems/confetti.scnp -------------------------------------------------------------------------------- /Game assets/Particle systems/glow01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/Particle systems/glow01.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/bamboo.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/bamboo.scn -------------------------------------------------------------------------------- /Game assets/game.scnassets/bamboos.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/bamboos.scn -------------------------------------------------------------------------------- /Game assets/game.scnassets/bloc.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/bloc.scn -------------------------------------------------------------------------------- /Game assets/game.scnassets/enemy.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/enemy.scn -------------------------------------------------------------------------------- /Game assets/game.scnassets/flower.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/flower.scn -------------------------------------------------------------------------------- /Game assets/game.scnassets/grass.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/grass.scn -------------------------------------------------------------------------------- /Game assets/game.scnassets/level.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/level.scn -------------------------------------------------------------------------------- /Game assets/game.scnassets/panda.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/panda.scn -------------------------------------------------------------------------------- /Game assets/game.scnassets/particles.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/particles.scn -------------------------------------------------------------------------------- /Game assets/game.scnassets/pearl.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/pearl.scn -------------------------------------------------------------------------------- /Game assets/game.scnassets/skybox/skybox01_cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/skybox/skybox01_cube.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Music_victory.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Music_victory.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_grass_00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_grass_00.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_grass_01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_grass_01.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_grass_02.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_grass_02.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_grass_03.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_grass_03.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_grass_04.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_grass_04.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_grass_05.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_grass_05.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_grass_06.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_grass_06.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_grass_07.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_grass_07.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_grass_08.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_grass_08.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_grass_09.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_grass_09.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_rock_00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_rock_00.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_rock_01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_rock_01.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_rock_02.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_rock_02.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_rock_03.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_rock_03.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_rock_04.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_rock_04.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_rock_05.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_rock_05.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_rock_06.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_rock_06.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_rock_07.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_rock_07.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_rock_08.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_rock_08.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_rock_09.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_rock_09.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_splash_00.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_splash_00.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_splash_01.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_splash_01.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_splash_02.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_splash_02.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/Step_splash_03.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/Step_splash_03.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/aah_extinction.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/aah_extinction.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/collect1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/collect1.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/collect2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/collect2.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/fire_extinction.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/fire_extinction.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/flamethrower.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/flamethrower.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/hit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/hit.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/music.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/music.m4a -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/ouch_firehit.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/ouch_firehit.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/panda_catch_fire.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/panda_catch_fire.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/stone_roll.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/stone_roll.mp3 -------------------------------------------------------------------------------- /Game assets/game.scnassets/sounds/wind.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/sounds/wind.m4a -------------------------------------------------------------------------------- /Game assets/game.scnassets/stoneShell01.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/stoneShell01.scn -------------------------------------------------------------------------------- /Game assets/game.scnassets/stoneShell02.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/stoneShell02.scn -------------------------------------------------------------------------------- /Game assets/game.scnassets/stoneShell03.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/stoneShell03.scn -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/bamboo_leaves_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/bamboo_leaves_diffuse.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/bamboo_leaves_diffuse.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/bamboo_leaves_diffuse.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/bamboo_trunk_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/bamboo_trunk_diffuse.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/bamboo_trunk_diffuse.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/bamboo_trunk_diffuse.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/bokeh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/bokeh.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/fire.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/flameThrower_ambient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/flameThrower_ambient.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/flameThrower_ambient.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/flameThrower_ambient.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/flameThrower_base_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/flameThrower_base_diffuse.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/flameThrower_base_diffuse.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/flameThrower_base_diffuse.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/flameThrower_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/flameThrower_diffuse.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/flameThrower_diffuse.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/flameThrower_diffuse.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/flameThrower_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/flameThrower_normal.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/flameThrower_normal.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/flameThrower_normal.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/flameThrower_specular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/flameThrower_specular.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/flameThrower_specular.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/flameThrower_specular.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/flower_ambiant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/flower_ambiant.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/flower_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/flower_diffuse.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/flower_diffuse.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/flower_diffuse.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/flower_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/flower_normal.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/flower_normal.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/flower_normal.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/glow_ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/glow_ellipse.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/grass.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/grass.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/grass.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/grass_ambient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/grass_ambient.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/grass_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/grass_diffuse.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/grass_diffuse.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/grass_diffuse.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/grass_specular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/grass_specular.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/grass_specular.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/grass_specular.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/ground_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/ground_diffuse.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/ground_diffuse.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/ground_diffuse.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/ground_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/ground_normal.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/ground_normal.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/ground_normal.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/ground_specular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/ground_specular.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/ground_specular.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/ground_specular.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/lightmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/lightmap.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/max_ambiant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/max_ambiant.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/max_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/max_diffuse.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/max_specular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/max_specular.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/moss_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/moss_diffuse.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/moss_diffuse.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/moss_diffuse.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/moss_round_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/moss_round_diffuse.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/moss_round_diffuse.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/moss_round_diffuse.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/moss_round_specular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/moss_round_specular.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/moss_round_specular.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/moss_round_specular.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/moss_specular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/moss_specular.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/moss_specular.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/moss_specular.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/mountain_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/mountain_diffuse.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/mountain_diffuse.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/mountain_diffuse.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/mountain_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/mountain_normal.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/mountain_normal.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/mountain_normal.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/mountain_specular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/mountain_specular.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/mountain_specular.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/mountain_specular.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/pearl_ambient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/pearl_ambient.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/pearl_cubemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/pearl_cubemap.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/pearl_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/pearl_diffuse.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/pearl_diffuse.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/pearl_diffuse.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/puddle_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/puddle_diffuse.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/puddle_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/puddle_normal.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/reflection_blurred_low_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/reflection_blurred_low_row.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/ripple01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/ripple01.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_dark_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_dark_diffuse.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_dark_diffuse.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_dark_diffuse.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_dark_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_dark_normal.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_dark_normal.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_dark_normal.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_diffuse.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_diffuse.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_diffuse.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_normal.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_normal.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_normal.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_specular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_specular.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_specular.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_specular.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_wall_arch_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_wall_arch_diffuse.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_wall_arch_flower_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_wall_arch_flower_diffuse.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_wall_arch_flower_diffuse.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_wall_arch_flower_diffuse.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_wall_arch_flower_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_wall_arch_flower_normal.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_wall_arch_flower_normal.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_wall_arch_flower_normal.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_wall_arch_nologo_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_wall_arch_nologo_diffuse.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_wall_arch_nologo_diffuse.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_wall_arch_nologo_diffuse.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_wall_arch_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_wall_arch_normal.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_wall_dark_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_wall_dark_diffuse.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_wall_dark_diffuse.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_wall_dark_diffuse.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_wall_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_wall_diffuse.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_wall_diffuse.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_wall_diffuse.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_wall_diffuse_noLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_wall_diffuse_noLine.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_wall_diffuse_noLine.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_wall_diffuse_noLine.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_wall_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_wall_normal.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_wall_normal.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_wall_normal.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_wall_normal_noLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_wall_normal_noLine.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_wall_normal_noLine.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_wall_normal_noLine.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_wall_specular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_wall_specular.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/rock_wall_specular.pvrtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/rock_wall_specular.pvrtc -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/smoke.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/spark.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/splash.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/splash02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/splash02.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/star.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/water_ambient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/water_ambient.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/water_diffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/water_diffuse.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/textures/water_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/textures/water_normal.png -------------------------------------------------------------------------------- /Game assets/game.scnassets/walk.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Game assets/game.scnassets/walk.scn -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Objective-C/Common/AAPLCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/Common/AAPLCharacter.h -------------------------------------------------------------------------------- /Objective-C/Common/AAPLCharacter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/Common/AAPLCharacter.m -------------------------------------------------------------------------------- /Objective-C/Common/AAPLGameControls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/Common/AAPLGameControls.m -------------------------------------------------------------------------------- /Objective-C/Common/AAPLGameView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/Common/AAPLGameView.h -------------------------------------------------------------------------------- /Objective-C/Common/AAPLGameView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/Common/AAPLGameView.m -------------------------------------------------------------------------------- /Objective-C/Common/AAPLGameViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/Common/AAPLGameViewController.h -------------------------------------------------------------------------------- /Objective-C/Common/AAPLGameViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/Common/AAPLGameViewController.m -------------------------------------------------------------------------------- /Objective-C/Common/AAPLGameViewControllerPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/Common/AAPLGameViewControllerPrivate.h -------------------------------------------------------------------------------- /Objective-C/Fox.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/Fox.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Objective-C/OSX/AAPLAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/OSX/AAPLAppDelegate.h -------------------------------------------------------------------------------- /Objective-C/OSX/AAPLAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/OSX/AAPLAppDelegate.m -------------------------------------------------------------------------------- /Objective-C/OSX/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/OSX/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Objective-C/OSX/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/OSX/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Objective-C/OSX/Images.xcassets/AppIcon.appiconset/osx-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/OSX/Images.xcassets/AppIcon.appiconset/osx-128x128.png -------------------------------------------------------------------------------- /Objective-C/OSX/Images.xcassets/AppIcon.appiconset/osx-128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/OSX/Images.xcassets/AppIcon.appiconset/osx-128x128@2x.png -------------------------------------------------------------------------------- /Objective-C/OSX/Images.xcassets/AppIcon.appiconset/osx-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/OSX/Images.xcassets/AppIcon.appiconset/osx-16x16.png -------------------------------------------------------------------------------- /Objective-C/OSX/Images.xcassets/AppIcon.appiconset/osx-16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/OSX/Images.xcassets/AppIcon.appiconset/osx-16x16@2x.png -------------------------------------------------------------------------------- /Objective-C/OSX/Images.xcassets/AppIcon.appiconset/osx-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/OSX/Images.xcassets/AppIcon.appiconset/osx-256x256.png -------------------------------------------------------------------------------- /Objective-C/OSX/Images.xcassets/AppIcon.appiconset/osx-256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/OSX/Images.xcassets/AppIcon.appiconset/osx-256x256@2x.png -------------------------------------------------------------------------------- /Objective-C/OSX/Images.xcassets/AppIcon.appiconset/osx-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/OSX/Images.xcassets/AppIcon.appiconset/osx-32x32.png -------------------------------------------------------------------------------- /Objective-C/OSX/Images.xcassets/AppIcon.appiconset/osx-32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/OSX/Images.xcassets/AppIcon.appiconset/osx-32x32@2x.png -------------------------------------------------------------------------------- /Objective-C/OSX/Images.xcassets/AppIcon.appiconset/osx-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/OSX/Images.xcassets/AppIcon.appiconset/osx-512x512.png -------------------------------------------------------------------------------- /Objective-C/OSX/Images.xcassets/AppIcon.appiconset/osx-512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/OSX/Images.xcassets/AppIcon.appiconset/osx-512x512@2x.png -------------------------------------------------------------------------------- /Objective-C/OSX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/OSX/Info.plist -------------------------------------------------------------------------------- /Objective-C/OSX/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/OSX/main.m -------------------------------------------------------------------------------- /Objective-C/iOS/AAPLAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/AAPLAppDelegate.h -------------------------------------------------------------------------------- /Objective-C/iOS/AAPLAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/AAPLAppDelegate.m -------------------------------------------------------------------------------- /Objective-C/iOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Objective-C/iOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Objective-C/iOS/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Objective-C/iOS/Images.xcassets/AppIcon.appiconset/ipad-29x29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/Images.xcassets/AppIcon.appiconset/ipad-29x29.png -------------------------------------------------------------------------------- /Objective-C/iOS/Images.xcassets/AppIcon.appiconset/ipad-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/Images.xcassets/AppIcon.appiconset/ipad-29x29@2x.png -------------------------------------------------------------------------------- /Objective-C/iOS/Images.xcassets/AppIcon.appiconset/ipad-40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/Images.xcassets/AppIcon.appiconset/ipad-40x40.png -------------------------------------------------------------------------------- /Objective-C/iOS/Images.xcassets/AppIcon.appiconset/ipad-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/Images.xcassets/AppIcon.appiconset/ipad-40x40@2x.png -------------------------------------------------------------------------------- /Objective-C/iOS/Images.xcassets/AppIcon.appiconset/ipad-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/Images.xcassets/AppIcon.appiconset/ipad-76x76.png -------------------------------------------------------------------------------- /Objective-C/iOS/Images.xcassets/AppIcon.appiconset/ipad-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/Images.xcassets/AppIcon.appiconset/ipad-76x76@2x.png -------------------------------------------------------------------------------- /Objective-C/iOS/Images.xcassets/AppIcon.appiconset/iphone-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/Images.xcassets/AppIcon.appiconset/iphone-29x29@2x.png -------------------------------------------------------------------------------- /Objective-C/iOS/Images.xcassets/AppIcon.appiconset/iphone-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/Images.xcassets/AppIcon.appiconset/iphone-29x29@3x.png -------------------------------------------------------------------------------- /Objective-C/iOS/Images.xcassets/AppIcon.appiconset/iphone-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/Images.xcassets/AppIcon.appiconset/iphone-40x40@2x.png -------------------------------------------------------------------------------- /Objective-C/iOS/Images.xcassets/AppIcon.appiconset/iphone-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/Images.xcassets/AppIcon.appiconset/iphone-40x40@3x.png -------------------------------------------------------------------------------- /Objective-C/iOS/Images.xcassets/AppIcon.appiconset/iphone-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/Images.xcassets/AppIcon.appiconset/iphone-60x60@2x.png -------------------------------------------------------------------------------- /Objective-C/iOS/Images.xcassets/AppIcon.appiconset/iphone-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/Images.xcassets/AppIcon.appiconset/iphone-60x60@3x.png -------------------------------------------------------------------------------- /Objective-C/iOS/Images.xcassets/AppIcon.appiconset/iphone-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/Images.xcassets/AppIcon.appiconset/iphone-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Objective-C/iOS/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Objective-C/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/Info.plist -------------------------------------------------------------------------------- /Objective-C/iOS/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/Launch Screen.storyboard -------------------------------------------------------------------------------- /Objective-C/iOS/broadcast_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/broadcast_button@2x.png -------------------------------------------------------------------------------- /Objective-C/iOS/broadcast_button_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/broadcast_button_on@2x.png -------------------------------------------------------------------------------- /Objective-C/iOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/iOS/main.m -------------------------------------------------------------------------------- /Objective-C/tvOS/AAPLAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/AAPLAppDelegate.h -------------------------------------------------------------------------------- /Objective-C/tvOS/AAPLAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/AAPLAppDelegate.m -------------------------------------------------------------------------------- /Objective-C/tvOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/tvos-layer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/tvos-layer1.png -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Background.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Background.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Background.imagestacklayer/Content.imageset/tvos-layer0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Background.imagestacklayer/Content.imageset/tvos-layer0.png -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Background.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Background.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/tvos-layer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/tvos-layer3.png -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/tvos-layer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/tvos-layer2.png -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Near.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Near.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Near.imagestacklayer/Content.imageset/tvos-layer4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Near.imagestacklayer/Content.imageset/tvos-layer4.png -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Near.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Near.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/tvos-layer1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/tvos-layer1.png -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Background.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Background.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Background.imagestacklayer/Content.imageset/tvos-layer0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Background.imagestacklayer/Content.imageset/tvos-layer0.png -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Background.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Background.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/tvos-layer3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/tvos-layer3.png -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/tvos-layer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/tvos-layer2.png -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Near.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Near.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Near.imagestacklayer/Content.imageset/tvos-layer4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Near.imagestacklayer/Content.imageset/tvos-layer4.png -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Near.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Near.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/top-shelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/top-shelf.png -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Objective-C/tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/Info.plist -------------------------------------------------------------------------------- /Objective-C/tvOS/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/Objective-C/tvOS/main.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mobcrush/ReplayKitDemo/HEAD/README.md --------------------------------------------------------------------------------