├── .gitignore ├── LICENSE.txt ├── LiquidKit.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── LiquidKit ├── Common │ ├── LQKCILiquidFilter.h │ ├── LQKCILiquidFilter.m │ ├── LQKImageUtils.h │ ├── LQKImageUtils.m │ ├── LQKLiquidEffect.h │ ├── LQKLiquidNode.h │ ├── LQKLiquidNode.m │ ├── LQKLiquidParticleFactory.h │ ├── LQKLiquidParticleFactory.m │ ├── LQKSolidColorEffect.h │ └── LQKSolidColorEffect.m ├── LiquidKit-Info.plist ├── LiquidKit-Prefix.pch ├── LiquidKit.h ├── OS X │ ├── LQKImageUtils+OSXUtils.h │ └── LQKImageUtils+OSXUtils.m ├── en.lproj │ └── InfoPlist.strings └── iOS │ ├── LQKImageUtils+iOSUtils.h │ └── LQKImageUtils+iOSUtils.m ├── LiquidKitTests ├── LiquidKitTests-Info.plist └── en.lproj │ └── InfoPlist.strings ├── README.md └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /LiquidKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/LiquidKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LiquidKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/LiquidKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LiquidKit/Common/LQKCILiquidFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/LiquidKit/Common/LQKCILiquidFilter.h -------------------------------------------------------------------------------- /LiquidKit/Common/LQKCILiquidFilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/LiquidKit/Common/LQKCILiquidFilter.m -------------------------------------------------------------------------------- /LiquidKit/Common/LQKImageUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/LiquidKit/Common/LQKImageUtils.h -------------------------------------------------------------------------------- /LiquidKit/Common/LQKImageUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/LiquidKit/Common/LQKImageUtils.m -------------------------------------------------------------------------------- /LiquidKit/Common/LQKLiquidEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/LiquidKit/Common/LQKLiquidEffect.h -------------------------------------------------------------------------------- /LiquidKit/Common/LQKLiquidNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/LiquidKit/Common/LQKLiquidNode.h -------------------------------------------------------------------------------- /LiquidKit/Common/LQKLiquidNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/LiquidKit/Common/LQKLiquidNode.m -------------------------------------------------------------------------------- /LiquidKit/Common/LQKLiquidParticleFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/LiquidKit/Common/LQKLiquidParticleFactory.h -------------------------------------------------------------------------------- /LiquidKit/Common/LQKLiquidParticleFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/LiquidKit/Common/LQKLiquidParticleFactory.m -------------------------------------------------------------------------------- /LiquidKit/Common/LQKSolidColorEffect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/LiquidKit/Common/LQKSolidColorEffect.h -------------------------------------------------------------------------------- /LiquidKit/Common/LQKSolidColorEffect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/LiquidKit/Common/LQKSolidColorEffect.m -------------------------------------------------------------------------------- /LiquidKit/LiquidKit-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/LiquidKit/LiquidKit-Info.plist -------------------------------------------------------------------------------- /LiquidKit/LiquidKit-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/LiquidKit/LiquidKit-Prefix.pch -------------------------------------------------------------------------------- /LiquidKit/LiquidKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/LiquidKit/LiquidKit.h -------------------------------------------------------------------------------- /LiquidKit/OS X/LQKImageUtils+OSXUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/LiquidKit/OS X/LQKImageUtils+OSXUtils.h -------------------------------------------------------------------------------- /LiquidKit/OS X/LQKImageUtils+OSXUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/LiquidKit/OS X/LQKImageUtils+OSXUtils.m -------------------------------------------------------------------------------- /LiquidKit/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LiquidKit/iOS/LQKImageUtils+iOSUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/LiquidKit/iOS/LQKImageUtils+iOSUtils.h -------------------------------------------------------------------------------- /LiquidKit/iOS/LQKImageUtils+iOSUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/LiquidKit/iOS/LQKImageUtils+iOSUtils.m -------------------------------------------------------------------------------- /LiquidKitTests/LiquidKitTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/LiquidKitTests/LiquidKitTests-Info.plist -------------------------------------------------------------------------------- /LiquidKitTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinhartman/LiquidKit/HEAD/screenshot.png --------------------------------------------------------------------------------