├── Caramel.Client.sln ├── Caramel.Client ├── ARKitSkeletonDelegate.cs ├── AppDelegate.cs ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_1024px-1024.png │ │ ├── icon_1024px-20.png │ │ ├── icon_1024px-20@2x.png │ │ ├── icon_1024px-20@3x.png │ │ ├── icon_1024px-29.png │ │ ├── icon_1024px-29@2x.png │ │ ├── icon_1024px-29@3x.png │ │ ├── icon_1024px-40.png │ │ ├── icon_1024px-40@2x.png │ │ ├── icon_1024px-40@3x.png │ │ ├── icon_1024px-60@2x.png │ │ ├── icon_1024px-60@3x.png │ │ ├── icon_1024px-76.png │ │ ├── icon_1024px-76@2x.png │ │ └── icon_1024px-83.5@2x.png │ └── Contents.json ├── Caramel.Client.csproj ├── CustomTabBar.xib ├── Entitlements.plist ├── Info.plist ├── Main.cs ├── Main.storyboard ├── PreviewViewController.cs ├── PreviewViewController.designer.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ └── LaunchScreen.xib ├── SceneDelegate.cs ├── SceneDelegate.designer.cs ├── SettingsViewController.cs └── SettingsViewController.designer.cs ├── LICENSE ├── README.md └── SharpOSC.iOS ├── Extensions.cs ├── Midi.cs ├── OscBundle.cs ├── OscMessage.cs ├── OscPacket.cs ├── Properties └── AssemblyInfo.cs ├── RGBA.cs ├── SharpOSC.iOS.csproj ├── Symbol.cs ├── Timetag.cs ├── UDPListener.cs ├── UDPSender.cs └── Utils.cs /Caramel.Client.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client.sln -------------------------------------------------------------------------------- /Caramel.Client/ARKitSkeletonDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/ARKitSkeletonDelegate.cs -------------------------------------------------------------------------------- /Caramel.Client/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/AppDelegate.cs -------------------------------------------------------------------------------- /Caramel.Client/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-1024.png -------------------------------------------------------------------------------- /Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-20.png -------------------------------------------------------------------------------- /Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-20@2x.png -------------------------------------------------------------------------------- /Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-20@3x.png -------------------------------------------------------------------------------- /Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-29.png -------------------------------------------------------------------------------- /Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-29@2x.png -------------------------------------------------------------------------------- /Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-29@3x.png -------------------------------------------------------------------------------- /Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-40.png -------------------------------------------------------------------------------- /Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-40@2x.png -------------------------------------------------------------------------------- /Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-40@3x.png -------------------------------------------------------------------------------- /Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-60@2x.png -------------------------------------------------------------------------------- /Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-60@3x.png -------------------------------------------------------------------------------- /Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-76.png -------------------------------------------------------------------------------- /Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-76@2x.png -------------------------------------------------------------------------------- /Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Assets.xcassets/AppIcon.appiconset/icon_1024px-83.5@2x.png -------------------------------------------------------------------------------- /Caramel.Client/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Caramel.Client/Caramel.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Caramel.Client.csproj -------------------------------------------------------------------------------- /Caramel.Client/CustomTabBar.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/CustomTabBar.xib -------------------------------------------------------------------------------- /Caramel.Client/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Entitlements.plist -------------------------------------------------------------------------------- /Caramel.Client/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Info.plist -------------------------------------------------------------------------------- /Caramel.Client/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Main.cs -------------------------------------------------------------------------------- /Caramel.Client/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Main.storyboard -------------------------------------------------------------------------------- /Caramel.Client/PreviewViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/PreviewViewController.cs -------------------------------------------------------------------------------- /Caramel.Client/PreviewViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/PreviewViewController.designer.cs -------------------------------------------------------------------------------- /Caramel.Client/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Caramel.Client/Resources/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/Resources/LaunchScreen.xib -------------------------------------------------------------------------------- /Caramel.Client/SceneDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/SceneDelegate.cs -------------------------------------------------------------------------------- /Caramel.Client/SceneDelegate.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/SceneDelegate.designer.cs -------------------------------------------------------------------------------- /Caramel.Client/SettingsViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/SettingsViewController.cs -------------------------------------------------------------------------------- /Caramel.Client/SettingsViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/Caramel.Client/SettingsViewController.designer.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/README.md -------------------------------------------------------------------------------- /SharpOSC.iOS/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/SharpOSC.iOS/Extensions.cs -------------------------------------------------------------------------------- /SharpOSC.iOS/Midi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/SharpOSC.iOS/Midi.cs -------------------------------------------------------------------------------- /SharpOSC.iOS/OscBundle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/SharpOSC.iOS/OscBundle.cs -------------------------------------------------------------------------------- /SharpOSC.iOS/OscMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/SharpOSC.iOS/OscMessage.cs -------------------------------------------------------------------------------- /SharpOSC.iOS/OscPacket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/SharpOSC.iOS/OscPacket.cs -------------------------------------------------------------------------------- /SharpOSC.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/SharpOSC.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SharpOSC.iOS/RGBA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/SharpOSC.iOS/RGBA.cs -------------------------------------------------------------------------------- /SharpOSC.iOS/SharpOSC.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/SharpOSC.iOS/SharpOSC.iOS.csproj -------------------------------------------------------------------------------- /SharpOSC.iOS/Symbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/SharpOSC.iOS/Symbol.cs -------------------------------------------------------------------------------- /SharpOSC.iOS/Timetag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/SharpOSC.iOS/Timetag.cs -------------------------------------------------------------------------------- /SharpOSC.iOS/UDPListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/SharpOSC.iOS/UDPListener.cs -------------------------------------------------------------------------------- /SharpOSC.iOS/UDPSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/SharpOSC.iOS/UDPSender.cs -------------------------------------------------------------------------------- /SharpOSC.iOS/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MochiDoesVR/Caramel-For-VRChat/HEAD/SharpOSC.iOS/Utils.cs --------------------------------------------------------------------------------