├── .gitignore ├── Demo ├── LIVBubbleMenu.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── leon.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── leon.xcuserdatad │ │ └── xcschemes │ │ ├── LIVBubbleMenu.xcscheme │ │ └── xcschememanagement.plist ├── LIVBubbleMenu.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── leon.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist ├── LIVBubbleMenu │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── angry.imageset │ │ │ ├── Contents.json │ │ │ ├── angry.png │ │ │ ├── angry@2x.png │ │ │ └── angry@3x.png │ │ ├── confused.imageset │ │ │ ├── Contents.json │ │ │ ├── confused.png │ │ │ ├── confused@2x.png │ │ │ └── confused@3x.png │ │ ├── cool.imageset │ │ │ ├── Contents.json │ │ │ ├── cool.png │ │ │ ├── cool@2x.png │ │ │ └── cool@3x.png │ │ ├── grin.imageset │ │ │ ├── Contents.json │ │ │ ├── grin.png │ │ │ ├── grin@2x.png │ │ │ └── grin@3x.png │ │ ├── happy.imageset │ │ │ ├── Contents.json │ │ │ ├── happy.png │ │ │ ├── happy@2x.png │ │ │ └── happy@3x.png │ │ ├── logo.imageset │ │ │ ├── Contents.json │ │ │ └── logo-Liv.png │ │ ├── neutral.imageset │ │ │ ├── Contents.json │ │ │ ├── neutral.png │ │ │ ├── neutral@2x.png │ │ │ └── neutral@3x.png │ │ ├── opensource.imageset │ │ │ ├── Contents.json │ │ │ └── opensource.png │ │ ├── sad.imageset │ │ │ ├── Contents.json │ │ │ ├── sad.png │ │ │ ├── sad@2x.png │ │ │ └── sad@3x.png │ │ ├── shocked.imageset │ │ │ ├── Contents.json │ │ │ ├── shocked.png │ │ │ ├── shocked@2x.png │ │ │ └── shocked@3x.png │ │ ├── smile.imageset │ │ │ ├── Contents.json │ │ │ ├── smile.png │ │ │ ├── smile@2x.png │ │ │ └── smile@3x.png │ │ ├── tongue.imageset │ │ │ ├── Contents.json │ │ │ ├── tongue.png │ │ │ ├── tongue@2x.png │ │ │ └── tongue@3x.png │ │ ├── wink.imageset │ │ │ ├── Contents.json │ │ │ ├── wink.png │ │ │ ├── wink@2x.png │ │ │ └── wink@3x.png │ │ └── wondering.imageset │ │ │ ├── Contents.json │ │ │ ├── wondering.png │ │ │ ├── wondering@2x.png │ │ │ └── wondering@3x.png │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── LIVBubbleMenuTests │ ├── Info.plist │ └── LIVBubbleMenuTests.m ├── Podfile ├── Podfile.lock └── Pods │ ├── Headers │ ├── Build │ │ └── pop │ │ │ ├── FloatConversion.h │ │ │ ├── POP.h │ │ │ ├── POPAction.h │ │ │ ├── POPAnimatableProperty.h │ │ │ ├── POPAnimation.h │ │ │ ├── POPAnimationEvent.h │ │ │ ├── POPAnimationEventInternal.h │ │ │ ├── POPAnimationExtras.h │ │ │ ├── POPAnimationInternal.h │ │ │ ├── POPAnimationPrivate.h │ │ │ ├── POPAnimationRuntime.h │ │ │ ├── POPAnimationTracer.h │ │ │ ├── POPAnimationTracerInternal.h │ │ │ ├── POPAnimator.h │ │ │ ├── POPAnimatorPrivate.h │ │ │ ├── POPBasicAnimation.h │ │ │ ├── POPBasicAnimationInternal.h │ │ │ ├── POPCGUtils.h │ │ │ ├── POPCustomAnimation.h │ │ │ ├── POPDecayAnimation.h │ │ │ ├── POPDecayAnimationInternal.h │ │ │ ├── POPDefines.h │ │ │ ├── POPGeometry.h │ │ │ ├── POPLayerExtras.h │ │ │ ├── POPMath.h │ │ │ ├── POPPropertyAnimation.h │ │ │ ├── POPPropertyAnimationInternal.h │ │ │ ├── POPSpringAnimation.h │ │ │ ├── POPSpringAnimationInternal.h │ │ │ ├── POPSpringSolver.h │ │ │ ├── POPVector.h │ │ │ ├── TransformationMatrix.h │ │ │ └── UnitBezier.h │ └── Public │ │ └── pop │ │ ├── POP.h │ │ ├── POPAnimatableProperty.h │ │ ├── POPAnimation.h │ │ ├── POPAnimationEvent.h │ │ ├── POPAnimationExtras.h │ │ ├── POPAnimationTracer.h │ │ ├── POPAnimator.h │ │ ├── POPBasicAnimation.h │ │ ├── POPCustomAnimation.h │ │ ├── POPDecayAnimation.h │ │ ├── POPDefines.h │ │ ├── POPGeometry.h │ │ ├── POPLayerExtras.h │ │ ├── POPPropertyAnimation.h │ │ └── POPSpringAnimation.h │ ├── Manifest.lock │ ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── leon.xcuserdatad │ │ └── xcschemes │ │ ├── Pods-pop.xcscheme │ │ ├── Pods.xcscheme │ │ └── xcschememanagement.plist │ ├── Target Support Files │ ├── Pods-pop │ │ ├── Pods-pop-Private.xcconfig │ │ ├── Pods-pop-dummy.m │ │ ├── Pods-pop-prefix.pch │ │ └── Pods-pop.xcconfig │ └── Pods │ │ ├── Pods-acknowledgements.markdown │ │ ├── Pods-acknowledgements.plist │ │ ├── Pods-dummy.m │ │ ├── Pods-environment.h │ │ ├── Pods-resources.sh │ │ ├── Pods.debug.xcconfig │ │ └── Pods.release.xcconfig │ └── pop │ ├── LICENSE │ ├── README.md │ └── pop │ ├── POP.h │ ├── POPAction.h │ ├── POPAnimatableProperty.h │ ├── POPAnimatableProperty.mm │ ├── POPAnimation.h │ ├── POPAnimation.mm │ ├── POPAnimationEvent.h │ ├── POPAnimationEvent.mm │ ├── POPAnimationEventInternal.h │ ├── POPAnimationExtras.h │ ├── POPAnimationExtras.mm │ ├── POPAnimationInternal.h │ ├── POPAnimationPrivate.h │ ├── POPAnimationRuntime.h │ ├── POPAnimationRuntime.mm │ ├── POPAnimationTracer.h │ ├── POPAnimationTracer.mm │ ├── POPAnimationTracerInternal.h │ ├── POPAnimator.h │ ├── POPAnimator.mm │ ├── POPAnimatorPrivate.h │ ├── POPBasicAnimation.h │ ├── POPBasicAnimation.mm │ ├── POPBasicAnimationInternal.h │ ├── POPCGUtils.h │ ├── POPCGUtils.mm │ ├── POPCustomAnimation.h │ ├── POPCustomAnimation.mm │ ├── POPDecayAnimation.h │ ├── POPDecayAnimation.mm │ ├── POPDecayAnimationInternal.h │ ├── POPDefines.h │ ├── POPGeometry.h │ ├── POPGeometry.mm │ ├── POPLayerExtras.h │ ├── POPLayerExtras.mm │ ├── POPMath.h │ ├── POPMath.mm │ ├── POPPropertyAnimation.h │ ├── POPPropertyAnimation.mm │ ├── POPPropertyAnimationInternal.h │ ├── POPSpringAnimation.h │ ├── POPSpringAnimation.mm │ ├── POPSpringAnimationInternal.h │ ├── POPSpringSolver.h │ ├── POPVector.h │ ├── POPVector.mm │ └── WebCore │ ├── FloatConversion.h │ ├── TransformationMatrix.cpp │ ├── TransformationMatrix.h │ └── UnitBezier.h ├── LICENSE ├── LIVBubbleMenu.podspec ├── LIVBubbleMenu ├── LIVBubbleMenu.h └── LIVBubbleMenu.m └── README.MD /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu.xcodeproj/project.xcworkspace/xcuserdata/leon.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu.xcodeproj/project.xcworkspace/xcuserdata/leon.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu.xcodeproj/xcuserdata/leon.xcuserdatad/xcschemes/LIVBubbleMenu.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu.xcodeproj/xcuserdata/leon.xcuserdatad/xcschemes/LIVBubbleMenu.xcscheme -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu.xcodeproj/xcuserdata/leon.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu.xcodeproj/xcuserdata/leon.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu.xcworkspace/xcuserdata/leon.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu.xcworkspace/xcuserdata/leon.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu.xcworkspace/xcuserdata/leon.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu.xcworkspace/xcuserdata/leon.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/AppDelegate.h -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/AppDelegate.m -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/angry.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/angry.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/angry.imageset/angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/angry.imageset/angry.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/angry.imageset/angry@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/angry.imageset/angry@2x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/angry.imageset/angry@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/angry.imageset/angry@3x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/confused.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/confused.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/confused.imageset/confused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/confused.imageset/confused.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/confused.imageset/confused@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/confused.imageset/confused@2x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/confused.imageset/confused@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/confused.imageset/confused@3x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/cool.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/cool.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/cool.imageset/cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/cool.imageset/cool.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/cool.imageset/cool@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/cool.imageset/cool@2x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/cool.imageset/cool@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/cool.imageset/cool@3x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/grin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/grin.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/grin.imageset/grin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/grin.imageset/grin.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/grin.imageset/grin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/grin.imageset/grin@2x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/grin.imageset/grin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/grin.imageset/grin@3x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/happy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/happy.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/happy.imageset/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/happy.imageset/happy.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/happy.imageset/happy@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/happy.imageset/happy@2x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/happy.imageset/happy@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/happy.imageset/happy@3x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/logo.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/logo.imageset/logo-Liv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/logo.imageset/logo-Liv.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/neutral.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/neutral.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/neutral.imageset/neutral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/neutral.imageset/neutral.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/neutral.imageset/neutral@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/neutral.imageset/neutral@2x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/neutral.imageset/neutral@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/neutral.imageset/neutral@3x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/opensource.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/opensource.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/opensource.imageset/opensource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/opensource.imageset/opensource.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/sad.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/sad.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/sad.imageset/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/sad.imageset/sad.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/sad.imageset/sad@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/sad.imageset/sad@2x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/sad.imageset/sad@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/sad.imageset/sad@3x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/shocked.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/shocked.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/shocked.imageset/shocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/shocked.imageset/shocked.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/shocked.imageset/shocked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/shocked.imageset/shocked@2x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/shocked.imageset/shocked@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/shocked.imageset/shocked@3x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/smile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/smile.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/smile.imageset/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/smile.imageset/smile.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/smile.imageset/smile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/smile.imageset/smile@2x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/smile.imageset/smile@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/smile.imageset/smile@3x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/tongue.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/tongue.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/tongue.imageset/tongue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/tongue.imageset/tongue.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/tongue.imageset/tongue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/tongue.imageset/tongue@2x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/tongue.imageset/tongue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/tongue.imageset/tongue@3x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/wink.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/wink.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/wink.imageset/wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/wink.imageset/wink.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/wink.imageset/wink@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/wink.imageset/wink@2x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/wink.imageset/wink@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/wink.imageset/wink@3x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/wondering.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/wondering.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/wondering.imageset/wondering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/wondering.imageset/wondering.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/wondering.imageset/wondering@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/wondering.imageset/wondering@2x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Images.xcassets/wondering.imageset/wondering@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Images.xcassets/wondering.imageset/wondering@3x.png -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/Info.plist -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/ViewController.h -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/ViewController.m -------------------------------------------------------------------------------- /Demo/LIVBubbleMenu/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenu/main.m -------------------------------------------------------------------------------- /Demo/LIVBubbleMenuTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenuTests/Info.plist -------------------------------------------------------------------------------- /Demo/LIVBubbleMenuTests/LIVBubbleMenuTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/LIVBubbleMenuTests/LIVBubbleMenuTests.m -------------------------------------------------------------------------------- /Demo/Podfile: -------------------------------------------------------------------------------- 1 | pod 'pop', '~> 1.0' 2 | -------------------------------------------------------------------------------- /Demo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Podfile.lock -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/FloatConversion.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POP.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPAction.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAction.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPCGUtils.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPMath.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPMath.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/POPVector.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPVector.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/TransformationMatrix.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Build/pop/UnitBezier.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POP.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Demo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/Manifest.lock -------------------------------------------------------------------------------- /Demo/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/Pods/Pods.xcodeproj/xcuserdata/leon.xcuserdatad/xcschemes/Pods-pop.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/Pods.xcodeproj/xcuserdata/leon.xcuserdatad/xcschemes/Pods-pop.xcscheme -------------------------------------------------------------------------------- /Demo/Pods/Pods.xcodeproj/xcuserdata/leon.xcuserdatad/xcschemes/Pods.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/Pods.xcodeproj/xcuserdata/leon.xcuserdatad/xcschemes/Pods.xcscheme -------------------------------------------------------------------------------- /Demo/Pods/Pods.xcodeproj/xcuserdata/leon.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/Pods.xcodeproj/xcuserdata/leon.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-pop/Pods-pop-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/Target Support Files/Pods-pop/Pods-pop-Private.xcconfig -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-pop/Pods-pop-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/Target Support Files/Pods-pop/Pods-pop-dummy.m -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-pop/Pods-pop-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/Target Support Files/Pods-pop/Pods-pop-prefix.pch -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods-pop/Pods-pop.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/Target Support Files/Pods-pop/Pods-pop.xcconfig -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/Target Support Files/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/Target Support Files/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods/Pods-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/Target Support Files/Pods/Pods-environment.h -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/Target Support Files/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/Target Support Files/Pods/Pods.debug.xcconfig -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/Target Support Files/Pods/Pods.release.xcconfig -------------------------------------------------------------------------------- /Demo/Pods/pop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/LICENSE -------------------------------------------------------------------------------- /Demo/Pods/pop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/README.md -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POP.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPAction.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPAnimatableProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPAnimatableProperty.mm -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPAnimation.mm -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPAnimationEvent.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPAnimationEvent.mm -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPAnimationExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPAnimationExtras.mm -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPAnimationRuntime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPAnimationRuntime.mm -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPAnimationTracer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPAnimationTracer.mm -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPAnimator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPAnimator.mm -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPBasicAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPBasicAnimation.mm -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPCGUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPCGUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPCGUtils.mm -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPCustomAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPCustomAnimation.mm -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPDecayAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPDecayAnimation.mm -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPGeometry.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPGeometry.mm -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPLayerExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPLayerExtras.mm -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPMath.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPMath.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPMath.mm -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPPropertyAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPPropertyAnimation.mm -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPSpringAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPSpringAnimation.mm -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPVector.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/POPVector.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/POPVector.mm -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/WebCore/FloatConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/WebCore/TransformationMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/WebCore/TransformationMatrix.cpp -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/WebCore/TransformationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /Demo/Pods/pop/pop/WebCore/UnitBezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/Demo/Pods/pop/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/LICENSE -------------------------------------------------------------------------------- /LIVBubbleMenu.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/LIVBubbleMenu.podspec -------------------------------------------------------------------------------- /LIVBubbleMenu/LIVBubbleMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/LIVBubbleMenu/LIVBubbleMenu.h -------------------------------------------------------------------------------- /LIVBubbleMenu/LIVBubbleMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/LIVBubbleMenu/LIVBubbleMenu.m -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/limitlessvirtual/LIVBubbleMenu-iOS/HEAD/README.MD --------------------------------------------------------------------------------