├── 2017-06-22 17_47_06.gif ├── README.md ├── SCN3DPlayer.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── taiyoshimichi.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── taiyoshimichi.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── SCN3DPlayer.xcscheme │ └── xcschememanagement.plist ├── SCN3DPlayer ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── HelloViewController.h ├── HelloViewController.m ├── Info.plist ├── Masonry │ ├── MASCompositeConstraint.h │ ├── MASCompositeConstraint.m │ ├── MASConstraint+Private.h │ ├── MASConstraint.h │ ├── MASConstraint.m │ ├── MASConstraintMaker.h │ ├── MASConstraintMaker.m │ ├── MASLayoutConstraint.h │ ├── MASLayoutConstraint.m │ ├── MASUtilities.h │ ├── MASViewAttribute.h │ ├── MASViewAttribute.m │ ├── MASViewConstraint.h │ ├── MASViewConstraint.m │ ├── Masonry.h │ ├── NSArray+MASAdditions.h │ ├── NSArray+MASAdditions.m │ ├── NSArray+MASShorthandAdditions.h │ ├── NSLayoutConstraint+MASDebugAdditions.h │ ├── NSLayoutConstraint+MASDebugAdditions.m │ ├── View+MASAdditions.h │ ├── View+MASAdditions.m │ ├── View+MASShorthandAdditions.h │ ├── ViewController+MASAdditions.h │ └── ViewController+MASAdditions.m ├── SCN3DPlayer │ ├── SCN3DPlayerView.h │ ├── SCN3DPlayerView.m │ ├── SCN3DVideoAdatper.h │ └── SCN3DVideoAdatper.m ├── ViewController.h ├── ViewController.m ├── image │ ├── aaa.jpg │ ├── abc.mp4 │ ├── ic_circle@2x.png │ ├── pause_nor@2x.png │ └── play_nor@2x.png └── main.m ├── SCN3DPlayerTests ├── Info.plist └── SCN3DPlayerTests.m └── SCN3DPlayerUITests ├── Info.plist └── SCN3DPlayerUITests.m /2017-06-22 17_47_06.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/2017-06-22 17_47_06.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/README.md -------------------------------------------------------------------------------- /SCN3DPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SCN3DPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SCN3DPlayer.xcodeproj/project.xcworkspace/xcuserdata/taiyoshimichi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer.xcodeproj/project.xcworkspace/xcuserdata/taiyoshimichi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SCN3DPlayer.xcodeproj/xcuserdata/taiyoshimichi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer.xcodeproj/xcuserdata/taiyoshimichi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /SCN3DPlayer.xcodeproj/xcuserdata/taiyoshimichi.xcuserdatad/xcschemes/SCN3DPlayer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer.xcodeproj/xcuserdata/taiyoshimichi.xcuserdatad/xcschemes/SCN3DPlayer.xcscheme -------------------------------------------------------------------------------- /SCN3DPlayer.xcodeproj/xcuserdata/taiyoshimichi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer.xcodeproj/xcuserdata/taiyoshimichi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SCN3DPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/AppDelegate.h -------------------------------------------------------------------------------- /SCN3DPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/AppDelegate.m -------------------------------------------------------------------------------- /SCN3DPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SCN3DPlayer/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SCN3DPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SCN3DPlayer/HelloViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/HelloViewController.h -------------------------------------------------------------------------------- /SCN3DPlayer/HelloViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/HelloViewController.m -------------------------------------------------------------------------------- /SCN3DPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Info.plist -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/Masonry.h -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /SCN3DPlayer/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /SCN3DPlayer/SCN3DPlayer/SCN3DPlayerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/SCN3DPlayer/SCN3DPlayerView.h -------------------------------------------------------------------------------- /SCN3DPlayer/SCN3DPlayer/SCN3DPlayerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/SCN3DPlayer/SCN3DPlayerView.m -------------------------------------------------------------------------------- /SCN3DPlayer/SCN3DPlayer/SCN3DVideoAdatper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/SCN3DPlayer/SCN3DVideoAdatper.h -------------------------------------------------------------------------------- /SCN3DPlayer/SCN3DPlayer/SCN3DVideoAdatper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/SCN3DPlayer/SCN3DVideoAdatper.m -------------------------------------------------------------------------------- /SCN3DPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/ViewController.h -------------------------------------------------------------------------------- /SCN3DPlayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/ViewController.m -------------------------------------------------------------------------------- /SCN3DPlayer/image/aaa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/image/aaa.jpg -------------------------------------------------------------------------------- /SCN3DPlayer/image/abc.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/image/abc.mp4 -------------------------------------------------------------------------------- /SCN3DPlayer/image/ic_circle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/image/ic_circle@2x.png -------------------------------------------------------------------------------- /SCN3DPlayer/image/pause_nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/image/pause_nor@2x.png -------------------------------------------------------------------------------- /SCN3DPlayer/image/play_nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/image/play_nor@2x.png -------------------------------------------------------------------------------- /SCN3DPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayer/main.m -------------------------------------------------------------------------------- /SCN3DPlayerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayerTests/Info.plist -------------------------------------------------------------------------------- /SCN3DPlayerTests/SCN3DPlayerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayerTests/SCN3DPlayerTests.m -------------------------------------------------------------------------------- /SCN3DPlayerUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayerUITests/Info.plist -------------------------------------------------------------------------------- /SCN3DPlayerUITests/SCN3DPlayerUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hhjdk/SCN3DPlayer/HEAD/SCN3DPlayerUITests/SCN3DPlayerUITests.m --------------------------------------------------------------------------------