├── .gitattributes ├── .github └── workflows │ ├── build.yaml │ └── cla-validation.yaml ├── .gitignore ├── .gitmodules ├── .run └── Publish SuperScreenShotterVR to folder.run.xml ├── CLA.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── SuperScreenShotterVR.sln └── SuperScreenShotterVR ├── App.config ├── App.xaml ├── App.xaml.cs ├── MainController.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Remote ├── ScreenshotMessage.cs └── ScreenshotResponse.cs ├── SuperScreenShotterVR.csproj ├── actions.json ├── app.vrmanifest ├── bindings_gamepad.json ├── bindings_knuckles.json ├── example_discord_pipe.html └── resources ├── logo.ico ├── logo.png ├── pitchindicator.png ├── reticle.png ├── rollindicator.png ├── screenshot.wav └── viewfinder.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/cla-validation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/.github/workflows/cla-validation.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/.gitmodules -------------------------------------------------------------------------------- /.run/Publish SuperScreenShotterVR to folder.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/.run/Publish SuperScreenShotterVR to folder.run.xml -------------------------------------------------------------------------------- /CLA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/CLA.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/README.md -------------------------------------------------------------------------------- /SuperScreenShotterVR.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR.sln -------------------------------------------------------------------------------- /SuperScreenShotterVR/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/App.config -------------------------------------------------------------------------------- /SuperScreenShotterVR/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/App.xaml -------------------------------------------------------------------------------- /SuperScreenShotterVR/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/App.xaml.cs -------------------------------------------------------------------------------- /SuperScreenShotterVR/MainController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/MainController.cs -------------------------------------------------------------------------------- /SuperScreenShotterVR/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/MainWindow.xaml -------------------------------------------------------------------------------- /SuperScreenShotterVR/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/MainWindow.xaml.cs -------------------------------------------------------------------------------- /SuperScreenShotterVR/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SuperScreenShotterVR/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/Properties/Resources.resx -------------------------------------------------------------------------------- /SuperScreenShotterVR/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SuperScreenShotterVR/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/Properties/Settings.settings -------------------------------------------------------------------------------- /SuperScreenShotterVR/Remote/ScreenshotMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/Remote/ScreenshotMessage.cs -------------------------------------------------------------------------------- /SuperScreenShotterVR/Remote/ScreenshotResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/Remote/ScreenshotResponse.cs -------------------------------------------------------------------------------- /SuperScreenShotterVR/SuperScreenShotterVR.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/SuperScreenShotterVR.csproj -------------------------------------------------------------------------------- /SuperScreenShotterVR/actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/actions.json -------------------------------------------------------------------------------- /SuperScreenShotterVR/app.vrmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/app.vrmanifest -------------------------------------------------------------------------------- /SuperScreenShotterVR/bindings_gamepad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/bindings_gamepad.json -------------------------------------------------------------------------------- /SuperScreenShotterVR/bindings_knuckles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/bindings_knuckles.json -------------------------------------------------------------------------------- /SuperScreenShotterVR/example_discord_pipe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/example_discord_pipe.html -------------------------------------------------------------------------------- /SuperScreenShotterVR/resources/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/resources/logo.ico -------------------------------------------------------------------------------- /SuperScreenShotterVR/resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/resources/logo.png -------------------------------------------------------------------------------- /SuperScreenShotterVR/resources/pitchindicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/resources/pitchindicator.png -------------------------------------------------------------------------------- /SuperScreenShotterVR/resources/reticle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/resources/reticle.png -------------------------------------------------------------------------------- /SuperScreenShotterVR/resources/rollindicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/resources/rollindicator.png -------------------------------------------------------------------------------- /SuperScreenShotterVR/resources/screenshot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/resources/screenshot.wav -------------------------------------------------------------------------------- /SuperScreenShotterVR/resources/viewfinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BOLL7708/SuperScreenShotterVR/HEAD/SuperScreenShotterVR/resources/viewfinder.png --------------------------------------------------------------------------------