├── .gitignore ├── ARAnimation.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── ARAnimation ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.swift └── art.scnassets │ ├── idleFixed.dae │ ├── textures │ ├── t_dante_hair_black_dm.tga │ ├── t_dante_hair_s.tga │ ├── t_eye_d.tga │ ├── t_obeseMale_dm.tga │ ├── t_obeseMale_s.tga │ └── t_obeseMale_teeth_d.tga │ └── twist_danceFixed.dae ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eh3rrera/ARKitAnimation/HEAD/.gitignore -------------------------------------------------------------------------------- /ARAnimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eh3rrera/ARKitAnimation/HEAD/ARAnimation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ARAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eh3rrera/ARKitAnimation/HEAD/ARAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ARAnimation/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eh3rrera/ARKitAnimation/HEAD/ARAnimation/AppDelegate.swift -------------------------------------------------------------------------------- /ARAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eh3rrera/ARKitAnimation/HEAD/ARAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ARAnimation/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eh3rrera/ARKitAnimation/HEAD/ARAnimation/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ARAnimation/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eh3rrera/ARKitAnimation/HEAD/ARAnimation/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ARAnimation/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eh3rrera/ARKitAnimation/HEAD/ARAnimation/Info.plist -------------------------------------------------------------------------------- /ARAnimation/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eh3rrera/ARKitAnimation/HEAD/ARAnimation/ViewController.swift -------------------------------------------------------------------------------- /ARAnimation/art.scnassets/idleFixed.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eh3rrera/ARKitAnimation/HEAD/ARAnimation/art.scnassets/idleFixed.dae -------------------------------------------------------------------------------- /ARAnimation/art.scnassets/textures/t_dante_hair_black_dm.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eh3rrera/ARKitAnimation/HEAD/ARAnimation/art.scnassets/textures/t_dante_hair_black_dm.tga -------------------------------------------------------------------------------- /ARAnimation/art.scnassets/textures/t_dante_hair_s.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eh3rrera/ARKitAnimation/HEAD/ARAnimation/art.scnassets/textures/t_dante_hair_s.tga -------------------------------------------------------------------------------- /ARAnimation/art.scnassets/textures/t_eye_d.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eh3rrera/ARKitAnimation/HEAD/ARAnimation/art.scnassets/textures/t_eye_d.tga -------------------------------------------------------------------------------- /ARAnimation/art.scnassets/textures/t_obeseMale_dm.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eh3rrera/ARKitAnimation/HEAD/ARAnimation/art.scnassets/textures/t_obeseMale_dm.tga -------------------------------------------------------------------------------- /ARAnimation/art.scnassets/textures/t_obeseMale_s.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eh3rrera/ARKitAnimation/HEAD/ARAnimation/art.scnassets/textures/t_obeseMale_s.tga -------------------------------------------------------------------------------- /ARAnimation/art.scnassets/textures/t_obeseMale_teeth_d.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eh3rrera/ARKitAnimation/HEAD/ARAnimation/art.scnassets/textures/t_obeseMale_teeth_d.tga -------------------------------------------------------------------------------- /ARAnimation/art.scnassets/twist_danceFixed.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eh3rrera/ARKitAnimation/HEAD/ARAnimation/art.scnassets/twist_danceFixed.dae -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eh3rrera/ARKitAnimation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eh3rrera/ARKitAnimation/HEAD/README.md --------------------------------------------------------------------------------