├── .editorconfig ├── .gitmodules ├── .rive_head ├── Goldens ├── Goldens.cs ├── Goldens.csproj └── Properties │ └── launchSettings.json ├── README.txt ├── RiveSharp.Views.UWP ├── Properties │ ├── AssemblyInfo.cs │ └── RiveSharp.Views.UWP.rd.xml ├── RivePlayer.Properties.cs ├── RivePlayer.cs ├── RiveSharp.Views.UWP.csproj ├── StateMachineInput.cs └── StateMachineInputCollection.cs ├── RiveSharp ├── 2D.cs ├── Factory.cs ├── RenderImage.cs ├── RenderPaint.cs ├── RenderPath.cs ├── Renderer.cs ├── RiveAPI.cs ├── RiveSharp.csproj ├── RiveSharp.nuspec ├── RiveSharp.targets ├── Scene.cs └── create_nupkg.sh ├── RiveSharpSample.sln ├── native ├── RiveSharpInterop.cpp ├── premake5.lua └── premake5_wasm.lua └── samples ├── StateMachineInputs ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml └── StateMachineInputs.csproj └── Viewer ├── App.xaml ├── App.xaml.cs ├── Assets ├── LockScreenLogo.scale-200.png ├── SplashScreen.scale-200.png ├── Square150x150Logo.scale-200.png ├── Square44x44Logo.scale-200.png ├── Square44x44Logo.targetsize-24_altform-unplated.png ├── StoreLogo.png ├── Wide310x150Logo.scale-200.png ├── ball.riv ├── runner.riv ├── switch_event_example.riv └── tape.riv ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties ├── AssemblyInfo.cs └── Default.rd.xml ├── Viewer.csproj └── Viewer.csproj.user /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/.gitmodules -------------------------------------------------------------------------------- /.rive_head: -------------------------------------------------------------------------------- 1 | 24d9162103a73712ba3c80cfc909fee6948a0089 2 | -------------------------------------------------------------------------------- /Goldens/Goldens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/Goldens/Goldens.cs -------------------------------------------------------------------------------- /Goldens/Goldens.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/Goldens/Goldens.csproj -------------------------------------------------------------------------------- /Goldens/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/Goldens/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/README.txt -------------------------------------------------------------------------------- /RiveSharp.Views.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/RiveSharp.Views.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RiveSharp.Views.UWP/Properties/RiveSharp.Views.UWP.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/RiveSharp.Views.UWP/Properties/RiveSharp.Views.UWP.rd.xml -------------------------------------------------------------------------------- /RiveSharp.Views.UWP/RivePlayer.Properties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/RiveSharp.Views.UWP/RivePlayer.Properties.cs -------------------------------------------------------------------------------- /RiveSharp.Views.UWP/RivePlayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/RiveSharp.Views.UWP/RivePlayer.cs -------------------------------------------------------------------------------- /RiveSharp.Views.UWP/RiveSharp.Views.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/RiveSharp.Views.UWP/RiveSharp.Views.UWP.csproj -------------------------------------------------------------------------------- /RiveSharp.Views.UWP/StateMachineInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/RiveSharp.Views.UWP/StateMachineInput.cs -------------------------------------------------------------------------------- /RiveSharp.Views.UWP/StateMachineInputCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/RiveSharp.Views.UWP/StateMachineInputCollection.cs -------------------------------------------------------------------------------- /RiveSharp/2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/RiveSharp/2D.cs -------------------------------------------------------------------------------- /RiveSharp/Factory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/RiveSharp/Factory.cs -------------------------------------------------------------------------------- /RiveSharp/RenderImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/RiveSharp/RenderImage.cs -------------------------------------------------------------------------------- /RiveSharp/RenderPaint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/RiveSharp/RenderPaint.cs -------------------------------------------------------------------------------- /RiveSharp/RenderPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/RiveSharp/RenderPath.cs -------------------------------------------------------------------------------- /RiveSharp/Renderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/RiveSharp/Renderer.cs -------------------------------------------------------------------------------- /RiveSharp/RiveAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/RiveSharp/RiveAPI.cs -------------------------------------------------------------------------------- /RiveSharp/RiveSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/RiveSharp/RiveSharp.csproj -------------------------------------------------------------------------------- /RiveSharp/RiveSharp.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/RiveSharp/RiveSharp.nuspec -------------------------------------------------------------------------------- /RiveSharp/RiveSharp.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/RiveSharp/RiveSharp.targets -------------------------------------------------------------------------------- /RiveSharp/Scene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/RiveSharp/Scene.cs -------------------------------------------------------------------------------- /RiveSharp/create_nupkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/RiveSharp/create_nupkg.sh -------------------------------------------------------------------------------- /RiveSharpSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/RiveSharpSample.sln -------------------------------------------------------------------------------- /native/RiveSharpInterop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/native/RiveSharpInterop.cpp -------------------------------------------------------------------------------- /native/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/native/premake5.lua -------------------------------------------------------------------------------- /native/premake5_wasm.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/native/premake5_wasm.lua -------------------------------------------------------------------------------- /samples/StateMachineInputs/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/StateMachineInputs/App.xaml -------------------------------------------------------------------------------- /samples/StateMachineInputs/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/StateMachineInputs/App.xaml.cs -------------------------------------------------------------------------------- /samples/StateMachineInputs/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/StateMachineInputs/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/StateMachineInputs/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/StateMachineInputs/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/StateMachineInputs/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/StateMachineInputs/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/StateMachineInputs/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/StateMachineInputs/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/StateMachineInputs/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/StateMachineInputs/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/StateMachineInputs/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/StateMachineInputs/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/StateMachineInputs/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/StateMachineInputs/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/StateMachineInputs/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/StateMachineInputs/MainPage.xaml -------------------------------------------------------------------------------- /samples/StateMachineInputs/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/StateMachineInputs/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/StateMachineInputs/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/StateMachineInputs/Package.appxmanifest -------------------------------------------------------------------------------- /samples/StateMachineInputs/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/StateMachineInputs/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/StateMachineInputs/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/StateMachineInputs/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/StateMachineInputs/StateMachineInputs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/StateMachineInputs/StateMachineInputs.csproj -------------------------------------------------------------------------------- /samples/Viewer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/Viewer/App.xaml -------------------------------------------------------------------------------- /samples/Viewer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/Viewer/App.xaml.cs -------------------------------------------------------------------------------- /samples/Viewer/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/Viewer/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /samples/Viewer/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/Viewer/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /samples/Viewer/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/Viewer/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/Viewer/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/Viewer/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /samples/Viewer/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/Viewer/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /samples/Viewer/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/Viewer/Assets/StoreLogo.png -------------------------------------------------------------------------------- /samples/Viewer/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/Viewer/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /samples/Viewer/Assets/ball.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/Viewer/Assets/ball.riv -------------------------------------------------------------------------------- /samples/Viewer/Assets/runner.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/Viewer/Assets/runner.riv -------------------------------------------------------------------------------- /samples/Viewer/Assets/switch_event_example.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/Viewer/Assets/switch_event_example.riv -------------------------------------------------------------------------------- /samples/Viewer/Assets/tape.riv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/Viewer/Assets/tape.riv -------------------------------------------------------------------------------- /samples/Viewer/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/Viewer/MainPage.xaml -------------------------------------------------------------------------------- /samples/Viewer/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/Viewer/MainPage.xaml.cs -------------------------------------------------------------------------------- /samples/Viewer/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/Viewer/Package.appxmanifest -------------------------------------------------------------------------------- /samples/Viewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/Viewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /samples/Viewer/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/Viewer/Properties/Default.rd.xml -------------------------------------------------------------------------------- /samples/Viewer/Viewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/Viewer/Viewer.csproj -------------------------------------------------------------------------------- /samples/Viewer/Viewer.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rive-app/rive-sharp/HEAD/samples/Viewer/Viewer.csproj.user --------------------------------------------------------------------------------