├── .editorconfig ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml ├── .gitignore ├── .yamato ├── compile-package.yml ├── coverage.yml ├── format.yml ├── package.metafile ├── promotion.yml ├── upm-ci-publish-github-release.yml ├── upm-ci-renderstreaming-packages.yml ├── upm-ci-template.yml └── upm-ci-webapp.yml ├── BuildScripts~ ├── add_internal_registry_manifest.patch ├── convert_symlinks.cmd ├── convert_symlinks.sh ├── template │ └── remote.sh.template └── test_package_mac.sh ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── RenderStreaming~ ├── Assets │ ├── InputSystem.inputsettings.asset │ ├── InputSystem.inputsettings.asset.meta │ ├── Samples │ ├── Samples.meta │ ├── XR.meta │ └── XR │ │ ├── Loaders.meta │ │ ├── Loaders │ │ ├── AR Core Loader.asset │ │ ├── AR Core Loader.asset.meta │ │ ├── AR Kit Loader.asset │ │ └── AR Kit Loader.asset.meta │ │ ├── Settings.meta │ │ ├── Settings │ │ ├── AR Core Settings.asset │ │ ├── AR Core Settings.asset.meta │ │ ├── AR Kit Settings.asset │ │ └── AR Kit Settings.asset.meta │ │ ├── XRGeneralSettings.asset │ │ └── XRGeneralSettings.asset.meta ├── Packages │ ├── com.unity.renderstreaming │ ├── manifest.json │ └── packages-lock.json └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── HDRPProjectSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── PackageManagerSettings.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings-android-vulkan.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── RenderStreamingProjectSettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── URPProjectSettings.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ ├── XRPackageSettings.asset │ └── XRSettings.asset ├── TestProjects ├── Empty │ ├── Assets │ │ ├── .gitkeep │ │ ├── Editor.meta │ │ └── Editor │ │ │ ├── PostProcess.cs │ │ │ └── PostProcess.cs.meta │ ├── Packages │ │ ├── manifest.json │ │ └── packages-lock.json │ └── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── HDRPProjectSettings.asset │ │ ├── InputManager.asset │ │ ├── MemorySettings.asset │ │ ├── NavMeshAreas.asset │ │ ├── PackageManagerSettings.asset │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings-android-vulkan.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── SceneTemplateSettings.json │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── URPProjectSettings.asset │ │ ├── UnityConnectSettings.asset │ │ ├── VFXManager.asset │ │ ├── VersionControlSettings.asset │ │ ├── XRPackageSettings.asset │ │ └── XRSettings.asset ├── HDRPTests │ ├── Assets │ │ └── .gitkeep │ ├── Packages │ │ ├── manifest.json │ │ └── packages-lock.json │ └── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── HDRPProjectSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshAreas.asset │ │ ├── PackageManagerSettings.asset │ │ ├── Physics2DSettings.asset │ │ ├── PresetManager.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── UnityConnectSettings.asset │ │ ├── VFXManager.asset │ │ └── XRSettings.asset └── URPTests │ ├── Assets │ └── .gitkeep │ ├── Packages │ ├── manifest.json │ └── packages-lock.json │ └── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── PackageManagerSettings.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── URPProjectSettings.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ └── XRSettings.asset ├── Third Party Notices.md ├── WebApp ├── .editorconfig ├── .eslintrc.cjs ├── client │ ├── .eslintrc.json │ ├── jest.config.js │ ├── jest.setup.js │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── bidirectional │ │ │ ├── css │ │ │ │ └── style.css │ │ │ ├── index.html │ │ │ └── js │ │ │ │ ├── main.js │ │ │ │ └── sendvideo.js │ │ ├── css │ │ │ └── main.css │ │ ├── images │ │ │ ├── FullScreen.png │ │ │ ├── Play.png │ │ │ └── favicon.ico │ │ ├── index.html │ │ ├── js │ │ │ ├── config.js │ │ │ ├── icesettings.js │ │ │ ├── main.js │ │ │ ├── stats.js │ │ │ └── videoplayer.js │ │ ├── multiplay │ │ │ ├── css │ │ │ │ └── style.css │ │ │ ├── index.html │ │ │ └── js │ │ │ │ └── main.js │ │ ├── receiver │ │ │ ├── css │ │ │ │ └── style.css │ │ │ ├── index.html │ │ │ └── js │ │ │ │ └── main.js │ │ └── videoplayer │ │ │ ├── css │ │ │ └── style.css │ │ │ ├── images │ │ │ ├── FullScreen.png │ │ │ └── Play.png │ │ │ ├── index.html │ │ │ └── js │ │ │ ├── gamepadEvents.js │ │ │ ├── main.js │ │ │ ├── register-events.js │ │ │ └── video-player.js │ ├── src │ │ ├── charnumber.js │ │ ├── gamepadbutton.js │ │ ├── gamepadhandler.js │ │ ├── inputdevice.js │ │ ├── inputremoting.js │ │ ├── keymap.js │ │ ├── logger.js │ │ ├── memoryhelper.js │ │ ├── mousebutton.js │ │ ├── peer.js │ │ ├── pointercorrect.js │ │ ├── renderstreaming.js │ │ ├── sender.js │ │ ├── signaling.js │ │ ├── touchflags.js │ │ └── touchphase.js │ └── test │ │ ├── domrect.js │ │ ├── domvideoelement.js │ │ ├── inputdevice.test.js │ │ ├── inputremoting.test.js │ │ ├── memoryhelper.test.js │ │ ├── mocksignaling.js │ │ ├── peerconnection.test.js │ │ ├── peerconnectionmock.js │ │ ├── pointercorrect.test.js │ │ ├── renderstreaming.test.js │ │ ├── resizeobservermock.js │ │ ├── sender.test.js │ │ ├── signaling.test.js │ │ └── testutils.js ├── jest.config.js ├── package-lock.json ├── package.json ├── run.bat ├── src │ ├── class │ │ ├── answer.ts │ │ ├── candidate.ts │ │ ├── httphandler.ts │ │ ├── offer.ts │ │ ├── options.ts │ │ └── websockethandler.ts │ ├── index.ts │ ├── log.ts │ ├── server.ts │ ├── signaling.ts │ └── websocket.ts ├── test │ ├── env_macos.postman_environment.json │ ├── httphandler.test.ts │ ├── renderstreaming.postman_collection.json │ └── websockethandler.test.ts ├── tsconfig.build.json ├── tsconfig.json └── tsconfig.lint.json ├── com.unity.renderstreaming ├── CHANGELOG.md ├── CHANGELOG.md.meta ├── Documentation~ │ ├── TableOfContents.md │ ├── audio-streaming.md │ ├── browser-input.md │ ├── commandline-option.md │ ├── components.md │ ├── control-camera.md │ ├── create-scene.md │ ├── customize-webapp.md │ ├── data-streaming.md │ ├── dev-streaming-app-intro.md │ ├── faq.md │ ├── filter.yml │ ├── https.md │ ├── images │ │ ├── access_webapp_from_browser.png │ │ ├── add_broadcast_component.png │ │ ├── add_customeventsystem_component.png │ │ ├── add_inputreceiver_component.png │ │ ├── add_signalingmanager_component.png │ │ ├── add_videostreamsender_component.png │ │ ├── assign_broadcast_to_handler.png │ │ ├── assign_event_to_inputreceiver.png │ │ ├── assign_inputactions_to_inputreceiver.png │ │ ├── assign_inputreceiver_to_streams.png │ │ ├── assign_videostreamsender_to_streams.png │ │ ├── audiostreamreceiver_inspector.png │ │ ├── audiostreamsender_inspector.png │ │ ├── broadcast_inspector.png │ │ ├── broadcast_sample_signaling.png │ │ ├── browser.png │ │ ├── browser_bidirectional_sample_startvideo.png │ │ ├── browser_hdrpscene.png │ │ ├── browser_index_page.png │ │ ├── browser_mainpage.png │ │ ├── browser_mainpage_bidirectional.png │ │ ├── browser_videoplayer.png │ │ ├── browser_warning_cert.png │ │ ├── camerastreamsender_inspector.png │ │ ├── change_device_index_on_webcamstreamer.png │ │ ├── change_properties_websocket.png │ │ ├── connect_from_browser.png │ │ ├── control_camera_01.png │ │ ├── control_camera_02.png │ │ ├── control_camera_03.png │ │ ├── control_camera_04.png │ │ ├── control_camera_05.png │ │ ├── control_camera_06.png │ │ ├── control_camera_07.png │ │ ├── create_new_scene.png │ │ ├── create_playercontroler_component.png │ │ ├── datareceiver_inspector.png │ │ ├── datasender_inspector.png │ │ ├── disable_automaticstreaming.png │ │ ├── download_template_package.png │ │ ├── download_webapp.png │ │ ├── enable_run_in_background.png │ │ ├── feature_multicamera.png │ │ ├── furioos_signaling.png │ │ ├── furioos_stream_type.png │ │ ├── furioos_zip_folder.png │ │ ├── gyro_sample_signaling_url_on_inspector.png │ │ ├── hdrp_sample.png │ │ ├── hdrp_unitypackage.png │ │ ├── hdrpscene.png │ │ ├── https_step3_01.png │ │ ├── https_step3_01_jp.png │ │ ├── https_step3_02.png │ │ ├── https_step3_02_jp.png │ │ ├── https_step3_03.png │ │ ├── https_step3_03_jp.png │ │ ├── https_step3_04.png │ │ ├── https_step3_04_jp.png │ │ ├── https_step3_05.png │ │ ├── https_step3_05_jp.png │ │ ├── https_step3_06.png │ │ ├── https_step3_06_jp.png │ │ ├── https_step3_07.png │ │ ├── https_step3_07_jp.png │ │ ├── https_step3_08.png │ │ ├── https_step3_08_jp.png │ │ ├── https_step3_09.png │ │ ├── https_step3_09_jp.png │ │ ├── https_step3_10.png │ │ ├── https_step3_10_jp.png │ │ ├── https_step3_11.png │ │ ├── https_step3_11_jp.png │ │ ├── https_step3_12.png │ │ ├── https_step3_12_jp.png │ │ ├── ice-server-configuration-browser.png │ │ ├── input_standaloneinputmodule.png │ │ ├── input_system_backend.png │ │ ├── inputreceiver_inspector.png │ │ ├── inputsender_inspector.png │ │ ├── inputsystem-version.png │ │ ├── install_input_webrtc_git_url.png │ │ ├── install_renderstreaming_package.png │ │ ├── install_search_renderstreaming_package.png │ │ ├── install_select_add_package_by_name.png │ │ ├── install_select_add_package_from_git_url.png │ │ ├── install_select_packman_menu.png │ │ ├── install_select_packman_menu_unity2019.png │ │ ├── install_select_packman_menu_unity2020.png │ │ ├── install_select_show_preview_packages.png │ │ ├── install_webrtc_package.png │ │ ├── launch_webapp_terminal.png │ │ ├── launch_webserver_cmd.png │ │ ├── launch_webserver_explorer.png │ │ ├── launch_webserver_private_mode.png │ │ ├── launch_webserver_public_mode.png │ │ ├── launch_webserver_public_mode_on_windows.png │ │ ├── microphonesender_inspector.png │ │ ├── multitouch.gif │ │ ├── open_ar_scene.png │ │ ├── open_bidirectional_scene.png │ │ ├── open_broadcast_scene.png │ │ ├── open_gyro_scene.png │ │ ├── open_gyroscope_scene.png │ │ ├── open_multiplay_scene.png │ │ ├── open_renderpipeline_scene.png │ │ ├── open_webbrowserinput_scene.png │ │ ├── package_renderstreaming.png │ │ ├── play_mode.png │ │ ├── play_sample_ar.png │ │ ├── play_sample_gyro.png │ │ ├── play_sample_multiplay.png │ │ ├── play_sample_receiver.png │ │ ├── playersettings_arcore.png │ │ ├── playersettings_arkit.png │ │ ├── playground_scene.png │ │ ├── playground_scene_virtualpad.png │ │ ├── postman_example.png │ │ ├── receiver_sample_on_browser.png │ │ ├── remoteplayerinput_inspector.png │ │ ├── renderstreaming_overview.png │ │ ├── renderstreaming_package.png │ │ ├── renderstreaming_receivevideosample.png │ │ ├── renderstreaming_samples.png │ │ ├── renderstreaming_sequence.png │ │ ├── renderstreaming_settings.png │ │ ├── renderstreaming_system_structure.png │ │ ├── renderstreaming_wizard.png │ │ ├── sample_bidirectional_camerausagedescription.png │ │ ├── sample_bidirectional_entersameid.png │ │ ├── sample_bidirectional_entersameid_browser.png │ │ ├── sample_bidirectional_setup.png │ │ ├── sample_bidirectional_streaming.png │ │ ├── sample_bidirectional_streaming_with_browser.png │ │ ├── sample_buildsettings.png │ │ ├── sample_gyroscope_build_settings.png │ │ ├── sample_menu.png │ │ ├── sample_menu_scene.png │ │ ├── sample_menu_setting_panel.png │ │ ├── sample_multiplay_select_host.png │ │ ├── screenstreamsender_inspector.png │ │ ├── select_download_folder.png │ │ ├── select_eventsystem_object.png │ │ ├── select_receiver_sample_on_browser.png │ │ ├── set_background_behavior.png │ │ ├── set_playmode_input_behavior.png │ │ ├── show_preview_packages.png │ │ ├── signalingmanager_inspector.png │ │ ├── simpleplayerinput_inspector.png │ │ ├── simplescene.png │ │ ├── singleconnection_inspector.png │ │ ├── template_in_unityhub.png │ │ ├── turn-connection-testing.png │ │ ├── turn-firewall-rules.png │ │ ├── turn-renderstreaming-inspector.png │ │ ├── turn-server-settings.png │ │ ├── unityhub_createproject.png │ │ ├── unityhub_select_template.png │ │ ├── videostreamreceiver_inspector.png │ │ ├── videostreamsender_inspector.png │ │ ├── webbrowserinput_sample_signaling_url_on_inspector.png │ │ ├── webbrowserinputchannelreceiver_inspector.png │ │ ├── webcamstreamsender_inspector.png │ │ ├── webrtc_package_manager.png │ │ ├── webserver.png │ │ ├── websocket_signaling_inspector.png │ │ ├── wizard_download_webapp.png │ │ ├── wizard_fixall.png │ │ ├── xrplugin_enable_arcore.png │ │ └── xrplugin_enable_arkit.png │ ├── index.md │ ├── overview.md │ ├── sample-arfoundation.md │ ├── sample-bidirectional.md │ ├── sample-broadcast.md │ ├── sample-browserinput.md │ ├── sample-gyroscope.md │ ├── sample-multiplay.md │ ├── sample-receiver.md │ ├── sample-renderpipeline.md │ ├── samples.md │ ├── settings.md │ ├── signaling-type.md │ ├── streaming-management.md │ ├── turnserver.md │ ├── tutorial.md │ ├── video-streaming.md │ ├── webapp.md │ └── wizard.md ├── Editor.meta ├── Editor │ ├── AssemblyInfo.cs │ ├── AssemblyInfo.cs.meta │ ├── AudioStreamReceiverEditor.cs │ ├── AudioStreamReceiverEditor.cs.meta │ ├── AudioStreamSenderEditor.cs │ ├── AudioStreamSenderEditor.cs.meta │ ├── ConfigInfoLine.cs │ ├── ConfigInfoLine.cs.meta │ ├── CustomSignalingSettingsEditor.cs │ ├── CustomSignalingSettingsEditor.cs.meta │ ├── IRequestJob.cs │ ├── IRequestJob.cs.meta │ ├── Icon.meta │ ├── Icon │ │ ├── Error.png │ │ ├── Error.png.meta │ │ ├── OK.png │ │ └── OK.png.meta │ ├── InputSystem.meta │ ├── InputSystem │ │ ├── InputReceiverEditor.cs │ │ └── InputReceiverEditor.cs.meta │ ├── PropertyDrawers.meta │ ├── PropertyDrawers │ │ ├── BitrateDrawer.cs │ │ ├── BitrateDrawer.cs.meta │ │ ├── CodecDrawer.cs │ │ ├── CodecDrawer.cs.meta │ │ ├── FrameRateDrawer.cs │ │ ├── FrameRateDrawer.cs.meta │ │ ├── RenderTextureDepthBufferDrawer.cs │ │ ├── RenderTextureDepthBufferDrawer.cs.meta │ │ ├── RenderTexureAntiAliasingDrawer.cs │ │ ├── RenderTexureAntiAliasingDrawer.cs.meta │ │ ├── ScaleResolutionDrawer.cs │ │ ├── ScaleResolutionDrawer.cs.meta │ │ ├── SignalingSettingsDrawer.cs │ │ ├── SignalingSettingsDrawer.cs.meta │ │ ├── StreamingSizeDrawer.cs │ │ └── StreamingSizeDrawer.cs.meta │ ├── RenderPipeline.meta │ ├── RenderPipeline │ │ ├── HDRPInitialSetupPostProcessor.cs │ │ ├── HDRPInitialSetupPostProcessor.cs.meta │ │ ├── URPInitialSetupPostProcessor.cs │ │ └── URPInitialSetupPostProcessor.cs.meta │ ├── RenderStreamingEditor.cs │ ├── RenderStreamingEditor.cs.meta │ ├── RenderStreamingProjectSettings.cs │ ├── RenderStreamingProjectSettings.cs.meta │ ├── RenderStreamingProjectSettingsProvider.cs │ ├── RenderStreamingProjectSettingsProvider.cs.meta │ ├── RenderStreamingSettingBuildProvider.cs │ ├── RenderStreamingSettingBuildProvider.cs.meta │ ├── RenderStreamingSettingsEditor.cs │ ├── RenderStreamingSettingsEditor.cs.meta │ ├── RenderStreamingWizard.cs │ ├── RenderStreamingWizard.cs.meta │ ├── ReorderableListField.cs │ ├── ReorderableListField.cs.meta │ ├── RequestExtensions.cs │ ├── RequestExtensions.cs.meta │ ├── RequestInfo.meta │ ├── RequestInfo │ │ ├── AddRequestInfo.cs │ │ ├── AddRequestInfo.cs.meta │ │ ├── ListRequestInfo.cs │ │ ├── ListRequestInfo.cs.meta │ │ ├── RemoveRequestInfo.cs │ │ ├── RemoveRequestInfo.cs.meta │ │ ├── SearchAllRequestInfo.cs │ │ ├── SearchAllRequestInfo.cs.meta │ │ ├── SearchRequestInfo.cs │ │ └── SearchRequestInfo.cs.meta │ ├── RequestJob.cs │ ├── RequestJob.cs.meta │ ├── RequestJobManager.cs │ ├── RequestJobManager.cs.meta │ ├── SerializedPropertyExtension.cs │ ├── SerializedPropertyExtension.cs.meta │ ├── SignalingManagerEditor.cs │ ├── SignalingManagerEditor.cs.meta │ ├── Styles.meta │ ├── Styles │ │ ├── RenderStreamingProjectSettings.uss │ │ ├── RenderStreamingProjectSettings.uss.meta │ │ ├── RenderStreamingWizard.uss │ │ └── RenderStreamingWizard.uss.meta │ ├── UXML.meta │ ├── UXML │ │ ├── RenderStreamingProjectSettings.uxml │ │ ├── RenderStreamingProjectSettings.uxml.meta │ │ ├── RenderStreamingWizard.uxml │ │ └── RenderStreamingWizard.uxml.meta │ ├── Unity.RenderStreaming.Editor.asmdef │ ├── Unity.RenderStreaming.Editor.asmdef.meta │ ├── VideoStreamReceiverEditor.cs │ ├── VideoStreamReceiverEditor.cs.meta │ ├── VideoStreamSenderEditor.cs │ ├── VideoStreamSenderEditor.cs.meta │ ├── WebAppDownloader.cs │ └── WebAppDownloader.cs.meta ├── LICENSE.md ├── LICENSE.md.meta ├── README.md ├── README.md.meta ├── Runtime.meta ├── Runtime │ ├── AssemblyInfo.cs │ ├── AssemblyInfo.cs.meta │ ├── Plugins.meta │ ├── Plugins │ │ ├── websocket-sharp-customheaders.dll │ │ └── websocket-sharp-customheaders.dll.meta │ ├── RenderStreamingSettings.asset │ ├── RenderStreamingSettings.asset.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── AudioCodecInfo.cs │ │ ├── AudioCodecInfo.cs.meta │ │ ├── AudioStreamReceiver.cs │ │ ├── AudioStreamReceiver.cs.meta │ │ ├── AudioStreamSender.cs │ │ ├── AudioStreamSender.cs.meta │ │ ├── AutomaticStreaming.cs │ │ ├── AutomaticStreaming.cs.meta │ │ ├── Broadcast.cs │ │ ├── Broadcast.cs.meta │ │ ├── Codec.cs │ │ ├── Codec.cs.meta │ │ ├── CommandLineParser.cs │ │ ├── CommandLineParser.cs.meta │ │ ├── DataChannelBase.cs │ │ ├── DataChannelBase.cs.meta │ │ ├── DateTimeExtension.cs │ │ ├── DateTimeExtension.cs.meta │ │ ├── ExecuteSignalingEvents.cs │ │ ├── ExecuteSignalingEvents.cs.meta │ │ ├── IRenderStreamingHandler.cs │ │ ├── IRenderStreamingHandler.cs.meta │ │ ├── ISignalingEventHandler.cs │ │ ├── ISignalingEventHandler.cs.meta │ │ ├── InputChannelReceiverBase.cs │ │ ├── InputChannelReceiverBase.cs.meta │ │ ├── InputPositionCorrector.cs │ │ ├── InputPositionCorrector.cs.meta │ │ ├── InputReceiver.cs │ │ ├── InputReceiver.cs.meta │ │ ├── InputSender.cs │ │ ├── InputSender.cs.meta │ │ ├── InputSystem.meta │ │ ├── InputSystem │ │ │ ├── ArrayHelpers.cs │ │ │ ├── ArrayHelpers.cs.meta │ │ │ ├── EmulateInputFieldEvent.cs │ │ │ ├── EmulateInputFieldEvent.cs.meta │ │ │ ├── InputDeviceExtension.cs │ │ │ ├── InputDeviceExtension.cs.meta │ │ │ ├── InputEditorUserSettings.cs │ │ │ ├── InputEditorUserSettings.cs.meta │ │ │ ├── InputManager.cs │ │ │ ├── InputManager.cs.meta │ │ │ ├── InputRemoting.cs │ │ │ ├── InputRemoting.cs.meta │ │ │ ├── MessageSerializer.cs │ │ │ ├── MessageSerializer.cs.meta │ │ │ ├── Receiver.cs │ │ │ ├── Receiver.cs.meta │ │ │ ├── Sender.cs │ │ │ └── Sender.cs.meta │ │ ├── PeerConnection.cs │ │ ├── PeerConnection.cs.meta │ │ ├── RenderStreaming.cs │ │ ├── RenderStreaming.cs.meta │ │ ├── RenderStreamingSettings.cs │ │ ├── RenderStreamingSettings.cs.meta │ │ ├── RenderTextureBlitter.cs │ │ ├── RenderTextureBlitter.cs.meta │ │ ├── Signaling.meta │ │ ├── Signaling │ │ │ ├── HttpSignaling.cs │ │ │ ├── HttpSignaling.cs.meta │ │ │ ├── HttpSignalingSettings.cs │ │ │ ├── HttpSignalingSettings.cs.meta │ │ │ ├── ISignaling.cs │ │ │ ├── ISignaling.cs.meta │ │ │ ├── SignalingMessage.cs │ │ │ ├── SignalingMessage.cs.meta │ │ │ ├── SignalingSettings.cs │ │ │ ├── SignalingSettings.cs.meta │ │ │ ├── SignalingSettingsObject.cs │ │ │ ├── SignalingSettingsObject.cs.meta │ │ │ ├── WebSocketSignaling.cs │ │ │ ├── WebSocketSignaling.cs.meta │ │ │ ├── WebSocketSignalingSettings.cs │ │ │ └── WebSocketSignalingSettings.cs.meta │ │ ├── SignalingEventData.cs │ │ ├── SignalingEventData.cs.meta │ │ ├── SignalingEventProvider.cs │ │ ├── SignalingEventProvider.cs.meta │ │ ├── SignalingHandlerBase.cs │ │ ├── SignalingHandlerBase.cs.meta │ │ ├── SignalingManager.cs │ │ ├── SignalingManager.cs.meta │ │ ├── SignalingManagerInternal.cs │ │ ├── SignalingManagerInternal.cs.meta │ │ ├── SingleConnection.cs │ │ ├── SingleConnection.cs.meta │ │ ├── StreamReceiverBase.cs │ │ ├── StreamReceiverBase.cs.meta │ │ ├── StreamSenderBase.cs │ │ ├── StreamSenderBase.cs.meta │ │ ├── VideoCodecInfo.cs │ │ ├── VideoCodecInfo.cs.meta │ │ ├── VideoStreamReceiver.cs │ │ ├── VideoStreamReceiver.cs.meta │ │ ├── VideoStreamSender.cs │ │ └── VideoStreamSender.cs.meta │ ├── SignalingSettings.asset │ ├── SignalingSettings.asset.meta │ ├── Unity.RenderStreaming.Runtime.asmdef │ └── Unity.RenderStreaming.Runtime.asmdef.meta ├── Samples~ │ ├── Example.meta │ └── Example │ │ ├── .sample.json │ │ ├── ARFoundation.meta │ │ ├── ARFoundation │ │ ├── ARFoundation.unity │ │ ├── ARFoundation.unity.meta │ │ ├── ARFoundationSample.cs │ │ ├── ARFoundationSample.cs.meta │ │ ├── AspectRatioFitterPatched.cs │ │ ├── AspectRatioFitterPatched.cs.meta │ │ ├── README.md │ │ └── README.md.meta │ │ ├── Bidirectional.meta │ │ ├── Bidirectional │ │ ├── Bidirectional.unity │ │ ├── Bidirectional.unity.meta │ │ ├── BidirectionalSample.cs │ │ └── BidirectionalSample.cs.meta │ │ ├── Broadcast.meta │ │ ├── Broadcast │ │ ├── Broadcast.unity │ │ ├── Broadcast.unity.meta │ │ ├── BroadcastSample.cs │ │ ├── BroadcastSample.cs.meta │ │ ├── CameraControl.inputactions │ │ ├── CameraControl.inputactions.meta │ │ ├── CustomEventSystem.cs │ │ ├── CustomEventSystem.cs.meta │ │ ├── DeltaWithButton.cs │ │ ├── DeltaWithButton.cs.meta │ │ ├── SimpleCameraControllerV2.cs │ │ ├── SimpleCameraControllerV2.cs.meta │ │ ├── UIControllerV2.cs │ │ └── UIControllerV2.cs.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── PostProcess.cs │ │ ├── PostProcess.cs.meta │ │ ├── SampleSetup.cs │ │ ├── SampleSetup.cs.meta │ │ ├── Unity.RenderStreaming.Sample.Editor.asmdef │ │ └── Unity.RenderStreaming.Sample.Editor.asmdef.meta │ │ ├── Gyro.meta │ │ ├── Gyro │ │ ├── Gyro.unity │ │ ├── Gyro.unity.meta │ │ ├── GyroSample.cs │ │ └── GyroSample.cs.meta │ │ ├── Menu.meta │ │ ├── Menu │ │ ├── BackButtonManager.prefab │ │ ├── BackButtonManager.prefab.meta │ │ ├── Menu.unity │ │ └── Menu.unity.meta │ │ ├── Multiplay.meta │ │ ├── Multiplay │ │ ├── FollowTransform.cs │ │ ├── FollowTransform.cs.meta │ │ ├── Guest.prefab │ │ ├── Guest.prefab.meta │ │ ├── Host.prefab │ │ ├── Host.prefab.meta │ │ ├── Multiplay.cs │ │ ├── Multiplay.cs.meta │ │ ├── Multiplay.unity │ │ ├── Multiplay.unity.meta │ │ ├── MultiplayChannel.cs │ │ ├── MultiplayChannel.cs.meta │ │ ├── MultiplaySample.cs │ │ ├── MultiplaySample.cs.meta │ │ ├── Player.inputactions │ │ ├── Player.inputactions.meta │ │ ├── Player.prefab │ │ ├── Player.prefab.meta │ │ ├── PlayerController.cs │ │ └── PlayerController.cs.meta │ │ ├── Receiver.meta │ │ ├── Receiver │ │ ├── AudioSpectrumView.cs │ │ ├── AudioSpectrumView.cs.meta │ │ ├── Receiver.unity │ │ ├── Receiver.unity.meta │ │ ├── ReceiverSample.cs │ │ └── ReceiverSample.cs.meta │ │ ├── RenderPipeline.meta │ │ ├── RenderPipeline │ │ ├── HDRP │ │ ├── HDRP.meta │ │ ├── HDRP.unity │ │ ├── HDRP.unity.meta │ │ ├── URP.meta │ │ ├── URP.unity │ │ ├── URP.unity.meta │ │ └── URP │ │ │ ├── DefaultURPMaterial.mat │ │ │ ├── DefaultURPMaterial.mat.meta │ │ │ ├── ForwardRenderer.asset │ │ │ ├── ForwardRenderer.asset.meta │ │ │ ├── UniversalRenderPipelineAsset.asset │ │ │ └── UniversalRenderPipelineAsset.asset.meta │ │ ├── RenderStreamingSample.asset │ │ ├── RenderStreamingSample.asset.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ ├── BackButton.cs │ │ ├── BackButton.cs.meta │ │ ├── CopyTransform.cs │ │ ├── CopyTransform.cs.meta │ │ ├── SampleManager.cs │ │ ├── SampleManager.cs.meta │ │ ├── SceneSelectUI.cs │ │ └── SceneSelectUI.cs.meta │ │ ├── Stats.meta │ │ ├── Stats │ │ ├── AssemblyInfo.cs │ │ ├── AssemblyInfo.cs.meta │ │ ├── ShowStatsUI.cs │ │ ├── ShowStatsUI.cs.meta │ │ ├── StatsUI.prefab │ │ ├── StatsUI.prefab.meta │ │ ├── Unity.RenderStreaming.Sample.Stats.asmdef │ │ └── Unity.RenderStreaming.Sample.Stats.asmdef.meta │ │ ├── Unity.RenderStreaming.Samples.asmdef │ │ ├── Unity.RenderStreaming.Samples.asmdef.meta │ │ ├── WebBrowserInput.meta │ │ └── WebBrowserInput │ │ ├── SimpleCameraController.cs │ │ ├── SimpleCameraController.cs.meta │ │ ├── UIController.cs │ │ ├── UIController.cs.meta │ │ ├── WebBrowserInput.unity │ │ ├── WebBrowserInput.unity.meta │ │ ├── WebBrowserInputChannelReceiver.meta │ │ ├── WebBrowserInputChannelReceiver │ │ ├── RemoteInput.cs │ │ ├── RemoteInput.cs.meta │ │ ├── Unity.RenderStreaming.Sample.WebBrowserInput.asmdef │ │ ├── Unity.RenderStreaming.Sample.WebBrowserInput.asmdef.meta │ │ ├── WebBrowserInputChannelReceiver.cs │ │ └── WebBrowserInputChannelReceiver.cs.meta │ │ ├── WebBrowserInputSample.cs │ │ ├── WebBrowserInputSample.cs.meta │ │ ├── sin1000Hz.wav │ │ └── sin1000Hz.wav.meta ├── Tests.meta ├── Tests │ ├── .tests.json │ ├── Editor.meta │ ├── Editor │ │ ├── AudioCodecInfoObject.cs │ │ ├── AudioCodecInfoObject.cs.meta │ │ ├── EditorTest.cs │ │ ├── EditorTest.cs.meta │ │ ├── EditorUITest.cs │ │ ├── EditorUITest.cs.meta │ │ ├── RenderStreamingSettings.asset │ │ ├── RenderStreamingSettings.asset.meta │ │ ├── RenderStreamingTest.cs │ │ ├── RenderStreamingTest.cs.meta │ │ ├── RequestJobTest.cs │ │ ├── RequestJobTest.cs.meta │ │ ├── Unity.RenderStreaming.EditorTests.asmdef │ │ ├── Unity.RenderStreaming.EditorTests.asmdef.meta │ │ ├── VideoCodecInfoObject.cs │ │ └── VideoCodecInfoObject.cs.meta │ ├── Runtime.meta │ └── Runtime │ │ ├── ArrayHelperTest.cs │ │ ├── ArrayHelperTest.cs.meta │ │ ├── Attribute.cs │ │ ├── Attribute.cs.meta │ │ ├── CommandLineParserTest.cs │ │ ├── CommandLineParserTest.cs.meta │ │ ├── ConditionalIgnore.cs │ │ ├── ConditionalIgnore.cs.meta │ │ ├── DataTimeExtensionTest.cs │ │ ├── DataTimeExtensionTest.cs.meta │ │ ├── InputPositionCorrectorTest.cs │ │ ├── InputPositionCorrectorTest.cs.meta │ │ ├── InputSystem.meta │ │ ├── InputSystem │ │ ├── InputDeviceExtensionTest.cs │ │ ├── InputDeviceExtensionTest.cs.meta │ │ ├── InputEditorUserSettingsTest.cs │ │ ├── InputEditorUserSettingsTest.cs.meta │ │ ├── InputRemotingTest.cs │ │ └── InputRemotingTest.cs.meta │ │ ├── MockLogger.cs │ │ ├── MockLogger.cs.meta │ │ ├── PeerConnectionTest.cs │ │ ├── PeerConnectionTest.cs.meta │ │ ├── PrivateSignalingTest.cs │ │ ├── PrivateSignalingTest.cs.meta │ │ ├── RenderStreamingTest.cs │ │ ├── RenderStreamingTest.cs.meta │ │ ├── RenderpipelineTest.cs │ │ ├── RenderpipelineTest.cs.meta │ │ ├── Signaling.meta │ │ ├── Signaling │ │ ├── MockSignaling.cs │ │ ├── MockSignaling.cs.meta │ │ ├── MockSignalingSettings.cs │ │ └── MockSignalingSettings.cs.meta │ │ ├── SignalingEventProviderTest.cs │ │ ├── SignalingEventProviderTest.cs.meta │ │ ├── SignalingHandlerTest.cs │ │ ├── SignalingHandlerTest.cs.meta │ │ ├── SignalingManagerInternalTest.cs │ │ ├── SignalingManagerInternalTest.cs.meta │ │ ├── SignalingManagerTest.cs │ │ ├── SignalingManagerTest.cs.meta │ │ ├── SignalingSettingsTest.cs │ │ ├── SignalingSettingsTest.cs.meta │ │ ├── SignalingTest.cs │ │ ├── SignalingTest.cs.meta │ │ ├── StreamingComponentTest.cs │ │ ├── StreamingComponentTest.cs.meta │ │ ├── TestUtility.cs │ │ ├── TestUtility.cs.meta │ │ ├── Unity.RenderStreaming.RuntimeTests.asmdef │ │ └── Unity.RenderStreaming.RuntimeTests.asmdef.meta ├── package.json └── package.json.meta ├── com.unity.template.renderstreaming-hd ├── Assets │ ├── ExampleAssets.meta │ ├── ExampleAssets │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── ConstructionLight_Mat.mat │ │ │ ├── ConstructionLight_Mat.mat.meta │ │ │ ├── DryWallPainted_Mat.mat │ │ │ ├── DryWallPainted_Mat.mat.meta │ │ │ ├── DryWall_Mat.mat │ │ │ ├── DryWall_Mat.mat.meta │ │ │ ├── Ground_Mat.mat │ │ │ ├── Ground_Mat.mat.meta │ │ │ ├── Hammer_Mat.mat │ │ │ ├── Hammer_Mat.mat.meta │ │ │ ├── HardHat_Mat.mat │ │ │ ├── HardHat_Mat.mat.meta │ │ │ ├── Jigsaw_Mat.mat │ │ │ ├── Jigsaw_Mat.mat.meta │ │ │ ├── LightBulb_Mat.mat │ │ │ ├── LightBulb_Mat.mat.meta │ │ │ ├── Liquid_Mat.mat │ │ │ ├── Liquid_Mat.mat.meta │ │ │ ├── Metal_Blue_Simple_Mat.mat │ │ │ ├── Metal_Blue_Simple_Mat.mat.meta │ │ │ ├── Metal_Simple_Mat.mat │ │ │ ├── Metal_Simple_Mat.mat.meta │ │ │ ├── OBS_Mat.mat │ │ │ ├── OBS_Mat.mat.meta │ │ │ ├── PaintBrush_Mat.mat │ │ │ ├── PaintBrush_Mat.mat.meta │ │ │ ├── PaintCan_mat.mat │ │ │ ├── PaintCan_mat.mat.meta │ │ │ ├── PaintLabel_Mat.mat │ │ │ ├── PaintLabel_Mat.mat.meta │ │ │ ├── Plastic_Black_Mat.mat │ │ │ ├── Plastic_Black_Mat.mat.meta │ │ │ ├── Plastic_Gray_Mat.mat │ │ │ ├── Plastic_Gray_Mat.mat.meta │ │ │ ├── Plastic_Ridges_Mat.mat │ │ │ ├── Plastic_Ridges_Mat.mat.meta │ │ │ ├── Plastic_Rough_Mat.mat │ │ │ ├── Plastic_Rough_Mat.mat.meta │ │ │ ├── Plastic_Transparent.mat │ │ │ ├── Plastic_Transparent.mat.meta │ │ │ ├── Plastic_White_Mat.mat │ │ │ ├── Plastic_White_Mat.mat.meta │ │ │ ├── Plastic_Yellow_Mat.mat │ │ │ ├── Plastic_Yellow_Mat.mat.meta │ │ │ ├── Strap_Mat.mat │ │ │ ├── Strap_Mat.mat.meta │ │ │ ├── Stud_Mat.mat │ │ │ └── Stud_Mat.mat.meta │ │ ├── Models.meta │ │ ├── Models │ │ │ ├── Brush.fbx │ │ │ ├── Brush.fbx.meta │ │ │ ├── ConstructionLight.fbx │ │ │ ├── ConstructionLight.fbx.meta │ │ │ ├── ConstructionLight_Low.fbx │ │ │ ├── ConstructionLight_Low.fbx.meta │ │ │ ├── Hammer.fbx │ │ │ ├── Hammer.fbx.meta │ │ │ ├── Jigsaw.fbx │ │ │ ├── Jigsaw.fbx.meta │ │ │ ├── MagneticLevel.fbx │ │ │ ├── MagneticLevel.fbx.meta │ │ │ ├── PaintBucket.fbx │ │ │ ├── PaintBucket.fbx.meta │ │ │ ├── SafetyGoggles.fbx │ │ │ ├── SafetyGoggles.fbx.meta │ │ │ ├── SafetyHat.fbx │ │ │ ├── SafetyHat.fbx.meta │ │ │ ├── Stud.fbx │ │ │ ├── Stud.fbx.meta │ │ │ ├── Workbench.fbx │ │ │ ├── Workbench.fbx.meta │ │ │ ├── Workbench_Low.fbx │ │ │ ├── Workbench_Low.fbx.meta │ │ │ ├── Workshop_Set.fbx │ │ │ └── Workshop_Set.fbx.meta │ │ ├── Prefabs.meta │ │ ├── Prefabs │ │ │ ├── Props.prefab │ │ │ ├── Props.prefab.meta │ │ │ ├── Workshop Set.prefab │ │ │ └── Workshop Set.prefab.meta │ │ ├── Sounds.meta │ │ ├── Sounds │ │ │ ├── sin1000Hz.wav │ │ │ └── sin1000Hz.wav.meta │ │ ├── Textures.meta │ │ └── Textures │ │ │ ├── Concrete.meta │ │ │ ├── Concrete │ │ │ ├── Ground_Albedo.tif │ │ │ ├── Ground_Albedo.tif.meta │ │ │ ├── Ground_MetallicOcculusionSmoothness.tif │ │ │ ├── Ground_MetallicOcculusionSmoothness.tif.meta │ │ │ ├── Ground_Normal.tif │ │ │ └── Ground_Normal.tif.meta │ │ │ ├── Drywall.meta │ │ │ ├── Drywall │ │ │ ├── DrywallPainted_Albedo.tif │ │ │ ├── DrywallPainted_Albedo.tif.meta │ │ │ ├── DrywallPainted_MetallicSmootheness.tif │ │ │ ├── DrywallPainted_MetallicSmootheness.tif.meta │ │ │ ├── DrywallPainted_Normal.tif │ │ │ ├── DrywallPainted_Normal.tif.meta │ │ │ ├── Drywall_Albedo.tif │ │ │ ├── Drywall_Albedo.tif.meta │ │ │ ├── Drywall_MetallicSmoothness.tif │ │ │ ├── Drywall_MetallicSmoothness.tif.meta │ │ │ ├── Drywall_Normal.tif │ │ │ └── Drywall_Normal.tif.meta │ │ │ ├── Light_Cookie.meta │ │ │ ├── Light_Cookie │ │ │ ├── Spotlight_Cookie.tif │ │ │ └── Spotlight_Cookie.tif.meta │ │ │ ├── Metal.meta │ │ │ ├── Metal │ │ │ ├── Metal_Albedo.tif │ │ │ ├── Metal_Albedo.tif.meta │ │ │ ├── Metal_MetallicSmoothness.tif │ │ │ ├── Metal_MetallicSmoothness.tif.meta │ │ │ ├── Metal_Normal.tif │ │ │ └── Metal_Normal.tif.meta │ │ │ ├── Plastic.meta │ │ │ ├── Plastic │ │ │ ├── Elastic_MetallicOcculusionSmoothness.tif │ │ │ ├── Elastic_MetallicOcculusionSmoothness.tif.meta │ │ │ ├── Elastic_Normal.tif │ │ │ ├── Elastic_Normal.tif.meta │ │ │ ├── PlasticRidges_Albedo.tif │ │ │ ├── PlasticRidges_Albedo.tif.meta │ │ │ ├── PlasticRidges_MetallicOcculusionSmoothness.tif │ │ │ ├── PlasticRidges_MetallicOcculusionSmoothness.tif.meta │ │ │ ├── PlasticRidges_Normal.tif │ │ │ ├── PlasticRidges_Normal.tif.meta │ │ │ ├── PlasticRough_Albedo.tif │ │ │ ├── PlasticRough_Albedo.tif.meta │ │ │ ├── PlasticRough_MetallicOcculusionSmoothness.tif │ │ │ ├── PlasticRough_MetallicOcculusionSmoothness.tif.meta │ │ │ ├── Plastic_Albedo.tif │ │ │ ├── Plastic_Albedo.tif.meta │ │ │ ├── Plastic_MetallicSmoothness.tif │ │ │ ├── Plastic_MetallicSmoothness.tif.meta │ │ │ ├── Plastic_Normal.tif │ │ │ └── Plastic_Normal.tif.meta │ │ │ ├── Props.meta │ │ │ ├── Props │ │ │ ├── Construction_Light.meta │ │ │ ├── Construction_Light │ │ │ │ ├── ConstructionLight_Albedo.tif │ │ │ │ ├── ConstructionLight_Albedo.tif.meta │ │ │ │ ├── ConstructionLight_MetallicOcculusionSmoothness.tif │ │ │ │ └── ConstructionLight_MetallicOcculusionSmoothness.tif.meta │ │ │ ├── Hammer.meta │ │ │ ├── Hammer │ │ │ │ ├── Hammer_Albedo.tif │ │ │ │ ├── Hammer_Albedo.tif.meta │ │ │ │ ├── Hammer_MetallicOcculusionSmoothness.tif │ │ │ │ ├── Hammer_MetallicOcculusionSmoothness.tif.meta │ │ │ │ ├── Hammer_Normal.tif │ │ │ │ └── Hammer_Normal.tif.meta │ │ │ ├── HardHat.meta │ │ │ ├── HardHat │ │ │ │ ├── SafetyHat_Albedo.tif │ │ │ │ ├── SafetyHat_Albedo.tif.meta │ │ │ │ ├── SafetyHat_MetallicOcculusionSmoothness.tif │ │ │ │ ├── SafetyHat_MetallicOcculusionSmoothness.tif.meta │ │ │ │ ├── SafetyHat_Normal.tif │ │ │ │ └── SafetyHat_Normal.tif.meta │ │ │ ├── Jigsaw.meta │ │ │ ├── Jigsaw │ │ │ │ ├── Jigsaw_Albedo.tif │ │ │ │ ├── Jigsaw_Albedo.tif.meta │ │ │ │ ├── Jigsaw_MetallicOcculusionSmoothness.tif │ │ │ │ ├── Jigsaw_MetallicOcculusionSmoothness.tif.meta │ │ │ │ ├── Jigsaw_Normal.tif │ │ │ │ └── Jigsaw_Normal.tif.meta │ │ │ ├── Paint.meta │ │ │ └── Paint │ │ │ │ ├── Paint1G_Albedo.tif │ │ │ │ ├── Paint1G_Albedo.tif.meta │ │ │ │ ├── Paint1G_MetallicOcculusionSmoothness.tif │ │ │ │ ├── Paint1G_MetallicOcculusionSmoothness.tif.meta │ │ │ │ ├── Paint1G_Normal.tif │ │ │ │ ├── Paint1G_Normal.tif.meta │ │ │ │ ├── Paint5G_Albedo.tif │ │ │ │ ├── Paint5G_Albedo.tif.meta │ │ │ │ ├── Paintbrush_Albedo.tif │ │ │ │ ├── Paintbrush_Albedo.tif.meta │ │ │ │ ├── Paintbrush_MetallicOcculusionSmoothness.tif │ │ │ │ ├── Paintbrush_MetallicOcculusionSmoothness.tif.meta │ │ │ │ ├── Paintbrush_Normal.tif │ │ │ │ └── Paintbrush_Normal.tif.meta │ │ │ ├── UI.meta │ │ │ ├── UI │ │ │ ├── UI_Background.png │ │ │ └── UI_Background.png.meta │ │ │ ├── Wood.meta │ │ │ └── Wood │ │ │ ├── OBS_Albedo.tif │ │ │ ├── OBS_Albedo.tif.meta │ │ │ ├── OBS_MetallicOcculusionSmoothness.tif │ │ │ ├── OBS_MetallicOcculusionSmoothness.tif.meta │ │ │ ├── OBS_Normal.tif │ │ │ ├── OBS_Normal.tif.meta │ │ │ ├── Plywood_Albedo.tif │ │ │ ├── Plywood_Albedo.tif.meta │ │ │ ├── Plywood_MetallicOcculusionSmoothness.tif │ │ │ ├── Plywood_MetallicOcculusionSmoothness.tif.meta │ │ │ ├── Plywood_Normal.tif │ │ │ └── Plywood_Normal.tif.meta │ ├── HDRPDefaultResources.meta │ ├── HDRPDefaultResources │ │ ├── DefaultHDRISky.exr │ │ ├── DefaultHDRISky.exr.meta │ │ ├── DefaultSceneRoot.prefab │ │ ├── DefaultSceneRoot.prefab.meta │ │ ├── Foliage Diffusion Profile.asset │ │ ├── Foliage Diffusion Profile.asset.meta │ │ ├── HDRPDefaultSettings.asset │ │ ├── HDRPDefaultSettings.asset.meta │ │ ├── Skin Diffusion Profile.asset │ │ └── Skin Diffusion Profile.asset.meta │ ├── InputSystem.inputsettings.asset │ ├── InputSystem.inputsettings.asset.meta │ ├── Presets.meta │ ├── Presets │ │ ├── AudioCompressedInMemory.preset │ │ ├── AudioCompressedInMemory.preset.meta │ │ ├── AudioStreaming.preset │ │ ├── AudioStreaming.preset.meta │ │ ├── Defaults.meta │ │ ├── Defaults │ │ │ ├── AlbedoTexture_Default.preset │ │ │ ├── AlbedoTexture_Default.preset.meta │ │ │ ├── AudioDecompressOnLoad_Default.preset │ │ │ ├── AudioDecompressOnLoad_Default.preset.meta │ │ │ ├── DirectionalLight_Default.preset │ │ │ ├── DirectionalLight_Default.preset.meta │ │ │ ├── SSSSettings_Default.preset │ │ │ └── SSSSettings_Default.preset.meta │ │ ├── HDRTexture.preset │ │ ├── HDRTexture.preset.meta │ │ ├── NormalTexture.preset │ │ ├── NormalTexture.preset.meta │ │ ├── UtilityTexture.preset │ │ └── UtilityTexture.preset.meta │ ├── Readme.asset │ ├── Readme.asset.meta │ ├── RenderPipeline.meta │ ├── RenderPipeline │ │ ├── HDRP.meta │ │ └── HDRP │ │ │ ├── HDRenderPipelineAsset.asset │ │ │ ├── HDRenderPipelineAsset.asset.meta │ │ │ ├── Settings.meta │ │ │ └── Settings │ │ │ ├── DefaultPostprocessingSettings.asset │ │ │ ├── DefaultPostprocessingSettings.asset.meta │ │ │ ├── DefaultRenderingSettings.asset │ │ │ ├── DefaultRenderingSettings.asset.meta │ │ │ ├── SampleScenePostProcessingSettings.asset │ │ │ ├── SampleScenePostProcessingSettings.asset.meta │ │ │ ├── SampleSceneSkyandFogSettings.asset │ │ │ └── SampleSceneSkyandFogSettings.asset.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── samplescene.meta │ │ ├── samplescene.unity │ │ ├── samplescene.unity.meta │ │ ├── samplescene │ │ │ ├── LightingData.asset │ │ │ ├── LightingData.asset.meta │ │ │ ├── Lightmap-0_comp_dir.png │ │ │ ├── Lightmap-0_comp_dir.png.meta │ │ │ ├── Lightmap-0_comp_light.exr │ │ │ ├── Lightmap-0_comp_light.exr.meta │ │ │ ├── ReflectionProbe-0.exr │ │ │ ├── ReflectionProbe-0.exr.meta │ │ │ ├── ReflectionProbe-1.exr │ │ │ ├── ReflectionProbe-1.exr.meta │ │ │ ├── ReflectionProbe-2.exr │ │ │ └── ReflectionProbe-2.exr.meta │ │ ├── samplesceneSettings.lighting │ │ └── samplesceneSettings.lighting.meta │ ├── Settings.meta │ ├── Settings │ │ ├── Foliage.asset │ │ ├── Foliage.asset.meta │ │ ├── HDRenderPipelineAsset.asset │ │ ├── HDRenderPipelineAsset.asset.meta │ │ ├── SampleScenePostProcessingSettings.asset │ │ ├── SampleScenePostProcessingSettings.asset.meta │ │ ├── SampleSceneSkyandFogSettings.asset │ │ ├── SampleSceneSkyandFogSettings.asset.meta │ │ ├── Skin.asset │ │ └── Skin.asset.meta │ ├── Tests.meta │ ├── Tests │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── RenderStreamingTemplateEditorTest.cs │ │ │ ├── RenderStreamingTemplateEditorTest.cs.meta │ │ │ ├── Unity.Template.RenderStreaming.EditorTests.asmdef │ │ │ └── Unity.Template.RenderStreaming.EditorTests.asmdef.meta │ │ ├── Runtime.meta │ │ └── Runtime │ │ │ ├── RenderStreamingTest.cs │ │ │ ├── RenderStreamingTest.cs.meta │ │ │ ├── Unity.Template.RenderStreaming.RuntimeTests.asmdef │ │ │ └── Unity.Template.RenderStreaming.RuntimeTests.asmdef.meta │ ├── TextMesh Pro.meta │ ├── TextMesh Pro │ │ ├── Fonts.meta │ │ ├── Fonts │ │ │ ├── LiberationSans - OFL.txt │ │ │ ├── LiberationSans - OFL.txt.meta │ │ │ ├── LiberationSans.ttf │ │ │ └── LiberationSans.ttf.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── Fonts & Materials.meta │ │ │ ├── Fonts & Materials │ │ │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ │ │ ├── LiberationSans SDF - Fallback.asset │ │ │ │ ├── LiberationSans SDF - Fallback.asset.meta │ │ │ │ ├── LiberationSans SDF - Outline.mat │ │ │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ │ │ ├── LiberationSans SDF.asset │ │ │ │ └── LiberationSans SDF.asset.meta │ │ │ ├── LineBreaking Following Characters.txt │ │ │ ├── LineBreaking Following Characters.txt.meta │ │ │ ├── LineBreaking Leading Characters.txt │ │ │ ├── LineBreaking Leading Characters.txt.meta │ │ │ ├── Shaders.meta │ │ │ ├── Shaders │ │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ │ │ ├── TMP_Bitmap-Mobile.shader │ │ │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ │ │ ├── TMP_Bitmap.shader │ │ │ │ ├── TMP_Bitmap.shader.meta │ │ │ │ ├── TMP_SDF Overlay.shader │ │ │ │ ├── TMP_SDF Overlay.shader.meta │ │ │ │ ├── TMP_SDF-Mobile Masking.shader │ │ │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ │ │ ├── TMP_SDF-Mobile.shader │ │ │ │ ├── TMP_SDF-Mobile.shader.meta │ │ │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ │ │ ├── TMP_SDF-Surface.shader │ │ │ │ ├── TMP_SDF-Surface.shader.meta │ │ │ │ ├── TMP_SDF.shader │ │ │ │ ├── TMP_SDF.shader.meta │ │ │ │ ├── TMP_Sprite.shader │ │ │ │ ├── TMP_Sprite.shader.meta │ │ │ │ ├── TMPro.cginc │ │ │ │ ├── TMPro.cginc.meta │ │ │ │ ├── TMPro_Properties.cginc │ │ │ │ ├── TMPro_Properties.cginc.meta │ │ │ │ ├── TMPro_Surface.cginc │ │ │ │ └── TMPro_Surface.cginc.meta │ │ │ ├── Sprite Assets.meta │ │ │ ├── Sprite Assets │ │ │ │ ├── EmojiOne.asset │ │ │ │ └── EmojiOne.asset.meta │ │ │ ├── Style Sheets.meta │ │ │ ├── Style Sheets │ │ │ │ ├── Default Style Sheet.asset │ │ │ │ └── Default Style Sheet.asset.meta │ │ │ ├── TMP Settings.asset │ │ │ └── TMP Settings.asset.meta │ │ ├── Sprites.meta │ │ └── Sprites │ │ │ ├── EmojiOne Attribution.txt │ │ │ ├── EmojiOne Attribution.txt.meta │ │ │ ├── EmojiOne.json │ │ │ ├── EmojiOne.json.meta │ │ │ ├── EmojiOne.png │ │ │ └── EmojiOne.png.meta │ ├── TutorialInfo.meta │ └── TutorialInfo │ │ ├── Icons.meta │ │ ├── Icons │ │ ├── HDIcon.png │ │ ├── HDIcon.png.meta │ │ ├── Help_Icon.png │ │ └── Help_Icon.png.meta │ │ ├── Layout.wlt │ │ ├── Layout.wlt.meta │ │ ├── Scripts.meta │ │ └── Scripts │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── ReadmeEditor.cs │ │ └── ReadmeEditor.cs.meta │ │ ├── Readme.cs │ │ └── Readme.cs.meta ├── Packages │ ├── com.unity.template.renderstreaming-hd │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── Documentation~ │ │ │ ├── TableOfContents.md │ │ │ ├── en │ │ │ │ └── tutorial.md │ │ │ ├── images │ │ │ │ ├── browser_hdrpscene.png │ │ │ │ ├── download_template_package.png │ │ │ │ ├── hdrpscene.png │ │ │ │ ├── https_step3_01.png │ │ │ │ ├── https_step3_02.png │ │ │ │ ├── https_step3_03.png │ │ │ │ ├── https_step3_04.png │ │ │ │ ├── https_step3_05.png │ │ │ │ ├── https_step3_06.png │ │ │ │ ├── https_step3_07.png │ │ │ │ ├── https_step3_08.png │ │ │ │ ├── https_step3_09.png │ │ │ │ ├── https_step3_10.png │ │ │ │ ├── https_step3_11.png │ │ │ │ ├── https_step3_12.png │ │ │ │ ├── install_renderstreaming_package.png │ │ │ │ ├── install_webrtc_package.png │ │ │ │ ├── launch_webserver_cmd.png │ │ │ │ ├── launch_webserver_explorer.png │ │ │ │ ├── menu_download_webapp.png │ │ │ │ ├── multitouch.gif │ │ │ │ ├── package_renderstreaming.png │ │ │ │ ├── postman_example.png │ │ │ │ ├── renderstreaming_inspector.png │ │ │ │ ├── renderstreaming_overview.png │ │ │ │ ├── renderstreaming_sequence.png │ │ │ │ ├── template_in_unityhub.png │ │ │ │ ├── turn-connection-testing.png │ │ │ │ ├── turn-firewall-rules.png │ │ │ │ ├── turn-renderstreaming-inspector.png │ │ │ │ └── webrtc_package_manager.png │ │ │ ├── index.md │ │ │ └── jp │ │ │ │ ├── index.md │ │ │ │ └── tutorial.md │ │ ├── LICENSE.md │ │ ├── LICENSE.md.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Tests.meta │ │ ├── Tests │ │ │ ├── Editor.meta │ │ │ ├── Editor │ │ │ │ ├── RenderStreamingTemplateEditorTest.cs │ │ │ │ ├── RenderStreamingTemplateEditorTest.cs.meta │ │ │ │ ├── Unity.TemplatePackage.RenderStreaming.EditorTests.asmdef │ │ │ │ └── Unity.TemplatePackage.RenderStreaming.EditorTests.asmdef.meta │ │ │ ├── Runtime.meta │ │ │ └── Runtime │ │ │ │ ├── RenderStreamingTest.cs │ │ │ │ ├── RenderStreamingTest.cs.meta │ │ │ │ ├── Unity.TemplatePackage.RenderStreaming.RuntimeTests.asmdef │ │ │ │ └── Unity.TemplatePackage.RenderStreaming.RuntimeTests.asmdef.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── manifest.json │ └── packages-lock.json ├── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── HDRPProjectSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── PackageManagerSettings.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ ├── XRSettings.asset │ └── graphicssettings.asset └── UserSettings │ └── EditorUserSettings.asset ├── com.unity.template.renderstreaming-rtx ├── Assets │ ├── ExampleAssets.meta │ ├── ExampleAssets │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── ConstructionLight_Mat.mat │ │ │ ├── ConstructionLight_Mat.mat.meta │ │ │ ├── DryWallPainted_Mat.mat │ │ │ ├── DryWallPainted_Mat.mat.meta │ │ │ ├── DryWall_Mat.mat │ │ │ ├── DryWall_Mat.mat.meta │ │ │ ├── Ground_Mat.mat │ │ │ ├── Ground_Mat.mat.meta │ │ │ ├── Hammer_Mat.mat │ │ │ ├── Hammer_Mat.mat.meta │ │ │ ├── HardHat_Mat.mat │ │ │ ├── HardHat_Mat.mat.meta │ │ │ ├── Jigsaw_Mat.mat │ │ │ ├── Jigsaw_Mat.mat.meta │ │ │ ├── LightBulb_Mat.mat │ │ │ ├── LightBulb_Mat.mat.meta │ │ │ ├── Liquid_Mat.mat │ │ │ ├── Liquid_Mat.mat.meta │ │ │ ├── Metal_Blue_Simple_Mat.mat │ │ │ ├── Metal_Blue_Simple_Mat.mat.meta │ │ │ ├── Metal_Simple_Mat.mat │ │ │ ├── Metal_Simple_Mat.mat.meta │ │ │ ├── OBS_Mat.mat │ │ │ ├── OBS_Mat.mat.meta │ │ │ ├── PaintBrush_Mat.mat │ │ │ ├── PaintBrush_Mat.mat.meta │ │ │ ├── PaintCan_mat.mat │ │ │ ├── PaintCan_mat.mat.meta │ │ │ ├── PaintLabel_Mat.mat │ │ │ ├── PaintLabel_Mat.mat.meta │ │ │ ├── Plastic_Black_Mat.mat │ │ │ ├── Plastic_Black_Mat.mat.meta │ │ │ ├── Plastic_Gray_Mat.mat │ │ │ ├── Plastic_Gray_Mat.mat.meta │ │ │ ├── Plastic_Ridges_Mat.mat │ │ │ ├── Plastic_Ridges_Mat.mat.meta │ │ │ ├── Plastic_Rough_Mat.mat │ │ │ ├── Plastic_Rough_Mat.mat.meta │ │ │ ├── Plastic_Transparent.mat │ │ │ ├── Plastic_Transparent.mat.meta │ │ │ ├── Plastic_White_Mat.mat │ │ │ ├── Plastic_White_Mat.mat.meta │ │ │ ├── Plastic_Yellow_Mat.mat │ │ │ ├── Plastic_Yellow_Mat.mat.meta │ │ │ ├── Strap_Mat.mat │ │ │ ├── Strap_Mat.mat.meta │ │ │ ├── Stud_Mat.mat │ │ │ └── Stud_Mat.mat.meta │ │ ├── Models │ │ ├── Models.meta │ │ ├── Prefabs │ │ ├── Prefabs.meta │ │ ├── Sounds │ │ ├── Sounds.meta │ │ ├── Textures │ │ └── Textures.meta │ ├── HDRPDefaultResources.meta │ ├── HDRPDefaultResources │ │ ├── DXR.meta │ │ ├── DXR │ │ │ ├── DXR Settings.asset │ │ │ ├── DXR Settings.asset.meta │ │ │ ├── DefaultSceneRoot.prefab │ │ │ ├── DefaultSceneRoot.prefab.meta │ │ │ ├── Sky and Fog Settings Profile.asset │ │ │ └── Sky and Fog Settings Profile.asset.meta │ │ ├── DefaultHDRISky.exr │ │ ├── DefaultHDRISky.exr.meta │ │ ├── DefaultSceneRoot.prefab │ │ ├── DefaultSceneRoot.prefab.meta │ │ ├── Foliage Diffusion Profile.asset │ │ ├── Foliage Diffusion Profile.asset.meta │ │ ├── HDRPDefaultSettings.asset │ │ ├── HDRPDefaultSettings.asset.meta │ │ ├── Skin Diffusion Profile.asset │ │ ├── Skin Diffusion Profile.asset.meta │ │ ├── Sky and Fog Settings Profile.asset │ │ └── Sky and Fog Settings Profile.asset.meta │ ├── InputSystem.inputsettings.asset │ ├── InputSystem.inputsettings.asset.meta │ ├── Presets.meta │ ├── Presets │ │ ├── AudioCompressedInMemory.preset │ │ ├── AudioCompressedInMemory.preset.meta │ │ ├── AudioStreaming.preset │ │ ├── AudioStreaming.preset.meta │ │ ├── Defaults.meta │ │ ├── Defaults │ │ │ ├── AlbedoTexture_Default.preset │ │ │ ├── AlbedoTexture_Default.preset.meta │ │ │ ├── AudioDecompressOnLoad_Default.preset │ │ │ ├── AudioDecompressOnLoad_Default.preset.meta │ │ │ ├── DirectionalLight_Default.preset │ │ │ ├── DirectionalLight_Default.preset.meta │ │ │ ├── SSSSettings_Default.preset │ │ │ └── SSSSettings_Default.preset.meta │ │ ├── HDRTexture.preset │ │ ├── HDRTexture.preset.meta │ │ ├── NormalTexture.preset │ │ ├── NormalTexture.preset.meta │ │ ├── UtilityTexture.preset │ │ └── UtilityTexture.preset.meta │ ├── Readme.asset │ ├── Readme.asset.meta │ ├── RenderPipeline.meta │ ├── RenderPipeline │ │ ├── HDRP.meta │ │ └── HDRP │ │ │ ├── HDRenderPipelineAsset.asset │ │ │ ├── HDRenderPipelineAsset.asset.meta │ │ │ ├── Settings.meta │ │ │ └── Settings │ │ │ ├── DefaultPostprocessingSettings.asset │ │ │ ├── DefaultPostprocessingSettings.asset.meta │ │ │ ├── DefaultRenderingSettings.asset │ │ │ ├── DefaultRenderingSettings.asset.meta │ │ │ ├── SampleScenePostProcessingSettings.asset │ │ │ ├── SampleScenePostProcessingSettings.asset.meta │ │ │ ├── SampleSceneSkyandFogSettings.asset │ │ │ └── SampleSceneSkyandFogSettings.asset.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── samplescene.meta │ │ ├── samplescene.unity │ │ ├── samplescene.unity.meta │ │ ├── samplescene │ │ │ ├── LightingData.asset │ │ │ ├── LightingData.asset.meta │ │ │ ├── Lightmap-0_comp_dir.png │ │ │ ├── Lightmap-0_comp_dir.png.meta │ │ │ ├── Lightmap-0_comp_light.exr │ │ │ ├── Lightmap-0_comp_light.exr.meta │ │ │ ├── PlaneMaterial.mat │ │ │ ├── PlaneMaterial.mat.meta │ │ │ ├── ReflectionProbe-0.exr │ │ │ ├── ReflectionProbe-0.exr.meta │ │ │ ├── ReflectionProbe-1.exr │ │ │ ├── ReflectionProbe-1.exr.meta │ │ │ ├── ReflectionProbe-2.exr │ │ │ └── ReflectionProbe-2.exr.meta │ │ ├── samplesceneSettings.lighting │ │ └── samplesceneSettings.lighting.meta │ ├── Settings.meta │ ├── Settings │ │ ├── Foliage.asset │ │ ├── Foliage.asset.meta │ │ ├── HDRenderPipelineAsset.asset │ │ ├── HDRenderPipelineAsset.asset.meta │ │ ├── SampleScenePostProcessingSettings.asset │ │ ├── SampleScenePostProcessingSettings.asset.meta │ │ ├── SampleSceneSkyandFogSettings.asset │ │ ├── SampleSceneSkyandFogSettings.asset.meta │ │ ├── Skin.asset │ │ └── Skin.asset.meta │ ├── Tests │ ├── Tests.meta │ ├── TextMesh Pro │ ├── TextMesh Pro.meta │ ├── TutorialInfo │ └── TutorialInfo.meta ├── Packages │ ├── com.unity.template.renderstreaming-rtx │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── CHANGELOG.md.meta │ │ ├── Documentation~ │ │ │ ├── TableOfContents.md │ │ │ ├── en │ │ │ │ └── tutorial.md │ │ │ ├── images │ │ │ │ ├── browser_hdrpscene.png │ │ │ │ ├── download_template_package.png │ │ │ │ ├── hdrpscene.png │ │ │ │ ├── https_step3_01.png │ │ │ │ ├── https_step3_02.png │ │ │ │ ├── https_step3_03.png │ │ │ │ ├── https_step3_04.png │ │ │ │ ├── https_step3_05.png │ │ │ │ ├── https_step3_06.png │ │ │ │ ├── https_step3_07.png │ │ │ │ ├── https_step3_08.png │ │ │ │ ├── https_step3_09.png │ │ │ │ ├── https_step3_10.png │ │ │ │ ├── https_step3_11.png │ │ │ │ ├── https_step3_12.png │ │ │ │ ├── install_renderstreaming_package.png │ │ │ │ ├── install_webrtc_package.png │ │ │ │ ├── launch_webserver_cmd.png │ │ │ │ ├── launch_webserver_explorer.png │ │ │ │ ├── menu_download_webapp.png │ │ │ │ ├── multitouch.gif │ │ │ │ ├── package_renderstreaming.png │ │ │ │ ├── postman_example.png │ │ │ │ ├── renderstreaming_inspector.png │ │ │ │ ├── renderstreaming_overview.png │ │ │ │ ├── renderstreaming_sequence.png │ │ │ │ ├── template_in_unityhub.png │ │ │ │ ├── turn-connection-testing.png │ │ │ │ ├── turn-firewall-rules.png │ │ │ │ ├── turn-renderstreaming-inspector.png │ │ │ │ └── webrtc_package_manager.png │ │ │ ├── index.md │ │ │ └── jp │ │ │ │ ├── index.md │ │ │ │ └── tutorial.md │ │ ├── LICENSE.md │ │ ├── LICENSE.md.meta │ │ ├── README.md │ │ ├── README.md.meta │ │ ├── Tests │ │ ├── Tests.meta │ │ ├── package.json │ │ └── package.json.meta │ ├── manifest.json │ └── packages-lock.json ├── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── HDRPProjectSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── PackageManagerSettings.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ ├── XRSettings.asset │ └── graphicssettings.asset └── UserSettings │ └── EditorUserSettings.asset ├── pack_webapp.cmd ├── pack_webapp.sh ├── test_webapp.cmd ├── test_webapp.sh ├── test_webapp_client.cmd └── test_webapp_client.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/.gitignore -------------------------------------------------------------------------------- /.yamato/compile-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/.yamato/compile-package.yml -------------------------------------------------------------------------------- /.yamato/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/.yamato/coverage.yml -------------------------------------------------------------------------------- /.yamato/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/.yamato/format.yml -------------------------------------------------------------------------------- /.yamato/package.metafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/.yamato/package.metafile -------------------------------------------------------------------------------- /.yamato/promotion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/.yamato/promotion.yml -------------------------------------------------------------------------------- /.yamato/upm-ci-publish-github-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/.yamato/upm-ci-publish-github-release.yml -------------------------------------------------------------------------------- /.yamato/upm-ci-renderstreaming-packages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/.yamato/upm-ci-renderstreaming-packages.yml -------------------------------------------------------------------------------- /.yamato/upm-ci-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/.yamato/upm-ci-template.yml -------------------------------------------------------------------------------- /.yamato/upm-ci-webapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/.yamato/upm-ci-webapp.yml -------------------------------------------------------------------------------- /BuildScripts~/add_internal_registry_manifest.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/BuildScripts~/add_internal_registry_manifest.patch -------------------------------------------------------------------------------- /BuildScripts~/convert_symlinks.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/BuildScripts~/convert_symlinks.cmd -------------------------------------------------------------------------------- /BuildScripts~/convert_symlinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/BuildScripts~/convert_symlinks.sh -------------------------------------------------------------------------------- /BuildScripts~/template/remote.sh.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/BuildScripts~/template/remote.sh.template -------------------------------------------------------------------------------- /BuildScripts~/test_package_mac.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/BuildScripts~/test_package_mac.sh -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/README.md -------------------------------------------------------------------------------- /RenderStreaming~/Assets/InputSystem.inputsettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/Assets/InputSystem.inputsettings.asset -------------------------------------------------------------------------------- /RenderStreaming~/Assets/InputSystem.inputsettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/Assets/InputSystem.inputsettings.asset.meta -------------------------------------------------------------------------------- /RenderStreaming~/Assets/Samples: -------------------------------------------------------------------------------- 1 | ../../com.unity.renderstreaming/Samples~ -------------------------------------------------------------------------------- /RenderStreaming~/Assets/Samples.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/Assets/Samples.meta -------------------------------------------------------------------------------- /RenderStreaming~/Assets/XR.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/Assets/XR.meta -------------------------------------------------------------------------------- /RenderStreaming~/Assets/XR/Loaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/Assets/XR/Loaders.meta -------------------------------------------------------------------------------- /RenderStreaming~/Assets/XR/Loaders/AR Core Loader.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/Assets/XR/Loaders/AR Core Loader.asset -------------------------------------------------------------------------------- /RenderStreaming~/Assets/XR/Loaders/AR Core Loader.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/Assets/XR/Loaders/AR Core Loader.asset.meta -------------------------------------------------------------------------------- /RenderStreaming~/Assets/XR/Loaders/AR Kit Loader.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/Assets/XR/Loaders/AR Kit Loader.asset -------------------------------------------------------------------------------- /RenderStreaming~/Assets/XR/Loaders/AR Kit Loader.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/Assets/XR/Loaders/AR Kit Loader.asset.meta -------------------------------------------------------------------------------- /RenderStreaming~/Assets/XR/Settings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/Assets/XR/Settings.meta -------------------------------------------------------------------------------- /RenderStreaming~/Assets/XR/Settings/AR Core Settings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/Assets/XR/Settings/AR Core Settings.asset -------------------------------------------------------------------------------- /RenderStreaming~/Assets/XR/Settings/AR Core Settings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/Assets/XR/Settings/AR Core Settings.asset.meta -------------------------------------------------------------------------------- /RenderStreaming~/Assets/XR/Settings/AR Kit Settings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/Assets/XR/Settings/AR Kit Settings.asset -------------------------------------------------------------------------------- /RenderStreaming~/Assets/XR/Settings/AR Kit Settings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/Assets/XR/Settings/AR Kit Settings.asset.meta -------------------------------------------------------------------------------- /RenderStreaming~/Assets/XR/XRGeneralSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/Assets/XR/XRGeneralSettings.asset -------------------------------------------------------------------------------- /RenderStreaming~/Assets/XR/XRGeneralSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/Assets/XR/XRGeneralSettings.asset.meta -------------------------------------------------------------------------------- /RenderStreaming~/Packages/com.unity.renderstreaming: -------------------------------------------------------------------------------- 1 | ../../com.unity.renderstreaming -------------------------------------------------------------------------------- /RenderStreaming~/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/Packages/manifest.json -------------------------------------------------------------------------------- /RenderStreaming~/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/Packages/packages-lock.json -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/HDRPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/HDRPProjectSettings.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/ProjectSettings-android-vulkan.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/ProjectSettings-android-vulkan.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/RenderStreamingProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/RenderStreamingProjectSettings.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/URPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/URPProjectSettings.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/XRPackageSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/XRPackageSettings.asset -------------------------------------------------------------------------------- /RenderStreaming~/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/RenderStreaming~/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /TestProjects/Empty/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TestProjects/Empty/Assets/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/Assets/Editor.meta -------------------------------------------------------------------------------- /TestProjects/Empty/Assets/Editor/PostProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/Assets/Editor/PostProcess.cs -------------------------------------------------------------------------------- /TestProjects/Empty/Assets/Editor/PostProcess.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/Assets/Editor/PostProcess.cs.meta -------------------------------------------------------------------------------- /TestProjects/Empty/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/Packages/manifest.json -------------------------------------------------------------------------------- /TestProjects/Empty/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/Packages/packages-lock.json -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/HDRPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/HDRPProjectSettings.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/ProjectSettings-android-vulkan.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/ProjectSettings-android-vulkan.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/SceneTemplateSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/SceneTemplateSettings.json -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/URPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/URPProjectSettings.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/XRPackageSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/XRPackageSettings.asset -------------------------------------------------------------------------------- /TestProjects/Empty/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/Empty/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /TestProjects/HDRPTests/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TestProjects/HDRPTests/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/HDRPTests/Packages/manifest.json -------------------------------------------------------------------------------- /TestProjects/HDRPTests/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/HDRPTests/Packages/packages-lock.json -------------------------------------------------------------------------------- /TestProjects/HDRPTests/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/HDRPTests/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /TestProjects/HDRPTests/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/HDRPTests/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /TestProjects/HDRPTests/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/HDRPTests/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /TestProjects/HDRPTests/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/HDRPTests/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /TestProjects/HDRPTests/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/HDRPTests/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /TestProjects/HDRPTests/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/HDRPTests/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /TestProjects/HDRPTests/ProjectSettings/HDRPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/HDRPTests/ProjectSettings/HDRPProjectSettings.asset -------------------------------------------------------------------------------- /TestProjects/HDRPTests/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/HDRPTests/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /TestProjects/HDRPTests/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/HDRPTests/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /TestProjects/HDRPTests/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/HDRPTests/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /TestProjects/HDRPTests/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/HDRPTests/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /TestProjects/HDRPTests/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/HDRPTests/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /TestProjects/HDRPTests/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/HDRPTests/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /TestProjects/HDRPTests/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/HDRPTests/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /TestProjects/HDRPTests/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/HDRPTests/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /TestProjects/HDRPTests/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/HDRPTests/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /TestProjects/HDRPTests/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/HDRPTests/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /TestProjects/HDRPTests/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/HDRPTests/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /TestProjects/HDRPTests/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/HDRPTests/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /TestProjects/HDRPTests/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/HDRPTests/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /TestProjects/URPTests/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TestProjects/URPTests/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/URPTests/Packages/manifest.json -------------------------------------------------------------------------------- /TestProjects/URPTests/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/URPTests/Packages/packages-lock.json -------------------------------------------------------------------------------- /TestProjects/URPTests/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/URPTests/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /TestProjects/URPTests/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/URPTests/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /TestProjects/URPTests/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/URPTests/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /TestProjects/URPTests/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/URPTests/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /TestProjects/URPTests/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/URPTests/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /TestProjects/URPTests/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/URPTests/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /TestProjects/URPTests/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/URPTests/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /TestProjects/URPTests/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/URPTests/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /TestProjects/URPTests/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/URPTests/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /TestProjects/URPTests/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/URPTests/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /TestProjects/URPTests/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/URPTests/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /TestProjects/URPTests/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/URPTests/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /TestProjects/URPTests/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/URPTests/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /TestProjects/URPTests/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/URPTests/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /TestProjects/URPTests/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/URPTests/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /TestProjects/URPTests/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/URPTests/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /TestProjects/URPTests/ProjectSettings/URPProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/URPTests/ProjectSettings/URPProjectSettings.asset -------------------------------------------------------------------------------- /TestProjects/URPTests/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/URPTests/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /TestProjects/URPTests/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/URPTests/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /TestProjects/URPTests/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/TestProjects/URPTests/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /Third Party Notices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/Third Party Notices.md -------------------------------------------------------------------------------- /WebApp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/.editorconfig -------------------------------------------------------------------------------- /WebApp/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/.eslintrc.cjs -------------------------------------------------------------------------------- /WebApp/client/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/.eslintrc.json -------------------------------------------------------------------------------- /WebApp/client/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/jest.config.js -------------------------------------------------------------------------------- /WebApp/client/jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/jest.setup.js -------------------------------------------------------------------------------- /WebApp/client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/package-lock.json -------------------------------------------------------------------------------- /WebApp/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/package.json -------------------------------------------------------------------------------- /WebApp/client/public/bidirectional/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/bidirectional/css/style.css -------------------------------------------------------------------------------- /WebApp/client/public/bidirectional/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/bidirectional/index.html -------------------------------------------------------------------------------- /WebApp/client/public/bidirectional/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/bidirectional/js/main.js -------------------------------------------------------------------------------- /WebApp/client/public/bidirectional/js/sendvideo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/bidirectional/js/sendvideo.js -------------------------------------------------------------------------------- /WebApp/client/public/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/css/main.css -------------------------------------------------------------------------------- /WebApp/client/public/images/FullScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/images/FullScreen.png -------------------------------------------------------------------------------- /WebApp/client/public/images/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/images/Play.png -------------------------------------------------------------------------------- /WebApp/client/public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/images/favicon.ico -------------------------------------------------------------------------------- /WebApp/client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/index.html -------------------------------------------------------------------------------- /WebApp/client/public/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/js/config.js -------------------------------------------------------------------------------- /WebApp/client/public/js/icesettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/js/icesettings.js -------------------------------------------------------------------------------- /WebApp/client/public/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/js/main.js -------------------------------------------------------------------------------- /WebApp/client/public/js/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/js/stats.js -------------------------------------------------------------------------------- /WebApp/client/public/js/videoplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/js/videoplayer.js -------------------------------------------------------------------------------- /WebApp/client/public/multiplay/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/multiplay/css/style.css -------------------------------------------------------------------------------- /WebApp/client/public/multiplay/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/multiplay/index.html -------------------------------------------------------------------------------- /WebApp/client/public/multiplay/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/multiplay/js/main.js -------------------------------------------------------------------------------- /WebApp/client/public/receiver/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/receiver/css/style.css -------------------------------------------------------------------------------- /WebApp/client/public/receiver/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/receiver/index.html -------------------------------------------------------------------------------- /WebApp/client/public/receiver/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/receiver/js/main.js -------------------------------------------------------------------------------- /WebApp/client/public/videoplayer/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/videoplayer/css/style.css -------------------------------------------------------------------------------- /WebApp/client/public/videoplayer/images/FullScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/videoplayer/images/FullScreen.png -------------------------------------------------------------------------------- /WebApp/client/public/videoplayer/images/Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/videoplayer/images/Play.png -------------------------------------------------------------------------------- /WebApp/client/public/videoplayer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/videoplayer/index.html -------------------------------------------------------------------------------- /WebApp/client/public/videoplayer/js/gamepadEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/videoplayer/js/gamepadEvents.js -------------------------------------------------------------------------------- /WebApp/client/public/videoplayer/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/videoplayer/js/main.js -------------------------------------------------------------------------------- /WebApp/client/public/videoplayer/js/register-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/videoplayer/js/register-events.js -------------------------------------------------------------------------------- /WebApp/client/public/videoplayer/js/video-player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/public/videoplayer/js/video-player.js -------------------------------------------------------------------------------- /WebApp/client/src/charnumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/src/charnumber.js -------------------------------------------------------------------------------- /WebApp/client/src/gamepadbutton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/src/gamepadbutton.js -------------------------------------------------------------------------------- /WebApp/client/src/gamepadhandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/src/gamepadhandler.js -------------------------------------------------------------------------------- /WebApp/client/src/inputdevice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/src/inputdevice.js -------------------------------------------------------------------------------- /WebApp/client/src/inputremoting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/src/inputremoting.js -------------------------------------------------------------------------------- /WebApp/client/src/keymap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/src/keymap.js -------------------------------------------------------------------------------- /WebApp/client/src/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/src/logger.js -------------------------------------------------------------------------------- /WebApp/client/src/memoryhelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/src/memoryhelper.js -------------------------------------------------------------------------------- /WebApp/client/src/mousebutton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/src/mousebutton.js -------------------------------------------------------------------------------- /WebApp/client/src/peer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/src/peer.js -------------------------------------------------------------------------------- /WebApp/client/src/pointercorrect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/src/pointercorrect.js -------------------------------------------------------------------------------- /WebApp/client/src/renderstreaming.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/src/renderstreaming.js -------------------------------------------------------------------------------- /WebApp/client/src/sender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/src/sender.js -------------------------------------------------------------------------------- /WebApp/client/src/signaling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/src/signaling.js -------------------------------------------------------------------------------- /WebApp/client/src/touchflags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/src/touchflags.js -------------------------------------------------------------------------------- /WebApp/client/src/touchphase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/src/touchphase.js -------------------------------------------------------------------------------- /WebApp/client/test/domrect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/test/domrect.js -------------------------------------------------------------------------------- /WebApp/client/test/domvideoelement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/test/domvideoelement.js -------------------------------------------------------------------------------- /WebApp/client/test/inputdevice.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/test/inputdevice.test.js -------------------------------------------------------------------------------- /WebApp/client/test/inputremoting.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/test/inputremoting.test.js -------------------------------------------------------------------------------- /WebApp/client/test/memoryhelper.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/test/memoryhelper.test.js -------------------------------------------------------------------------------- /WebApp/client/test/mocksignaling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/test/mocksignaling.js -------------------------------------------------------------------------------- /WebApp/client/test/peerconnection.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/test/peerconnection.test.js -------------------------------------------------------------------------------- /WebApp/client/test/peerconnectionmock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/test/peerconnectionmock.js -------------------------------------------------------------------------------- /WebApp/client/test/pointercorrect.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/test/pointercorrect.test.js -------------------------------------------------------------------------------- /WebApp/client/test/renderstreaming.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/test/renderstreaming.test.js -------------------------------------------------------------------------------- /WebApp/client/test/resizeobservermock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/test/resizeobservermock.js -------------------------------------------------------------------------------- /WebApp/client/test/sender.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/test/sender.test.js -------------------------------------------------------------------------------- /WebApp/client/test/signaling.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/test/signaling.test.js -------------------------------------------------------------------------------- /WebApp/client/test/testutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/client/test/testutils.js -------------------------------------------------------------------------------- /WebApp/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/jest.config.js -------------------------------------------------------------------------------- /WebApp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/package-lock.json -------------------------------------------------------------------------------- /WebApp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/package.json -------------------------------------------------------------------------------- /WebApp/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/run.bat -------------------------------------------------------------------------------- /WebApp/src/class/answer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/src/class/answer.ts -------------------------------------------------------------------------------- /WebApp/src/class/candidate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/src/class/candidate.ts -------------------------------------------------------------------------------- /WebApp/src/class/httphandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/src/class/httphandler.ts -------------------------------------------------------------------------------- /WebApp/src/class/offer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/src/class/offer.ts -------------------------------------------------------------------------------- /WebApp/src/class/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/src/class/options.ts -------------------------------------------------------------------------------- /WebApp/src/class/websockethandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/src/class/websockethandler.ts -------------------------------------------------------------------------------- /WebApp/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/src/index.ts -------------------------------------------------------------------------------- /WebApp/src/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/src/log.ts -------------------------------------------------------------------------------- /WebApp/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/src/server.ts -------------------------------------------------------------------------------- /WebApp/src/signaling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/src/signaling.ts -------------------------------------------------------------------------------- /WebApp/src/websocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/src/websocket.ts -------------------------------------------------------------------------------- /WebApp/test/env_macos.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/test/env_macos.postman_environment.json -------------------------------------------------------------------------------- /WebApp/test/httphandler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/test/httphandler.test.ts -------------------------------------------------------------------------------- /WebApp/test/renderstreaming.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/test/renderstreaming.postman_collection.json -------------------------------------------------------------------------------- /WebApp/test/websockethandler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/test/websockethandler.test.ts -------------------------------------------------------------------------------- /WebApp/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/tsconfig.build.json -------------------------------------------------------------------------------- /WebApp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/tsconfig.json -------------------------------------------------------------------------------- /WebApp/tsconfig.lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/WebApp/tsconfig.lint.json -------------------------------------------------------------------------------- /com.unity.renderstreaming/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/CHANGELOG.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/CHANGELOG.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/CHANGELOG.md.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/TableOfContents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/TableOfContents.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/audio-streaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/audio-streaming.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/browser-input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/browser-input.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/commandline-option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/commandline-option.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/components.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/control-camera.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/control-camera.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/create-scene.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/create-scene.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/customize-webapp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/customize-webapp.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/data-streaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/data-streaming.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/dev-streaming-app-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/dev-streaming-app-intro.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/faq.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/filter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/filter.yml -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/https.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/https.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/broadcast_inspector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/broadcast_inspector.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/browser.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/browser_hdrpscene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/browser_hdrpscene.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/browser_index_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/browser_index_page.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/browser_mainpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/browser_mainpage.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/browser_videoplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/browser_videoplayer.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/browser_warning_cert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/browser_warning_cert.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/connect_from_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/connect_from_browser.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/control_camera_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/control_camera_01.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/control_camera_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/control_camera_02.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/control_camera_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/control_camera_03.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/control_camera_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/control_camera_04.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/control_camera_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/control_camera_05.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/control_camera_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/control_camera_06.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/control_camera_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/control_camera_07.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/create_new_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/create_new_scene.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/datasender_inspector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/datasender_inspector.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/download_webapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/download_webapp.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/feature_multicamera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/feature_multicamera.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/furioos_signaling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/furioos_signaling.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/furioos_stream_type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/furioos_stream_type.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/furioos_zip_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/furioos_zip_folder.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/hdrp_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/hdrp_sample.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/hdrp_unitypackage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/hdrp_unitypackage.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/hdrpscene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/hdrpscene.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_01.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_01_jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_01_jp.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_02.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_02_jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_02_jp.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_03.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_03_jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_03_jp.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_04.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_04_jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_04_jp.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_05.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_05_jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_05_jp.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_06.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_06_jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_06_jp.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_07.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_07_jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_07_jp.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_08.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_08_jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_08_jp.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_09.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_09_jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_09_jp.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_10.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_10_jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_10_jp.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_11.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_11_jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_11_jp.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_12.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/https_step3_12_jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/https_step3_12_jp.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/input_system_backend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/input_system_backend.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/inputsystem-version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/inputsystem-version.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/launch_webserver_cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/launch_webserver_cmd.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/multitouch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/multitouch.gif -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/open_ar_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/open_ar_scene.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/open_broadcast_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/open_broadcast_scene.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/open_gyro_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/open_gyro_scene.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/open_gyroscope_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/open_gyroscope_scene.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/open_multiplay_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/open_multiplay_scene.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/play_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/play_mode.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/play_sample_ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/play_sample_ar.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/play_sample_gyro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/play_sample_gyro.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/play_sample_receiver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/play_sample_receiver.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/playersettings_arkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/playersettings_arkit.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/playground_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/playground_scene.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/postman_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/postman_example.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/sample_buildsettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/sample_buildsettings.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/sample_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/sample_menu.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/sample_menu_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/sample_menu_scene.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/simplescene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/simplescene.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/template_in_unityhub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/template_in_unityhub.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/turn-firewall-rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/turn-firewall-rules.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/turn-server-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/turn-server-settings.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/webserver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/webserver.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/images/wizard_fixall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/images/wizard_fixall.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/index.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/overview.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/sample-arfoundation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/sample-arfoundation.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/sample-bidirectional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/sample-bidirectional.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/sample-broadcast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/sample-broadcast.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/sample-browserinput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/sample-browserinput.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/sample-gyroscope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/sample-gyroscope.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/sample-multiplay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/sample-multiplay.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/sample-receiver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/sample-receiver.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/sample-renderpipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/sample-renderpipeline.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/samples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/samples.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/settings.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/signaling-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/signaling-type.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/streaming-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/streaming-management.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/turnserver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/turnserver.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/tutorial.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/video-streaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/video-streaming.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/webapp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/webapp.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Documentation~/wizard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Documentation~/wizard.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/AssemblyInfo.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/AssemblyInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/AssemblyInfo.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/AudioStreamReceiverEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/AudioStreamReceiverEditor.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/AudioStreamReceiverEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/AudioStreamReceiverEditor.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/AudioStreamSenderEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/AudioStreamSenderEditor.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/AudioStreamSenderEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/AudioStreamSenderEditor.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/ConfigInfoLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/ConfigInfoLine.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/ConfigInfoLine.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/ConfigInfoLine.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/CustomSignalingSettingsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/CustomSignalingSettingsEditor.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/CustomSignalingSettingsEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/CustomSignalingSettingsEditor.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/IRequestJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/IRequestJob.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/IRequestJob.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/IRequestJob.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/Icon.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/Icon.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/Icon/Error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/Icon/Error.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/Icon/Error.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/Icon/Error.png.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/Icon/OK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/Icon/OK.png -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/Icon/OK.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/Icon/OK.png.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/InputSystem.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/InputSystem.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/InputSystem/InputReceiverEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/InputSystem/InputReceiverEditor.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/InputSystem/InputReceiverEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/InputSystem/InputReceiverEditor.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/PropertyDrawers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/PropertyDrawers.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/PropertyDrawers/BitrateDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/PropertyDrawers/BitrateDrawer.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/PropertyDrawers/BitrateDrawer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/PropertyDrawers/BitrateDrawer.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/PropertyDrawers/CodecDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/PropertyDrawers/CodecDrawer.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/PropertyDrawers/CodecDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ffbb807e4a1ab4440a236d73776265b3 3 | timeCreated: 1637904184 -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/PropertyDrawers/FrameRateDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/PropertyDrawers/FrameRateDrawer.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/PropertyDrawers/FrameRateDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6955fbf0f885c624786f638fdcca131a 3 | timeCreated: 1637904184 -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/PropertyDrawers/ScaleResolutionDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f81bb4eb3b702494db296db9976c321f 3 | timeCreated: 1637904184 -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/PropertyDrawers/StreamingSizeDrawer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/PropertyDrawers/StreamingSizeDrawer.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/PropertyDrawers/StreamingSizeDrawer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c55e741d09a34fedbb25a0f925106b25 3 | timeCreated: 1637904184 -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RenderPipeline.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RenderPipeline.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RenderStreamingEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RenderStreamingEditor.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RenderStreamingEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RenderStreamingEditor.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RenderStreamingProjectSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RenderStreamingProjectSettings.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RenderStreamingProjectSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RenderStreamingProjectSettings.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RenderStreamingSettingBuildProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RenderStreamingSettingBuildProvider.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RenderStreamingSettingsEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RenderStreamingSettingsEditor.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RenderStreamingSettingsEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RenderStreamingSettingsEditor.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RenderStreamingWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RenderStreamingWizard.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RenderStreamingWizard.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RenderStreamingWizard.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/ReorderableListField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/ReorderableListField.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/ReorderableListField.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/ReorderableListField.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RequestExtensions.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RequestExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RequestExtensions.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RequestInfo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RequestInfo.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RequestInfo/AddRequestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RequestInfo/AddRequestInfo.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RequestInfo/AddRequestInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RequestInfo/AddRequestInfo.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RequestInfo/ListRequestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RequestInfo/ListRequestInfo.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RequestInfo/ListRequestInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RequestInfo/ListRequestInfo.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RequestInfo/RemoveRequestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RequestInfo/RemoveRequestInfo.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RequestInfo/RemoveRequestInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RequestInfo/RemoveRequestInfo.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RequestInfo/SearchAllRequestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RequestInfo/SearchAllRequestInfo.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RequestInfo/SearchRequestInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RequestInfo/SearchRequestInfo.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RequestInfo/SearchRequestInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RequestInfo/SearchRequestInfo.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RequestJob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RequestJob.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RequestJob.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RequestJob.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RequestJobManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RequestJobManager.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/RequestJobManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/RequestJobManager.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/SerializedPropertyExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/SerializedPropertyExtension.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/SerializedPropertyExtension.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/SerializedPropertyExtension.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/SignalingManagerEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/SignalingManagerEditor.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/SignalingManagerEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/SignalingManagerEditor.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/Styles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/Styles.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/Styles/RenderStreamingWizard.uss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/Styles/RenderStreamingWizard.uss -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/Styles/RenderStreamingWizard.uss.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/Styles/RenderStreamingWizard.uss.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/UXML.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/UXML.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/UXML/RenderStreamingWizard.uxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/UXML/RenderStreamingWizard.uxml -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/UXML/RenderStreamingWizard.uxml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/UXML/RenderStreamingWizard.uxml.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/Unity.RenderStreaming.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/Unity.RenderStreaming.Editor.asmdef -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/VideoStreamReceiverEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/VideoStreamReceiverEditor.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/VideoStreamReceiverEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/VideoStreamReceiverEditor.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/VideoStreamSenderEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/VideoStreamSenderEditor.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/VideoStreamSenderEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/VideoStreamSenderEditor.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/WebAppDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/WebAppDownloader.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Editor/WebAppDownloader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Editor/WebAppDownloader.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/LICENSE.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/LICENSE.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/LICENSE.md.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/README.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/README.md.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/AssemblyInfo.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/AssemblyInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/AssemblyInfo.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Plugins.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/RenderStreamingSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/RenderStreamingSettings.asset -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/RenderStreamingSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/RenderStreamingSettings.asset.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/AudioCodecInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/AudioCodecInfo.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/AudioCodecInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/AudioCodecInfo.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/AudioStreamReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/AudioStreamReceiver.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/AudioStreamReceiver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/AudioStreamReceiver.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/AudioStreamSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/AudioStreamSender.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/AudioStreamSender.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/AudioStreamSender.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/AutomaticStreaming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/AutomaticStreaming.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/AutomaticStreaming.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/AutomaticStreaming.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/Broadcast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/Broadcast.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/Broadcast.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/Broadcast.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/Codec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/Codec.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/Codec.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/Codec.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/CommandLineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/CommandLineParser.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/CommandLineParser.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/CommandLineParser.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/DataChannelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/DataChannelBase.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/DataChannelBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/DataChannelBase.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/DateTimeExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/DateTimeExtension.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/DateTimeExtension.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/DateTimeExtension.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/ExecuteSignalingEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/ExecuteSignalingEvents.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/ExecuteSignalingEvents.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/ExecuteSignalingEvents.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/IRenderStreamingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/IRenderStreamingHandler.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/ISignalingEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/ISignalingEventHandler.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/ISignalingEventHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/ISignalingEventHandler.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/InputChannelReceiverBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/InputChannelReceiverBase.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/InputPositionCorrector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/InputPositionCorrector.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/InputPositionCorrector.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/InputPositionCorrector.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/InputReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/InputReceiver.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/InputReceiver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/InputReceiver.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/InputSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/InputSender.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/InputSender.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/InputSender.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/InputSystem.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/InputSystem.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/InputSystem/ArrayHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/InputSystem/ArrayHelpers.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/InputSystem/InputManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/InputSystem/InputManager.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/InputSystem/InputRemoting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/InputSystem/InputRemoting.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/InputSystem/Receiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/InputSystem/Receiver.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/InputSystem/Receiver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/InputSystem/Receiver.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/InputSystem/Sender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/InputSystem/Sender.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/InputSystem/Sender.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/InputSystem/Sender.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/PeerConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/PeerConnection.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/PeerConnection.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbcbecf9d04e490bae7326f66971399d 3 | timeCreated: 1620856244 -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/RenderStreaming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/RenderStreaming.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/RenderStreaming.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/RenderStreaming.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/RenderStreamingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/RenderStreamingSettings.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/RenderTextureBlitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/RenderTextureBlitter.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/RenderTextureBlitter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/RenderTextureBlitter.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/Signaling.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa3d0c210b91472b80c4158cb9459cab 3 | timeCreated: 1586218012 -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/Signaling/HttpSignaling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/Signaling/HttpSignaling.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/Signaling/HttpSignaling.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c4673647ba304609a37e2762bb1fae36 3 | timeCreated: 1586218423 -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/Signaling/ISignaling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/Signaling/ISignaling.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/Signaling/ISignaling.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ac843bc417af42759d8bd83db0c33d76 3 | timeCreated: 1586218157 -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/Signaling/SignalingMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/Signaling/SignalingMessage.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/Signaling/SignalingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/Signaling/SignalingSettings.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/Signaling/WebSocketSignaling.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: ad8d529710094c2895227a94d10eb8a6 3 | timeCreated: 1586218434 -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/SignalingEventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/SignalingEventData.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/SignalingEventData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/SignalingEventData.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/SignalingEventProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/SignalingEventProvider.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/SignalingEventProvider.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/SignalingEventProvider.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/SignalingHandlerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/SignalingHandlerBase.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/SignalingHandlerBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/SignalingHandlerBase.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/SignalingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/SignalingManager.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/SignalingManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/SignalingManager.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/SignalingManagerInternal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/SignalingManagerInternal.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/SingleConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/SingleConnection.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/SingleConnection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/SingleConnection.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/StreamReceiverBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/StreamReceiverBase.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/StreamReceiverBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/StreamReceiverBase.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/StreamSenderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/StreamSenderBase.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/StreamSenderBase.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/StreamSenderBase.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/VideoCodecInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/VideoCodecInfo.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/VideoCodecInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/VideoCodecInfo.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/VideoStreamReceiver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/VideoStreamReceiver.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/VideoStreamReceiver.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/VideoStreamReceiver.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/VideoStreamSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Scripts/VideoStreamSender.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Scripts/VideoStreamSender.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8bcc82901c3f48a88d3408251afa3365 3 | timeCreated: 1606988906 -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/SignalingSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/SignalingSettings.asset -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/SignalingSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/SignalingSettings.asset.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Runtime/Unity.RenderStreaming.Runtime.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Runtime/Unity.RenderStreaming.Runtime.asmdef -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/.sample.json -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/ARFoundation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/ARFoundation.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/ARFoundation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/ARFoundation/README.md -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/ARFoundation/README.md.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/ARFoundation/README.md.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Bidirectional.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Bidirectional.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Broadcast.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Broadcast.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Broadcast/Broadcast.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Broadcast/Broadcast.unity -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Broadcast/BroadcastSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Broadcast/BroadcastSample.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Broadcast/DeltaWithButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Broadcast/DeltaWithButton.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Broadcast/DeltaWithButton.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d0a0edcb6a384bcbbb60b5f93133bbc0 3 | timeCreated: 1635751612 -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Broadcast/UIControllerV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Broadcast/UIControllerV2.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Editor.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Editor/PostProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Editor/PostProcess.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Editor/PostProcess.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Editor/PostProcess.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Editor/SampleSetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Editor/SampleSetup.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Editor/SampleSetup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Editor/SampleSetup.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Gyro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Gyro.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Gyro/Gyro.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Gyro/Gyro.unity -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Gyro/Gyro.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Gyro/Gyro.unity.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Gyro/GyroSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Gyro/GyroSample.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Gyro/GyroSample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Gyro/GyroSample.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Menu.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Menu.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Menu/BackButtonManager.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Menu/BackButtonManager.prefab -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Menu/Menu.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Menu/Menu.unity -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Menu/Menu.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Menu/Menu.unity.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Multiplay.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Multiplay.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Multiplay/FollowTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Multiplay/FollowTransform.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Multiplay/Guest.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Multiplay/Guest.prefab -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Multiplay/Guest.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Multiplay/Guest.prefab.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Multiplay/Host.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Multiplay/Host.prefab -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Multiplay/Host.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Multiplay/Host.prefab.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Multiplay/Multiplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Multiplay/Multiplay.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Multiplay/Multiplay.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Multiplay/Multiplay.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Multiplay/Multiplay.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Multiplay/Multiplay.unity -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Multiplay/MultiplayChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Multiplay/MultiplayChannel.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Multiplay/MultiplaySample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Multiplay/MultiplaySample.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Multiplay/Player.inputactions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Multiplay/Player.inputactions -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Multiplay/Player.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Multiplay/Player.prefab -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Multiplay/Player.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Multiplay/Player.prefab.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Multiplay/PlayerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Multiplay/PlayerController.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Receiver.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Receiver.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Receiver/AudioSpectrumView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Receiver/AudioSpectrumView.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Receiver/Receiver.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Receiver/Receiver.unity -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Receiver/Receiver.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Receiver/Receiver.unity.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Receiver/ReceiverSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Receiver/ReceiverSample.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/RenderPipeline.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/RenderPipeline.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/RenderPipeline/HDRP: -------------------------------------------------------------------------------- 1 | ../../../../com.unity.template.renderstreaming-hd/Assets/RenderPipeline/HDRP -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/RenderPipeline/HDRP.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/RenderPipeline/HDRP.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/RenderPipeline/HDRP.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/RenderPipeline/HDRP.unity -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/RenderPipeline/URP.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/RenderPipeline/URP.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/RenderPipeline/URP.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/RenderPipeline/URP.unity -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/RenderPipeline/URP.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/RenderPipeline/URP.unity.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/RenderStreamingSample.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/RenderStreamingSample.asset -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Scripts.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Scripts/BackButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Scripts/BackButton.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Scripts/BackButton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Scripts/BackButton.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Scripts/CopyTransform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Scripts/CopyTransform.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Scripts/CopyTransform.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Scripts/CopyTransform.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Scripts/SampleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Scripts/SampleManager.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Scripts/SampleManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Scripts/SampleManager.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Scripts/SceneSelectUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Scripts/SceneSelectUI.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Scripts/SceneSelectUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Scripts/SceneSelectUI.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Stats.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Stats.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Stats/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Stats/AssemblyInfo.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Stats/AssemblyInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Stats/AssemblyInfo.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Stats/ShowStatsUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Stats/ShowStatsUI.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Stats/ShowStatsUI.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Stats/ShowStatsUI.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Stats/StatsUI.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Stats/StatsUI.prefab -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/Stats/StatsUI.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/Stats/StatsUI.prefab.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/WebBrowserInput.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/WebBrowserInput.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Samples~/Example/WebBrowserInput/sin1000Hz.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Samples~/Example/WebBrowserInput/sin1000Hz.wav -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/.tests.json: -------------------------------------------------------------------------------- 1 | { 2 | "createSeparatePackage": false 3 | } -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Editor.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Editor/AudioCodecInfoObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Editor/AudioCodecInfoObject.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Editor/AudioCodecInfoObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Editor/AudioCodecInfoObject.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Editor/EditorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Editor/EditorTest.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Editor/EditorTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Editor/EditorTest.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Editor/EditorUITest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Editor/EditorUITest.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Editor/EditorUITest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Editor/EditorUITest.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Editor/RenderStreamingSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Editor/RenderStreamingSettings.asset -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Editor/RenderStreamingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Editor/RenderStreamingTest.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Editor/RenderStreamingTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Editor/RenderStreamingTest.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Editor/RequestJobTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Editor/RequestJobTest.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Editor/RequestJobTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Editor/RequestJobTest.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Editor/VideoCodecInfoObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Editor/VideoCodecInfoObject.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Editor/VideoCodecInfoObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Editor/VideoCodecInfoObject.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/ArrayHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/ArrayHelperTest.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/ArrayHelperTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/ArrayHelperTest.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/Attribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/Attribute.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/Attribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/Attribute.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/CommandLineParserTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/CommandLineParserTest.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/CommandLineParserTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/CommandLineParserTest.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/ConditionalIgnore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/ConditionalIgnore.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/ConditionalIgnore.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5b6ef4d8d4a64791951abcc8b5a8decf 3 | timeCreated: 1607924977 -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/DataTimeExtensionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/DataTimeExtensionTest.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/DataTimeExtensionTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/DataTimeExtensionTest.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/InputPositionCorrectorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/InputPositionCorrectorTest.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/InputSystem.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/InputSystem.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/InputSystem/InputRemotingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/InputSystem/InputRemotingTest.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/MockLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/MockLogger.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/MockLogger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/MockLogger.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/PeerConnectionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/PeerConnectionTest.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/PeerConnectionTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/PeerConnectionTest.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/PrivateSignalingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/PrivateSignalingTest.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/PrivateSignalingTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 814f2e203b3b488b8e189da9bec934d5 3 | timeCreated: 1606972537 -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/RenderStreamingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/RenderStreamingTest.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/RenderStreamingTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/RenderStreamingTest.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/RenderpipelineTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/RenderpipelineTest.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/RenderpipelineTest.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 21ed31b06b184ab7b3866fc443ca3f87 3 | timeCreated: 1611530539 -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/Signaling.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/Signaling.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/Signaling/MockSignaling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/Signaling/MockSignaling.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/Signaling/MockSignaling.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/Signaling/MockSignaling.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/SignalingEventProviderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/SignalingEventProviderTest.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/SignalingHandlerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/SignalingHandlerTest.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/SignalingHandlerTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/SignalingHandlerTest.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/SignalingManagerInternalTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/SignalingManagerInternalTest.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/SignalingManagerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/SignalingManagerTest.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/SignalingManagerTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/SignalingManagerTest.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/SignalingSettingsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/SignalingSettingsTest.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/SignalingSettingsTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/SignalingSettingsTest.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/SignalingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/SignalingTest.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/SignalingTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/SignalingTest.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/StreamingComponentTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/StreamingComponentTest.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/StreamingComponentTest.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/StreamingComponentTest.cs.meta -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/TestUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/Tests/Runtime/TestUtility.cs -------------------------------------------------------------------------------- /com.unity.renderstreaming/Tests/Runtime/TestUtility.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8d9a35324d004430a70f4b1b4f5bf534 3 | timeCreated: 1607479264 -------------------------------------------------------------------------------- /com.unity.renderstreaming/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/package.json -------------------------------------------------------------------------------- /com.unity.renderstreaming/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.renderstreaming/package.json.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/ExampleAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/ExampleAssets.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/ExampleAssets/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/ExampleAssets/Models.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/ExampleAssets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/ExampleAssets/Prefabs.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/ExampleAssets/Sounds.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/ExampleAssets/Sounds.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/ExampleAssets/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/ExampleAssets/Textures.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/HDRPDefaultResources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/HDRPDefaultResources.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/Presets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/Presets.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/Presets/Defaults.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/Presets/Defaults.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/Presets/HDRTexture.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/Presets/HDRTexture.preset -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/Readme.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/Readme.asset -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/Readme.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/Readme.asset.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/RenderPipeline.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/RenderPipeline.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/RenderPipeline/HDRP.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/RenderPipeline/HDRP.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/Scenes.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/Scenes/samplescene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/Scenes/samplescene.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/Scenes/samplescene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/Scenes/samplescene.unity -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/Settings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/Settings.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/Settings/Foliage.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/Settings/Foliage.asset -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/Settings/Foliage.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/Settings/Foliage.asset.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/Settings/Skin.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/Settings/Skin.asset -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/Settings/Skin.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/Settings/Skin.asset.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/Tests.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/Tests/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/Tests/Editor.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/Tests/Runtime.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/Tests/Runtime.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/TextMesh Pro.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/TextMesh Pro/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/TextMesh Pro/Fonts.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/TextMesh Pro/Resources.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/TextMesh Pro/Sprites.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/TutorialInfo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/TutorialInfo.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/TutorialInfo/Icons.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/TutorialInfo/Icons.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/TutorialInfo/Layout.wlt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/TutorialInfo/Layout.wlt -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Assets/TutorialInfo/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Assets/TutorialInfo/Scripts.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Packages/manifest.json -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/Packages/packages-lock.json -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-hd/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-hd/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/ExampleAssets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Assets/ExampleAssets.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/ExampleAssets/Models: -------------------------------------------------------------------------------- 1 | ../../../com.unity.template.renderstreaming-hd/Assets/ExampleAssets/Models -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/ExampleAssets/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Assets/ExampleAssets/Models.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/ExampleAssets/Prefabs: -------------------------------------------------------------------------------- 1 | ../../../com.unity.template.renderstreaming-hd/Assets/ExampleAssets/Prefabs -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/ExampleAssets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Assets/ExampleAssets/Prefabs.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/ExampleAssets/Sounds: -------------------------------------------------------------------------------- 1 | ../../../com.unity.template.renderstreaming-hd/Assets/ExampleAssets/Sounds -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/ExampleAssets/Sounds.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Assets/ExampleAssets/Sounds.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/ExampleAssets/Textures: -------------------------------------------------------------------------------- 1 | ../../../com.unity.template.renderstreaming-hd/Assets/ExampleAssets/Textures -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/HDRPDefaultResources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Assets/HDRPDefaultResources.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/Presets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Assets/Presets.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/Presets/Defaults.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Assets/Presets/Defaults.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/Presets/HDRTexture.preset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Assets/Presets/HDRTexture.preset -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/Readme.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Assets/Readme.asset -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/Readme.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Assets/Readme.asset.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/RenderPipeline.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Assets/RenderPipeline.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/RenderPipeline/HDRP.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Assets/RenderPipeline/HDRP.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Assets/Scenes.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/Scenes/samplescene.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Assets/Scenes/samplescene.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/Scenes/samplescene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Assets/Scenes/samplescene.unity -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/Settings.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Assets/Settings.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/Settings/Foliage.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Assets/Settings/Foliage.asset -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/Settings/Skin.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Assets/Settings/Skin.asset -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/Tests: -------------------------------------------------------------------------------- 1 | ../../com.unity.template.renderstreaming-hd/Assets/Tests -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/Tests.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Assets/Tests.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/TextMesh Pro: -------------------------------------------------------------------------------- 1 | ../../com.unity.template.renderstreaming-hd/Assets/TextMesh Pro -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Assets/TextMesh Pro.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/TutorialInfo: -------------------------------------------------------------------------------- 1 | ../../com.unity.template.renderstreaming-hd/Assets/TutorialInfo -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Assets/TutorialInfo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Assets/TutorialInfo.meta -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Packages/com.unity.template.renderstreaming-rtx/Tests: -------------------------------------------------------------------------------- 1 | ../../../com.unity.template.renderstreaming-hd/Packages/com.unity.template.renderstreaming-hd/Tests -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Packages/manifest.json -------------------------------------------------------------------------------- /com.unity.template.renderstreaming-rtx/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/com.unity.template.renderstreaming-rtx/Packages/packages-lock.json -------------------------------------------------------------------------------- /pack_webapp.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/pack_webapp.cmd -------------------------------------------------------------------------------- /pack_webapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/pack_webapp.sh -------------------------------------------------------------------------------- /test_webapp.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/test_webapp.cmd -------------------------------------------------------------------------------- /test_webapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/test_webapp.sh -------------------------------------------------------------------------------- /test_webapp_client.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/test_webapp_client.cmd -------------------------------------------------------------------------------- /test_webapp_client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VedalAI/UnityRenderStreaming/HEAD/test_webapp_client.sh --------------------------------------------------------------------------------