├── .gitignore ├── LICENSE ├── PhysicsDebugger.podspec ├── PhysicsDebugger.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── PhysicsDebugger ├── Base.lproj │ ├── Main_iPad.storyboard │ └── Main_iPhone.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-40@2x.png │ │ ├── Icon-60@2x.png │ │ └── Icon@2x.png │ ├── LaunchImage.launchimage │ │ └── Contents.json │ ├── background.imageset │ │ ├── Contents.json │ │ ├── background-1.png │ │ └── background.png │ ├── ball.imageset │ │ ├── Contents.json │ │ ├── ball-1.png │ │ └── ball.png │ ├── box.imageset │ │ ├── Contents.json │ │ ├── box-1.png │ │ └── box.png │ └── star.imageset │ │ ├── Contents.json │ │ ├── star-1.png │ │ └── star.png ├── PhysicsDebugger-Info.plist ├── PhysicsDebugger-Prefix.pch ├── YMCAppDelegate.h ├── YMCAppDelegate.m ├── YMCDemoScene.h ├── YMCDemoScene.m ├── YMCPhysicsDebugger │ ├── YMCPhysicsDebugProperties.h │ ├── YMCPhysicsDebugProperties.m │ ├── YMCPhysicsDebugger.h │ ├── YMCPhysicsDebugger.m │ ├── YMCSKNode+PhysicsDebug.h │ ├── YMCSKNode+PhysicsDebug.m │ ├── YMCSKPhysicsBody+Swizzle.h │ ├── YMCSKPhysicsBody+Swizzle.m │ ├── YMCSwizzler.h │ └── YMCSwizzler.m ├── YMCViewController.h ├── YMCViewController.m ├── en.lproj │ └── InfoPlist.strings └── main.m ├── PhysicsDebuggerTests ├── PhysicsDebuggerTests-Info.plist ├── PhysicsDebuggerTests.m └── en.lproj │ └── InfoPlist.strings └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/LICENSE -------------------------------------------------------------------------------- /PhysicsDebugger.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger.podspec -------------------------------------------------------------------------------- /PhysicsDebugger.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PhysicsDebugger.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PhysicsDebugger/Base.lproj/Main_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/Base.lproj/Main_iPad.storyboard -------------------------------------------------------------------------------- /PhysicsDebugger/Base.lproj/Main_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/Base.lproj/Main_iPhone.storyboard -------------------------------------------------------------------------------- /PhysicsDebugger/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PhysicsDebugger/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /PhysicsDebugger/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /PhysicsDebugger/Images.xcassets/AppIcon.appiconset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/Images.xcassets/AppIcon.appiconset/Icon@2x.png -------------------------------------------------------------------------------- /PhysicsDebugger/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /PhysicsDebugger/Images.xcassets/background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/Images.xcassets/background.imageset/Contents.json -------------------------------------------------------------------------------- /PhysicsDebugger/Images.xcassets/background.imageset/background-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/Images.xcassets/background.imageset/background-1.png -------------------------------------------------------------------------------- /PhysicsDebugger/Images.xcassets/background.imageset/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/Images.xcassets/background.imageset/background.png -------------------------------------------------------------------------------- /PhysicsDebugger/Images.xcassets/ball.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/Images.xcassets/ball.imageset/Contents.json -------------------------------------------------------------------------------- /PhysicsDebugger/Images.xcassets/ball.imageset/ball-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/Images.xcassets/ball.imageset/ball-1.png -------------------------------------------------------------------------------- /PhysicsDebugger/Images.xcassets/ball.imageset/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/Images.xcassets/ball.imageset/ball.png -------------------------------------------------------------------------------- /PhysicsDebugger/Images.xcassets/box.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/Images.xcassets/box.imageset/Contents.json -------------------------------------------------------------------------------- /PhysicsDebugger/Images.xcassets/box.imageset/box-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/Images.xcassets/box.imageset/box-1.png -------------------------------------------------------------------------------- /PhysicsDebugger/Images.xcassets/box.imageset/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/Images.xcassets/box.imageset/box.png -------------------------------------------------------------------------------- /PhysicsDebugger/Images.xcassets/star.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/Images.xcassets/star.imageset/Contents.json -------------------------------------------------------------------------------- /PhysicsDebugger/Images.xcassets/star.imageset/star-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/Images.xcassets/star.imageset/star-1.png -------------------------------------------------------------------------------- /PhysicsDebugger/Images.xcassets/star.imageset/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/Images.xcassets/star.imageset/star.png -------------------------------------------------------------------------------- /PhysicsDebugger/PhysicsDebugger-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/PhysicsDebugger-Info.plist -------------------------------------------------------------------------------- /PhysicsDebugger/PhysicsDebugger-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/PhysicsDebugger-Prefix.pch -------------------------------------------------------------------------------- /PhysicsDebugger/YMCAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/YMCAppDelegate.h -------------------------------------------------------------------------------- /PhysicsDebugger/YMCAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/YMCAppDelegate.m -------------------------------------------------------------------------------- /PhysicsDebugger/YMCDemoScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/YMCDemoScene.h -------------------------------------------------------------------------------- /PhysicsDebugger/YMCDemoScene.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/YMCDemoScene.m -------------------------------------------------------------------------------- /PhysicsDebugger/YMCPhysicsDebugger/YMCPhysicsDebugProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/YMCPhysicsDebugger/YMCPhysicsDebugProperties.h -------------------------------------------------------------------------------- /PhysicsDebugger/YMCPhysicsDebugger/YMCPhysicsDebugProperties.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/YMCPhysicsDebugger/YMCPhysicsDebugProperties.m -------------------------------------------------------------------------------- /PhysicsDebugger/YMCPhysicsDebugger/YMCPhysicsDebugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/YMCPhysicsDebugger/YMCPhysicsDebugger.h -------------------------------------------------------------------------------- /PhysicsDebugger/YMCPhysicsDebugger/YMCPhysicsDebugger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/YMCPhysicsDebugger/YMCPhysicsDebugger.m -------------------------------------------------------------------------------- /PhysicsDebugger/YMCPhysicsDebugger/YMCSKNode+PhysicsDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/YMCPhysicsDebugger/YMCSKNode+PhysicsDebug.h -------------------------------------------------------------------------------- /PhysicsDebugger/YMCPhysicsDebugger/YMCSKNode+PhysicsDebug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/YMCPhysicsDebugger/YMCSKNode+PhysicsDebug.m -------------------------------------------------------------------------------- /PhysicsDebugger/YMCPhysicsDebugger/YMCSKPhysicsBody+Swizzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/YMCPhysicsDebugger/YMCSKPhysicsBody+Swizzle.h -------------------------------------------------------------------------------- /PhysicsDebugger/YMCPhysicsDebugger/YMCSKPhysicsBody+Swizzle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/YMCPhysicsDebugger/YMCSKPhysicsBody+Swizzle.m -------------------------------------------------------------------------------- /PhysicsDebugger/YMCPhysicsDebugger/YMCSwizzler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/YMCPhysicsDebugger/YMCSwizzler.h -------------------------------------------------------------------------------- /PhysicsDebugger/YMCPhysicsDebugger/YMCSwizzler.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/YMCPhysicsDebugger/YMCSwizzler.m -------------------------------------------------------------------------------- /PhysicsDebugger/YMCViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/YMCViewController.h -------------------------------------------------------------------------------- /PhysicsDebugger/YMCViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/YMCViewController.m -------------------------------------------------------------------------------- /PhysicsDebugger/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /PhysicsDebugger/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebugger/main.m -------------------------------------------------------------------------------- /PhysicsDebuggerTests/PhysicsDebuggerTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebuggerTests/PhysicsDebuggerTests-Info.plist -------------------------------------------------------------------------------- /PhysicsDebuggerTests/PhysicsDebuggerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/PhysicsDebuggerTests/PhysicsDebuggerTests.m -------------------------------------------------------------------------------- /PhysicsDebuggerTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ymc-thzi/PhysicsDebugger/HEAD/README.md --------------------------------------------------------------------------------