├── .gitignore ├── Assets ├── uRemoteDesktopDuplication.meta └── uRemoteDesktopDuplication │ ├── Materials.meta │ ├── Materials │ ├── Desktop.mat │ └── Desktop.mat.meta │ ├── Prefabs.meta │ ├── Prefabs │ ├── Receiver.prefab │ ├── Receiver.prefab.meta │ ├── Sender.prefab │ └── Sender.prefab.meta │ ├── Scenes.meta │ ├── Scenes │ ├── Receiver.unity │ ├── Receiver.unity.meta │ ├── ReceiverSettings.lighting │ ├── ReceiverSettings.lighting.meta │ ├── Sender.unity │ ├── Sender.unity.meta │ ├── SenderSettings.lighting │ ├── SenderSettings.lighting.meta │ ├── SenderToReceiver.unity │ ├── SenderToReceiver.unity.meta │ ├── SenderToReceiverSettings.lighting │ └── SenderToReceiverSettings.lighting.meta │ ├── Scripts.meta │ └── Scripts │ ├── DesktopEncoder.cs │ ├── DesktopEncoder.cs.meta │ ├── DesktopReceiver.cs │ ├── DesktopReceiver.cs.meta │ ├── DesktopSender.cs │ ├── DesktopSender.cs.meta │ ├── OutputEncodedDataToFile.cs │ └── OutputEncodedDataToFile.cs.meta ├── LICENSE.md ├── LICENSE_NvPipe ├── 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 ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset ├── README.md └── UserSettings └── EditorUserSettings.asset /.gitignore: -------------------------------------------------------------------------------- 1 | # This .gitignore file should be placed at the root of your Unity project directory 2 | # 3 | # Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore 4 | # 5 | /[Ll]ibrary/ 6 | /[Tt]emp/ 7 | /[Oo]bj/ 8 | /[Bb]uild/ 9 | /[Bb]uilds/ 10 | /[Ll]ogs/ 11 | /[Mm]emoryCaptures/ 12 | /[Ww]iki/ 13 | 14 | # Never ignore Asset meta data 15 | !/[Aa]ssets/**/*.meta 16 | 17 | # Uncomment this line if you wish to ignore the asset store tools plugin 18 | # /[Aa]ssets/AssetStoreTools* 19 | 20 | # TextMesh Pro files 21 | [Aa]ssets/TextMesh*Pro/ 22 | 23 | # Autogenerated Jetbrains Rider plugin 24 | [Aa]ssets/Plugins/Editor/JetBrains* 25 | 26 | # Visual Studio cache directory 27 | .vs/ 28 | 29 | # Gradle cache directory 30 | .gradle/ 31 | 32 | # Autogenerated VS/MD/Consulo solution and project files 33 | ExportedObj/ 34 | .consulo/ 35 | *.csproj 36 | *.unityproj 37 | *.sln 38 | *.suo 39 | *.tmp 40 | *.user 41 | *.userprefs 42 | *.pidb 43 | *.booproj 44 | *.svd 45 | *.pdb 46 | *.mdb 47 | *.opendb 48 | *.VC.db 49 | 50 | # Unity3D generated meta files 51 | *.pidb.meta 52 | *.pdb.meta 53 | *.mdb.meta 54 | 55 | # Unity3D generated file on crash reports 56 | sysinfo.txt 57 | 58 | # Builds 59 | *.apk 60 | *.unitypackage 61 | 62 | # Crashlytics generated file 63 | crashlytics-build.properties 64 | 65 | # Others 66 | .DS_Store 67 | .vscode 68 | .vsconfig 69 | *.log 70 | *.h264 71 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 1c545b03c36362e4084cf6fbf1f36228 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Materials.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22f17de3123a13c45ae61096acbc40a3 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Materials/Desktop.mat: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!21 &2100000 4 | Material: 5 | serializedVersion: 6 6 | m_ObjectHideFlags: 0 7 | m_CorrespondingSourceObject: {fileID: 0} 8 | m_PrefabInstance: {fileID: 0} 9 | m_PrefabAsset: {fileID: 0} 10 | m_Name: Desktop 11 | m_Shader: {fileID: 4800000, guid: 2ca7b38c676bddd439a77a646a279a54, type: 3} 12 | m_ShaderKeywords: _CULL_BACK _FORWARD_Y 13 | m_LightmapFlags: 4 14 | m_EnableInstancingVariants: 0 15 | m_DoubleSidedGI: 0 16 | m_CustomRenderQueue: -1 17 | stringTagMap: {} 18 | disabledShaderPasses: [] 19 | m_SavedProperties: 20 | serializedVersion: 3 21 | m_TexEnvs: 22 | - _BumpMap: 23 | m_Texture: {fileID: 0} 24 | m_Scale: {x: 1, y: 1} 25 | m_Offset: {x: 0, y: 0} 26 | - _DetailAlbedoMap: 27 | m_Texture: {fileID: 0} 28 | m_Scale: {x: 1, y: 1} 29 | m_Offset: {x: 0, y: 0} 30 | - _DetailMask: 31 | m_Texture: {fileID: 0} 32 | m_Scale: {x: 1, y: 1} 33 | m_Offset: {x: 0, y: 0} 34 | - _DetailNormalMap: 35 | m_Texture: {fileID: 0} 36 | m_Scale: {x: 1, y: 1} 37 | m_Offset: {x: 0, y: 0} 38 | - _EmissionMap: 39 | m_Texture: {fileID: 0} 40 | m_Scale: {x: 1, y: 1} 41 | m_Offset: {x: 0, y: 0} 42 | - _MainTex: 43 | m_Texture: {fileID: 0} 44 | m_Scale: {x: 1, y: 1} 45 | m_Offset: {x: 0, y: 0} 46 | - _MetallicGlossMap: 47 | m_Texture: {fileID: 0} 48 | m_Scale: {x: 1, y: 1} 49 | m_Offset: {x: 0, y: 0} 50 | - _OcclusionMap: 51 | m_Texture: {fileID: 0} 52 | m_Scale: {x: 1, y: 1} 53 | m_Offset: {x: 0, y: 0} 54 | - _ParallaxMap: 55 | m_Texture: {fileID: 0} 56 | m_Scale: {x: 1, y: 1} 57 | m_Offset: {x: 0, y: 0} 58 | m_Floats: 59 | - _Bend: 0 60 | - _BumpScale: 1 61 | - _ColorScale: 1 62 | - _Cull: 2 63 | - _Cutoff: 0.5 64 | - _DetailNormalMapScale: 1 65 | - _DstBlend: 0 66 | - _Forward: 0 67 | - _GlossMapScale: 1 68 | - _Glossiness: 0.5 69 | - _GlossyReflections: 1 70 | - _Metallic: 0 71 | - _Mode: 0 72 | - _OcclusionStrength: 1 73 | - _Parallax: 0.02 74 | - _Radius: 30 75 | - _SmoothnessTextureChannel: 0 76 | - _SpecularHighlights: 1 77 | - _SrcBlend: 1 78 | - _Thickness: 1 79 | - _UVSec: 0 80 | - _Width: 1 81 | - _ZWrite: 1 82 | m_Colors: 83 | - _Color: {r: 1, g: 1, b: 1, a: 1} 84 | - _EmissionColor: {r: 0, g: 0, b: 0, a: 1} 85 | m_BuildTextureStacks: [] 86 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Materials/Desktop.mat.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 250fbb75a17a5f243ab12fe921f86aa4 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 2100000 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Prefabs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fa674c905adc79e4db8f82381de2c7b9 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Prefabs/Receiver.prefab: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1 &764090781195405980 4 | GameObject: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | serializedVersion: 6 10 | m_Component: 11 | - component: {fileID: 763114914810638748} 12 | - component: {fileID: 787048375187356482} 13 | - component: {fileID: 777050595890300202} 14 | - component: {fileID: 764090781195405983} 15 | m_Layer: 0 16 | m_Name: Monitor Board 17 | m_TagString: Untagged 18 | m_Icon: {fileID: 0} 19 | m_NavMeshLayer: 0 20 | m_StaticEditorFlags: 0 21 | m_IsActive: 1 22 | --- !u!4 &763114914810638748 23 | Transform: 24 | m_ObjectHideFlags: 0 25 | m_CorrespondingSourceObject: {fileID: 0} 26 | m_PrefabInstance: {fileID: 0} 27 | m_PrefabAsset: {fileID: 0} 28 | m_GameObject: {fileID: 764090781195405980} 29 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 30 | m_LocalPosition: {x: 0, y: 0, z: 0} 31 | m_LocalScale: {x: 1.92, y: 1.08, z: 1} 32 | m_Children: [] 33 | m_Father: {fileID: 4690024007171475925} 34 | m_RootOrder: 3 35 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 36 | --- !u!33 &787048375187356482 37 | MeshFilter: 38 | m_ObjectHideFlags: 0 39 | m_CorrespondingSourceObject: {fileID: 0} 40 | m_PrefabInstance: {fileID: 0} 41 | m_PrefabAsset: {fileID: 0} 42 | m_GameObject: {fileID: 764090781195405980} 43 | m_Mesh: {fileID: 4300002, guid: d6b30b913257fee4d8246bf7a2620fcd, type: 3} 44 | --- !u!23 &777050595890300202 45 | MeshRenderer: 46 | m_ObjectHideFlags: 0 47 | m_CorrespondingSourceObject: {fileID: 0} 48 | m_PrefabInstance: {fileID: 0} 49 | m_PrefabAsset: {fileID: 0} 50 | m_GameObject: {fileID: 764090781195405980} 51 | m_Enabled: 1 52 | m_CastShadows: 1 53 | m_ReceiveShadows: 1 54 | m_DynamicOccludee: 1 55 | m_MotionVectors: 1 56 | m_LightProbeUsage: 1 57 | m_ReflectionProbeUsage: 1 58 | m_RayTracingMode: 2 59 | m_RayTraceProcedural: 0 60 | m_RenderingLayerMask: 1 61 | m_RendererPriority: 0 62 | m_Materials: 63 | - {fileID: 2100000, guid: 250fbb75a17a5f243ab12fe921f86aa4, type: 2} 64 | m_StaticBatchInfo: 65 | firstSubMesh: 0 66 | subMeshCount: 0 67 | m_StaticBatchRoot: {fileID: 0} 68 | m_ProbeAnchor: {fileID: 0} 69 | m_LightProbeVolumeOverride: {fileID: 0} 70 | m_ScaleInLightmap: 1 71 | m_ReceiveGI: 1 72 | m_PreserveUVs: 1 73 | m_IgnoreNormalsForChartDetection: 0 74 | m_ImportantGI: 0 75 | m_StitchLightmapSeams: 1 76 | m_SelectedEditorRenderState: 3 77 | m_MinimumChartSize: 4 78 | m_AutoUVMaxDistance: 0.5 79 | m_AutoUVMaxAngle: 89 80 | m_LightmapParameters: {fileID: 0} 81 | m_SortingLayerID: 0 82 | m_SortingLayer: 0 83 | m_SortingOrder: 0 84 | m_AdditionalVertexStreams: {fileID: 0} 85 | --- !u!114 &764090781195405983 86 | MonoBehaviour: 87 | m_ObjectHideFlags: 0 88 | m_CorrespondingSourceObject: {fileID: 0} 89 | m_PrefabInstance: {fileID: 0} 90 | m_PrefabAsset: {fileID: 0} 91 | m_GameObject: {fileID: 764090781195405980} 92 | m_Enabled: 1 93 | m_EditorHideFlags: 0 94 | m_Script: {fileID: 11500000, guid: 78ff908a2776a034e9792518f4c6da70, type: 3} 95 | m_Name: 96 | m_EditorClassIdentifier: 97 | decoder: {fileID: 4690024006306174639} 98 | --- !u!1 &4690024006306174637 99 | GameObject: 100 | m_ObjectHideFlags: 0 101 | m_CorrespondingSourceObject: {fileID: 0} 102 | m_PrefabInstance: {fileID: 0} 103 | m_PrefabAsset: {fileID: 0} 104 | serializedVersion: 6 105 | m_Component: 106 | - component: {fileID: 4690024006306174636} 107 | - component: {fileID: 4690024006306174639} 108 | m_Layer: 0 109 | m_Name: Decoder 110 | m_TagString: Untagged 111 | m_Icon: {fileID: 0} 112 | m_NavMeshLayer: 0 113 | m_StaticEditorFlags: 0 114 | m_IsActive: 1 115 | --- !u!4 &4690024006306174636 116 | Transform: 117 | m_ObjectHideFlags: 0 118 | m_CorrespondingSourceObject: {fileID: 0} 119 | m_PrefabInstance: {fileID: 0} 120 | m_PrefabAsset: {fileID: 0} 121 | m_GameObject: {fileID: 4690024006306174637} 122 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 123 | m_LocalPosition: {x: 0, y: 0, z: 0} 124 | m_LocalScale: {x: 1, y: 1, z: 1} 125 | m_Children: [] 126 | m_Father: {fileID: 4690024007171475925} 127 | m_RootOrder: 2 128 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 129 | --- !u!114 &4690024006306174639 130 | MonoBehaviour: 131 | m_ObjectHideFlags: 0 132 | m_CorrespondingSourceObject: {fileID: 0} 133 | m_PrefabInstance: {fileID: 0} 134 | m_PrefabAsset: {fileID: 0} 135 | m_GameObject: {fileID: 4690024006306174637} 136 | m_Enabled: 1 137 | m_EditorHideFlags: 0 138 | m_Script: {fileID: 11500000, guid: fd03e427cccae6341afca0ae448e2ec0, type: 3} 139 | m_Name: 140 | m_EditorClassIdentifier: 141 | width: 3840 142 | height: 2160 143 | codec: 0 144 | format: 0 145 | --- !u!1 &4690024007171475922 146 | GameObject: 147 | m_ObjectHideFlags: 0 148 | m_CorrespondingSourceObject: {fileID: 0} 149 | m_PrefabInstance: {fileID: 0} 150 | m_PrefabAsset: {fileID: 0} 151 | serializedVersion: 6 152 | m_Component: 153 | - component: {fileID: 4690024007171475925} 154 | m_Layer: 0 155 | m_Name: Receiver 156 | m_TagString: Untagged 157 | m_Icon: {fileID: 0} 158 | m_NavMeshLayer: 0 159 | m_StaticEditorFlags: 0 160 | m_IsActive: 1 161 | --- !u!4 &4690024007171475925 162 | Transform: 163 | m_ObjectHideFlags: 0 164 | m_CorrespondingSourceObject: {fileID: 0} 165 | m_PrefabInstance: {fileID: 0} 166 | m_PrefabAsset: {fileID: 0} 167 | m_GameObject: {fileID: 4690024007171475922} 168 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 169 | m_LocalPosition: {x: 0, y: 0, z: 0} 170 | m_LocalScale: {x: 1, y: 1, z: 1} 171 | m_Children: 172 | - {fileID: 4690024007237174925} 173 | - {fileID: 4690024007173010505} 174 | - {fileID: 4690024006306174636} 175 | - {fileID: 763114914810638748} 176 | - {fileID: 4690024007218344144} 177 | m_Father: {fileID: 0} 178 | m_RootOrder: 0 179 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 180 | --- !u!1 &4690024007173010502 181 | GameObject: 182 | m_ObjectHideFlags: 0 183 | m_CorrespondingSourceObject: {fileID: 0} 184 | m_PrefabInstance: {fileID: 0} 185 | m_PrefabAsset: {fileID: 0} 186 | serializedVersion: 6 187 | m_Component: 188 | - component: {fileID: 4690024007173010505} 189 | - component: {fileID: 4690024007173010504} 190 | m_Layer: 0 191 | m_Name: Receiver 192 | m_TagString: Untagged 193 | m_Icon: {fileID: 0} 194 | m_NavMeshLayer: 0 195 | m_StaticEditorFlags: 0 196 | m_IsActive: 1 197 | --- !u!4 &4690024007173010505 198 | Transform: 199 | m_ObjectHideFlags: 0 200 | m_CorrespondingSourceObject: {fileID: 0} 201 | m_PrefabInstance: {fileID: 0} 202 | m_PrefabAsset: {fileID: 0} 203 | m_GameObject: {fileID: 4690024007173010502} 204 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 205 | m_LocalPosition: {x: 0, y: 0, z: 0} 206 | m_LocalScale: {x: 1, y: 1, z: 1} 207 | m_Children: [] 208 | m_Father: {fileID: 4690024007171475925} 209 | m_RootOrder: 1 210 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 211 | --- !u!114 &4690024007173010504 212 | MonoBehaviour: 213 | m_ObjectHideFlags: 0 214 | m_CorrespondingSourceObject: {fileID: 0} 215 | m_PrefabInstance: {fileID: 0} 216 | m_PrefabAsset: {fileID: 0} 217 | m_GameObject: {fileID: 4690024007173010502} 218 | m_Enabled: 1 219 | m_EditorHideFlags: 0 220 | m_Script: {fileID: 11500000, guid: 62c9ee82d7a44904d814aab25385f430, type: 3} 221 | m_Name: 222 | m_EditorClassIdentifier: 223 | decoder: {fileID: 4690024006306174639} 224 | timeout: 100 225 | --- !u!1 &4690024007218344145 226 | GameObject: 227 | m_ObjectHideFlags: 0 228 | m_CorrespondingSourceObject: {fileID: 0} 229 | m_PrefabInstance: {fileID: 0} 230 | m_PrefabAsset: {fileID: 0} 231 | serializedVersion: 6 232 | m_Component: 233 | - component: {fileID: 4690024007218344144} 234 | - component: {fileID: 4690024007218344147} 235 | m_Layer: 0 236 | m_Name: Debug 237 | m_TagString: Untagged 238 | m_Icon: {fileID: 0} 239 | m_NavMeshLayer: 0 240 | m_StaticEditorFlags: 0 241 | m_IsActive: 1 242 | --- !u!4 &4690024007218344144 243 | Transform: 244 | m_ObjectHideFlags: 0 245 | m_CorrespondingSourceObject: {fileID: 0} 246 | m_PrefabInstance: {fileID: 0} 247 | m_PrefabAsset: {fileID: 0} 248 | m_GameObject: {fileID: 4690024007218344145} 249 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 250 | m_LocalPosition: {x: 0, y: 0, z: 0} 251 | m_LocalScale: {x: 1, y: 1, z: 1} 252 | m_Children: [] 253 | m_Father: {fileID: 4690024007171475925} 254 | m_RootOrder: 4 255 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 256 | --- !u!114 &4690024007218344147 257 | MonoBehaviour: 258 | m_ObjectHideFlags: 0 259 | m_CorrespondingSourceObject: {fileID: 0} 260 | m_PrefabInstance: {fileID: 0} 261 | m_PrefabAsset: {fileID: 0} 262 | m_GameObject: {fileID: 4690024007218344145} 263 | m_Enabled: 1 264 | m_EditorHideFlags: 0 265 | m_Script: {fileID: 11500000, guid: 0833f6be5a296eb4fb05eca6ff7e6439, type: 3} 266 | m_Name: 267 | m_EditorClassIdentifier: 268 | filePath: decoded.h264 269 | --- !u!1 &4690024007237174922 270 | GameObject: 271 | m_ObjectHideFlags: 0 272 | m_CorrespondingSourceObject: {fileID: 0} 273 | m_PrefabInstance: {fileID: 0} 274 | m_PrefabAsset: {fileID: 0} 275 | serializedVersion: 6 276 | m_Component: 277 | - component: {fileID: 4690024007237174925} 278 | - component: {fileID: 4690024007237174924} 279 | m_Layer: 0 280 | m_Name: Server 281 | m_TagString: Untagged 282 | m_Icon: {fileID: 0} 283 | m_NavMeshLayer: 0 284 | m_StaticEditorFlags: 0 285 | m_IsActive: 1 286 | --- !u!4 &4690024007237174925 287 | Transform: 288 | m_ObjectHideFlags: 0 289 | m_CorrespondingSourceObject: {fileID: 0} 290 | m_PrefabInstance: {fileID: 0} 291 | m_PrefabAsset: {fileID: 0} 292 | m_GameObject: {fileID: 4690024007237174922} 293 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 294 | m_LocalPosition: {x: 0, y: 0, z: 0} 295 | m_LocalScale: {x: 1, y: 1, z: 1} 296 | m_Children: [] 297 | m_Father: {fileID: 4690024007171475925} 298 | m_RootOrder: 0 299 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 300 | --- !u!114 &4690024007237174924 301 | MonoBehaviour: 302 | m_ObjectHideFlags: 0 303 | m_CorrespondingSourceObject: {fileID: 0} 304 | m_PrefabInstance: {fileID: 0} 305 | m_PrefabAsset: {fileID: 0} 306 | m_GameObject: {fileID: 4690024007237174922} 307 | m_Enabled: 1 308 | m_EditorHideFlags: 0 309 | m_Script: {fileID: 11500000, guid: ed41645692348410d84991648165334c, type: 3} 310 | m_Name: 311 | m_EditorClassIdentifier: 312 | port: 3333 313 | autoStart: 1 314 | onDataReceived: 315 | m_PersistentCalls: 316 | m_Calls: 317 | - m_Target: {fileID: 4690024007173010504} 318 | m_TargetAssemblyTypeName: UnityRemoteDesktopDuplication.DesktopReceiver, 319 | Assembly-CSharp 320 | m_MethodName: OnDataReceived 321 | m_Mode: 0 322 | m_Arguments: 323 | m_ObjectArgument: {fileID: 0} 324 | m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine 325 | m_IntArgument: 0 326 | m_FloatArgument: 0 327 | m_StringArgument: 328 | m_BoolArgument: 0 329 | m_CallState: 2 330 | onServerStarted: 331 | m_PersistentCalls: 332 | m_Calls: [] 333 | onServerStopped: 334 | m_PersistentCalls: 335 | m_Calls: [] 336 | _onDataReceivedEditor: 337 | m_PersistentCalls: 338 | m_Calls: [] 339 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Prefabs/Receiver.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 17d956ae30022714782e814b1589f8de 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Prefabs/Sender.prefab: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1 &7790506868854959597 4 | GameObject: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | serializedVersion: 6 10 | m_Component: 11 | - component: {fileID: 7786944499913955053} 12 | - component: {fileID: 7812549561696492595} 13 | - component: {fileID: 7804539532054274651} 14 | - component: {fileID: 7893683495387651245} 15 | m_Layer: 0 16 | m_Name: Monitor Board 17 | m_TagString: Untagged 18 | m_Icon: {fileID: 0} 19 | m_NavMeshLayer: 0 20 | m_StaticEditorFlags: 0 21 | m_IsActive: 1 22 | --- !u!4 &7786944499913955053 23 | Transform: 24 | m_ObjectHideFlags: 0 25 | m_CorrespondingSourceObject: {fileID: 0} 26 | m_PrefabInstance: {fileID: 0} 27 | m_PrefabAsset: {fileID: 0} 28 | m_GameObject: {fileID: 7790506868854959597} 29 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 30 | m_LocalPosition: {x: 0, y: 0, z: 0} 31 | m_LocalScale: {x: 1.92, y: 1.08, z: 1} 32 | m_Children: [] 33 | m_Father: {fileID: 7790942828218749805} 34 | m_RootOrder: 0 35 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 36 | --- !u!33 &7812549561696492595 37 | MeshFilter: 38 | m_ObjectHideFlags: 0 39 | m_CorrespondingSourceObject: {fileID: 0} 40 | m_PrefabInstance: {fileID: 0} 41 | m_PrefabAsset: {fileID: 0} 42 | m_GameObject: {fileID: 7790506868854959597} 43 | m_Mesh: {fileID: 4300002, guid: d6b30b913257fee4d8246bf7a2620fcd, type: 3} 44 | --- !u!23 &7804539532054274651 45 | MeshRenderer: 46 | m_ObjectHideFlags: 0 47 | m_CorrespondingSourceObject: {fileID: 0} 48 | m_PrefabInstance: {fileID: 0} 49 | m_PrefabAsset: {fileID: 0} 50 | m_GameObject: {fileID: 7790506868854959597} 51 | m_Enabled: 1 52 | m_CastShadows: 1 53 | m_ReceiveShadows: 1 54 | m_DynamicOccludee: 1 55 | m_MotionVectors: 1 56 | m_LightProbeUsage: 1 57 | m_ReflectionProbeUsage: 1 58 | m_RayTracingMode: 2 59 | m_RayTraceProcedural: 0 60 | m_RenderingLayerMask: 1 61 | m_RendererPriority: 0 62 | m_Materials: 63 | - {fileID: 2100000, guid: 250fbb75a17a5f243ab12fe921f86aa4, type: 2} 64 | m_StaticBatchInfo: 65 | firstSubMesh: 0 66 | subMeshCount: 0 67 | m_StaticBatchRoot: {fileID: 0} 68 | m_ProbeAnchor: {fileID: 0} 69 | m_LightProbeVolumeOverride: {fileID: 0} 70 | m_ScaleInLightmap: 1 71 | m_ReceiveGI: 1 72 | m_PreserveUVs: 1 73 | m_IgnoreNormalsForChartDetection: 0 74 | m_ImportantGI: 0 75 | m_StitchLightmapSeams: 1 76 | m_SelectedEditorRenderState: 3 77 | m_MinimumChartSize: 4 78 | m_AutoUVMaxDistance: 0.5 79 | m_AutoUVMaxAngle: 89 80 | m_LightmapParameters: {fileID: 0} 81 | m_SortingLayerID: 0 82 | m_SortingLayer: 0 83 | m_SortingOrder: 0 84 | m_AdditionalVertexStreams: {fileID: 0} 85 | --- !u!114 &7893683495387651245 86 | MonoBehaviour: 87 | m_ObjectHideFlags: 0 88 | m_CorrespondingSourceObject: {fileID: 0} 89 | m_PrefabInstance: {fileID: 0} 90 | m_PrefabAsset: {fileID: 0} 91 | m_GameObject: {fileID: 7790506868854959597} 92 | m_Enabled: 1 93 | m_EditorHideFlags: 0 94 | m_Script: {fileID: 11500000, guid: bb54a34570e4747429b1c5b66c69d356, type: 3} 95 | m_Name: 96 | m_EditorClassIdentifier: 97 | invertX_: 0 98 | invertY_: 0 99 | useClip_: 0 100 | clipPos: {x: 0, y: 0} 101 | clipScale: {x: 0.2, y: 0.2} 102 | --- !u!1 &7790942827231238683 103 | GameObject: 104 | m_ObjectHideFlags: 0 105 | m_CorrespondingSourceObject: {fileID: 0} 106 | m_PrefabInstance: {fileID: 0} 107 | m_PrefabAsset: {fileID: 0} 108 | serializedVersion: 6 109 | m_Component: 110 | - component: {fileID: 7790942827231238680} 111 | - component: {fileID: 7790942827231238681} 112 | m_Layer: 0 113 | m_Name: Sender 114 | m_TagString: Untagged 115 | m_Icon: {fileID: 0} 116 | m_NavMeshLayer: 0 117 | m_StaticEditorFlags: 0 118 | m_IsActive: 1 119 | --- !u!4 &7790942827231238680 120 | Transform: 121 | m_ObjectHideFlags: 0 122 | m_CorrespondingSourceObject: {fileID: 0} 123 | m_PrefabInstance: {fileID: 0} 124 | m_PrefabAsset: {fileID: 0} 125 | m_GameObject: {fileID: 7790942827231238683} 126 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 127 | m_LocalPosition: {x: 0, y: 0, z: 0} 128 | m_LocalScale: {x: 1, y: 1, z: 1} 129 | m_Children: [] 130 | m_Father: {fileID: 7790942828218749805} 131 | m_RootOrder: 3 132 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 133 | --- !u!114 &7790942827231238681 134 | MonoBehaviour: 135 | m_ObjectHideFlags: 0 136 | m_CorrespondingSourceObject: {fileID: 0} 137 | m_PrefabInstance: {fileID: 0} 138 | m_PrefabAsset: {fileID: 0} 139 | m_GameObject: {fileID: 7790942827231238683} 140 | m_Enabled: 1 141 | m_EditorHideFlags: 0 142 | m_Script: {fileID: 11500000, guid: 7ab587b1af120cf48bc1c923283cc118, type: 3} 143 | m_Name: 144 | m_EditorClassIdentifier: 145 | client: {fileID: 7790942828467070158} 146 | encoder: {fileID: 7790942827443430434} 147 | maxPacketSize: 65000 148 | --- !u!1 &7790942827443430620 149 | GameObject: 150 | m_ObjectHideFlags: 0 151 | m_CorrespondingSourceObject: {fileID: 0} 152 | m_PrefabInstance: {fileID: 0} 153 | m_PrefabAsset: {fileID: 0} 154 | serializedVersion: 6 155 | m_Component: 156 | - component: {fileID: 7790942827443430621} 157 | - component: {fileID: 7790942827443430434} 158 | m_Layer: 0 159 | m_Name: Encoder 160 | m_TagString: Untagged 161 | m_Icon: {fileID: 0} 162 | m_NavMeshLayer: 0 163 | m_StaticEditorFlags: 0 164 | m_IsActive: 1 165 | --- !u!4 &7790942827443430621 166 | Transform: 167 | m_ObjectHideFlags: 0 168 | m_CorrespondingSourceObject: {fileID: 0} 169 | m_PrefabInstance: {fileID: 0} 170 | m_PrefabAsset: {fileID: 0} 171 | m_GameObject: {fileID: 7790942827443430620} 172 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 173 | m_LocalPosition: {x: 0, y: 0, z: 0} 174 | m_LocalScale: {x: 1, y: 1, z: 1} 175 | m_Children: [] 176 | m_Father: {fileID: 7790942828218749805} 177 | m_RootOrder: 1 178 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 179 | --- !u!114 &7790942827443430434 180 | MonoBehaviour: 181 | m_ObjectHideFlags: 0 182 | m_CorrespondingSourceObject: {fileID: 0} 183 | m_PrefabInstance: {fileID: 0} 184 | m_PrefabAsset: {fileID: 0} 185 | m_GameObject: {fileID: 7790942827443430620} 186 | m_Enabled: 1 187 | m_EditorHideFlags: 0 188 | m_Script: {fileID: 11500000, guid: 5c45c05707607b549bdd68904d990f9d, type: 3} 189 | m_Name: 190 | m_EditorClassIdentifier: 191 | texture: {fileID: 7893683495387651245} 192 | encoder: 193 | onEncoded: 194 | m_PersistentCalls: 195 | m_Calls: 196 | - m_Target: {fileID: 7790942827231238681} 197 | m_TargetAssemblyTypeName: UnityRemoteDesktopDuplication.DesktopSender, 198 | Assembly-CSharp 199 | m_MethodName: OnEncoded 200 | m_Mode: 0 201 | m_Arguments: 202 | m_ObjectArgument: {fileID: 0} 203 | m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine 204 | m_IntArgument: 0 205 | m_FloatArgument: 0 206 | m_StringArgument: 207 | m_BoolArgument: 0 208 | m_CallState: 2 209 | - m_Target: {fileID: 7790942828652846042} 210 | m_TargetAssemblyTypeName: uNvEncoder.Examples.OutputEncodedDataToFile, 211 | Assembly-CSharp 212 | m_MethodName: OnData 213 | m_Mode: 0 214 | m_Arguments: 215 | m_ObjectArgument: {fileID: 0} 216 | m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine 217 | m_IntArgument: 0 218 | m_FloatArgument: 0 219 | m_StringArgument: 220 | m_BoolArgument: 0 221 | m_CallState: 2 222 | outputError: 0 223 | setting: 224 | width: 3840 225 | height: 2160 226 | frameRate: 60 227 | bitRate: 10000000 228 | maxFrameSize: 200000 229 | format: 87 230 | idrFrameIntervalFrame: 60 231 | --- !u!1 &7790942828218749804 232 | GameObject: 233 | m_ObjectHideFlags: 0 234 | m_CorrespondingSourceObject: {fileID: 0} 235 | m_PrefabInstance: {fileID: 0} 236 | m_PrefabAsset: {fileID: 0} 237 | serializedVersion: 6 238 | m_Component: 239 | - component: {fileID: 7790942828218749805} 240 | m_Layer: 0 241 | m_Name: Sender 242 | m_TagString: Untagged 243 | m_Icon: {fileID: 0} 244 | m_NavMeshLayer: 0 245 | m_StaticEditorFlags: 0 246 | m_IsActive: 1 247 | --- !u!4 &7790942828218749805 248 | Transform: 249 | m_ObjectHideFlags: 0 250 | m_CorrespondingSourceObject: {fileID: 0} 251 | m_PrefabInstance: {fileID: 0} 252 | m_PrefabAsset: {fileID: 0} 253 | m_GameObject: {fileID: 7790942828218749804} 254 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 255 | m_LocalPosition: {x: 0, y: 0, z: 0} 256 | m_LocalScale: {x: 1, y: 1, z: 1} 257 | m_Children: 258 | - {fileID: 7786944499913955053} 259 | - {fileID: 7790942827443430621} 260 | - {fileID: 7790942828467070153} 261 | - {fileID: 7790942827231238680} 262 | - {fileID: 7790942828652846037} 263 | m_Father: {fileID: 0} 264 | m_RootOrder: 0 265 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 266 | --- !u!1 &7790942828467070152 267 | GameObject: 268 | m_ObjectHideFlags: 0 269 | m_CorrespondingSourceObject: {fileID: 0} 270 | m_PrefabInstance: {fileID: 0} 271 | m_PrefabAsset: {fileID: 0} 272 | serializedVersion: 6 273 | m_Component: 274 | - component: {fileID: 7790942828467070153} 275 | - component: {fileID: 7790942828467070158} 276 | m_Layer: 0 277 | m_Name: Client 278 | m_TagString: Untagged 279 | m_Icon: {fileID: 0} 280 | m_NavMeshLayer: 0 281 | m_StaticEditorFlags: 0 282 | m_IsActive: 1 283 | --- !u!4 &7790942828467070153 284 | Transform: 285 | m_ObjectHideFlags: 0 286 | m_CorrespondingSourceObject: {fileID: 0} 287 | m_PrefabInstance: {fileID: 0} 288 | m_PrefabAsset: {fileID: 0} 289 | m_GameObject: {fileID: 7790942828467070152} 290 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 291 | m_LocalPosition: {x: 0, y: 0, z: 0} 292 | m_LocalScale: {x: 1, y: 1, z: 1} 293 | m_Children: [] 294 | m_Father: {fileID: 7790942828218749805} 295 | m_RootOrder: 2 296 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 297 | --- !u!114 &7790942828467070158 298 | MonoBehaviour: 299 | m_ObjectHideFlags: 0 300 | m_CorrespondingSourceObject: {fileID: 0} 301 | m_PrefabInstance: {fileID: 0} 302 | m_PrefabAsset: {fileID: 0} 303 | m_GameObject: {fileID: 7790942828467070152} 304 | m_Enabled: 1 305 | m_EditorHideFlags: 0 306 | m_Script: {fileID: 11500000, guid: d36dd9fcae25042bbb815255411ff524, type: 3} 307 | m_Name: 308 | m_EditorClassIdentifier: 309 | address: 127.0.0.1 310 | port: 3333 311 | maxQueueSize: 100 312 | dataTransimissionInterval: 2 313 | onClientStarted: 314 | m_PersistentCalls: 315 | m_Calls: [] 316 | onClientStopped: 317 | m_PersistentCalls: 318 | m_Calls: [] 319 | --- !u!1 &7790942828652846036 320 | GameObject: 321 | m_ObjectHideFlags: 0 322 | m_CorrespondingSourceObject: {fileID: 0} 323 | m_PrefabInstance: {fileID: 0} 324 | m_PrefabAsset: {fileID: 0} 325 | serializedVersion: 6 326 | m_Component: 327 | - component: {fileID: 7790942828652846037} 328 | - component: {fileID: 7790942828652846042} 329 | m_Layer: 0 330 | m_Name: Debug 331 | m_TagString: Untagged 332 | m_Icon: {fileID: 0} 333 | m_NavMeshLayer: 0 334 | m_StaticEditorFlags: 0 335 | m_IsActive: 1 336 | --- !u!4 &7790942828652846037 337 | Transform: 338 | m_ObjectHideFlags: 0 339 | m_CorrespondingSourceObject: {fileID: 0} 340 | m_PrefabInstance: {fileID: 0} 341 | m_PrefabAsset: {fileID: 0} 342 | m_GameObject: {fileID: 7790942828652846036} 343 | m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} 344 | m_LocalPosition: {x: 0, y: 0, z: 0} 345 | m_LocalScale: {x: 1, y: 1, z: 1} 346 | m_Children: [] 347 | m_Father: {fileID: 7790942828218749805} 348 | m_RootOrder: 4 349 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 350 | --- !u!114 &7790942828652846042 351 | MonoBehaviour: 352 | m_ObjectHideFlags: 0 353 | m_CorrespondingSourceObject: {fileID: 0} 354 | m_PrefabInstance: {fileID: 0} 355 | m_PrefabAsset: {fileID: 0} 356 | m_GameObject: {fileID: 7790942828652846036} 357 | m_Enabled: 1 358 | m_EditorHideFlags: 0 359 | m_Script: {fileID: 11500000, guid: 0833f6be5a296eb4fb05eca6ff7e6439, type: 3} 360 | m_Name: 361 | m_EditorClassIdentifier: 362 | filePath: encoded.h264 363 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Prefabs/Sender.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b67c08c118b3aa498a1c842fa98de74 3 | PrefabImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4f6dc40edff73cb4aae95b9bf51047dc 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Scenes/Receiver.unity: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!29 &1 4 | OcclusionCullingSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_OcclusionBakeSettings: 8 | smallestOccluder: 5 9 | smallestHole: 0.25 10 | backfaceThreshold: 100 11 | m_SceneGUID: 00000000000000000000000000000000 12 | m_OcclusionCullingData: {fileID: 0} 13 | --- !u!104 &2 14 | RenderSettings: 15 | m_ObjectHideFlags: 0 16 | serializedVersion: 9 17 | m_Fog: 0 18 | m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 19 | m_FogMode: 3 20 | m_FogDensity: 0.01 21 | m_LinearFogStart: 0 22 | m_LinearFogEnd: 300 23 | m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} 24 | m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} 25 | m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} 26 | m_AmbientIntensity: 1 27 | m_AmbientMode: 0 28 | m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} 29 | m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} 30 | m_HaloStrength: 0.5 31 | m_FlareStrength: 1 32 | m_FlareFadeSpeed: 3 33 | m_HaloTexture: {fileID: 0} 34 | m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} 35 | m_DefaultReflectionMode: 0 36 | m_DefaultReflectionResolution: 128 37 | m_ReflectionBounces: 1 38 | m_ReflectionIntensity: 1 39 | m_CustomReflection: {fileID: 0} 40 | m_Sun: {fileID: 705507994} 41 | m_IndirectSpecularColor: {r: 0.44657898, g: 0.4964133, b: 0.5748178, a: 1} 42 | m_UseRadianceAmbientProbe: 0 43 | --- !u!157 &3 44 | LightmapSettings: 45 | m_ObjectHideFlags: 0 46 | serializedVersion: 12 47 | m_GIWorkflowMode: 0 48 | m_GISettings: 49 | serializedVersion: 2 50 | m_BounceScale: 1 51 | m_IndirectOutputScale: 1 52 | m_AlbedoBoost: 1 53 | m_EnvironmentLightingMode: 0 54 | m_EnableBakedLightmaps: 1 55 | m_EnableRealtimeLightmaps: 1 56 | m_LightmapEditorSettings: 57 | serializedVersion: 12 58 | m_Resolution: 2 59 | m_BakeResolution: 40 60 | m_AtlasSize: 1024 61 | m_AO: 0 62 | m_AOMaxDistance: 1 63 | m_CompAOExponent: 1 64 | m_CompAOExponentDirect: 0 65 | m_ExtractAmbientOcclusion: 0 66 | m_Padding: 2 67 | m_LightmapParameters: {fileID: 0} 68 | m_LightmapsBakeMode: 1 69 | m_TextureCompression: 1 70 | m_FinalGather: 0 71 | m_FinalGatherFiltering: 1 72 | m_FinalGatherRayCount: 256 73 | m_ReflectionCompression: 2 74 | m_MixedBakeMode: 2 75 | m_BakeBackend: 1 76 | m_PVRSampling: 1 77 | m_PVRDirectSampleCount: 32 78 | m_PVRSampleCount: 500 79 | m_PVRBounces: 2 80 | m_PVREnvironmentSampleCount: 500 81 | m_PVREnvironmentReferencePointCount: 2048 82 | m_PVRFilteringMode: 2 83 | m_PVRDenoiserTypeDirect: 0 84 | m_PVRDenoiserTypeIndirect: 0 85 | m_PVRDenoiserTypeAO: 0 86 | m_PVRFilterTypeDirect: 0 87 | m_PVRFilterTypeIndirect: 0 88 | m_PVRFilterTypeAO: 0 89 | m_PVREnvironmentMIS: 0 90 | m_PVRCulling: 1 91 | m_PVRFilteringGaussRadiusDirect: 1 92 | m_PVRFilteringGaussRadiusIndirect: 5 93 | m_PVRFilteringGaussRadiusAO: 2 94 | m_PVRFilteringAtrousPositionSigmaDirect: 0.5 95 | m_PVRFilteringAtrousPositionSigmaIndirect: 2 96 | m_PVRFilteringAtrousPositionSigmaAO: 1 97 | m_ExportTrainingData: 0 98 | m_TrainingDataDestination: TrainingData 99 | m_LightProbeSampleCountMultiplier: 4 100 | m_LightingDataAsset: {fileID: 0} 101 | m_LightingSettings: {fileID: 4890085278179872738, guid: 57100e91885b33f4cbd96fc5d5a51d50, 102 | type: 2} 103 | --- !u!196 &4 104 | NavMeshSettings: 105 | serializedVersion: 2 106 | m_ObjectHideFlags: 0 107 | m_BuildSettings: 108 | serializedVersion: 2 109 | agentTypeID: 0 110 | agentRadius: 0.5 111 | agentHeight: 2 112 | agentSlope: 45 113 | agentClimb: 0.4 114 | ledgeDropHeight: 0 115 | maxJumpAcrossDistance: 0 116 | minRegionArea: 2 117 | manualCellSize: 0 118 | cellSize: 0.16666667 119 | manualTileSize: 0 120 | tileSize: 256 121 | accuratePlacement: 0 122 | maxJobWorkers: 0 123 | preserveTilesOutsideBounds: 0 124 | debug: 125 | m_Flags: 0 126 | m_NavMeshData: {fileID: 0} 127 | --- !u!1 &705507993 128 | GameObject: 129 | m_ObjectHideFlags: 0 130 | m_CorrespondingSourceObject: {fileID: 0} 131 | m_PrefabInstance: {fileID: 0} 132 | m_PrefabAsset: {fileID: 0} 133 | serializedVersion: 6 134 | m_Component: 135 | - component: {fileID: 705507995} 136 | - component: {fileID: 705507994} 137 | m_Layer: 0 138 | m_Name: Directional Light 139 | m_TagString: Untagged 140 | m_Icon: {fileID: 0} 141 | m_NavMeshLayer: 0 142 | m_StaticEditorFlags: 0 143 | m_IsActive: 1 144 | --- !u!108 &705507994 145 | Light: 146 | m_ObjectHideFlags: 0 147 | m_CorrespondingSourceObject: {fileID: 0} 148 | m_PrefabInstance: {fileID: 0} 149 | m_PrefabAsset: {fileID: 0} 150 | m_GameObject: {fileID: 705507993} 151 | m_Enabled: 1 152 | serializedVersion: 10 153 | m_Type: 1 154 | m_Shape: 0 155 | m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} 156 | m_Intensity: 1 157 | m_Range: 10 158 | m_SpotAngle: 30 159 | m_InnerSpotAngle: 21.80208 160 | m_CookieSize: 10 161 | m_Shadows: 162 | m_Type: 2 163 | m_Resolution: -1 164 | m_CustomResolution: -1 165 | m_Strength: 1 166 | m_Bias: 0.05 167 | m_NormalBias: 0.4 168 | m_NearPlane: 0.2 169 | m_CullingMatrixOverride: 170 | e00: 1 171 | e01: 0 172 | e02: 0 173 | e03: 0 174 | e10: 0 175 | e11: 1 176 | e12: 0 177 | e13: 0 178 | e20: 0 179 | e21: 0 180 | e22: 1 181 | e23: 0 182 | e30: 0 183 | e31: 0 184 | e32: 0 185 | e33: 1 186 | m_UseCullingMatrixOverride: 0 187 | m_Cookie: {fileID: 0} 188 | m_DrawHalo: 0 189 | m_Flare: {fileID: 0} 190 | m_RenderMode: 0 191 | m_CullingMask: 192 | serializedVersion: 2 193 | m_Bits: 4294967295 194 | m_RenderingLayerMask: 1 195 | m_Lightmapping: 1 196 | m_LightShadowCasterMode: 0 197 | m_AreaSize: {x: 1, y: 1} 198 | m_BounceIntensity: 1 199 | m_ColorTemperature: 6570 200 | m_UseColorTemperature: 0 201 | m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} 202 | m_UseBoundingSphereOverride: 0 203 | m_UseViewFrustumForShadowCasterCull: 1 204 | m_ShadowRadius: 0 205 | m_ShadowAngle: 0 206 | --- !u!4 &705507995 207 | Transform: 208 | m_ObjectHideFlags: 0 209 | m_CorrespondingSourceObject: {fileID: 0} 210 | m_PrefabInstance: {fileID: 0} 211 | m_PrefabAsset: {fileID: 0} 212 | m_GameObject: {fileID: 705507993} 213 | m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} 214 | m_LocalPosition: {x: 0, y: 3, z: 0} 215 | m_LocalScale: {x: 1, y: 1, z: 1} 216 | m_Children: [] 217 | m_Father: {fileID: 0} 218 | m_RootOrder: 1 219 | m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} 220 | --- !u!1 &963194225 221 | GameObject: 222 | m_ObjectHideFlags: 0 223 | m_CorrespondingSourceObject: {fileID: 0} 224 | m_PrefabInstance: {fileID: 0} 225 | m_PrefabAsset: {fileID: 0} 226 | serializedVersion: 6 227 | m_Component: 228 | - component: {fileID: 963194228} 229 | - component: {fileID: 963194227} 230 | - component: {fileID: 963194226} 231 | m_Layer: 0 232 | m_Name: Main Camera 233 | m_TagString: MainCamera 234 | m_Icon: {fileID: 0} 235 | m_NavMeshLayer: 0 236 | m_StaticEditorFlags: 0 237 | m_IsActive: 1 238 | --- !u!81 &963194226 239 | AudioListener: 240 | m_ObjectHideFlags: 0 241 | m_CorrespondingSourceObject: {fileID: 0} 242 | m_PrefabInstance: {fileID: 0} 243 | m_PrefabAsset: {fileID: 0} 244 | m_GameObject: {fileID: 963194225} 245 | m_Enabled: 1 246 | --- !u!20 &963194227 247 | Camera: 248 | m_ObjectHideFlags: 0 249 | m_CorrespondingSourceObject: {fileID: 0} 250 | m_PrefabInstance: {fileID: 0} 251 | m_PrefabAsset: {fileID: 0} 252 | m_GameObject: {fileID: 963194225} 253 | m_Enabled: 1 254 | serializedVersion: 2 255 | m_ClearFlags: 1 256 | m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} 257 | m_projectionMatrixMode: 1 258 | m_GateFitMode: 2 259 | m_FOVAxisMode: 0 260 | m_SensorSize: {x: 36, y: 24} 261 | m_LensShift: {x: 0, y: 0} 262 | m_FocalLength: 50 263 | m_NormalizedViewPortRect: 264 | serializedVersion: 2 265 | x: 0 266 | y: 0 267 | width: 1 268 | height: 1 269 | near clip plane: 0.3 270 | far clip plane: 1000 271 | field of view: 60 272 | orthographic: 0 273 | orthographic size: 5 274 | m_Depth: -1 275 | m_CullingMask: 276 | serializedVersion: 2 277 | m_Bits: 4294967295 278 | m_RenderingPath: -1 279 | m_TargetTexture: {fileID: 0} 280 | m_TargetDisplay: 0 281 | m_TargetEye: 3 282 | m_HDR: 1 283 | m_AllowMSAA: 1 284 | m_AllowDynamicResolution: 0 285 | m_ForceIntoRT: 0 286 | m_OcclusionCulling: 1 287 | m_StereoConvergence: 10 288 | m_StereoSeparation: 0.022 289 | --- !u!4 &963194228 290 | Transform: 291 | m_ObjectHideFlags: 0 292 | m_CorrespondingSourceObject: {fileID: 0} 293 | m_PrefabInstance: {fileID: 0} 294 | m_PrefabAsset: {fileID: 0} 295 | m_GameObject: {fileID: 963194225} 296 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 297 | m_LocalPosition: {x: 0, y: 0, z: -10} 298 | m_LocalScale: {x: 1, y: 1, z: 1} 299 | m_Children: [] 300 | m_Father: {fileID: 0} 301 | m_RootOrder: 0 302 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 303 | --- !u!1001 &1474959271 304 | PrefabInstance: 305 | m_ObjectHideFlags: 0 306 | serializedVersion: 2 307 | m_Modification: 308 | m_TransformParent: {fileID: 0} 309 | m_Modifications: 310 | - target: {fileID: 4690024007171475922, guid: 17d956ae30022714782e814b1589f8de, 311 | type: 3} 312 | propertyPath: m_Name 313 | value: Receiver 314 | objectReference: {fileID: 0} 315 | - target: {fileID: 4690024007171475925, guid: 17d956ae30022714782e814b1589f8de, 316 | type: 3} 317 | propertyPath: m_RootOrder 318 | value: 2 319 | objectReference: {fileID: 0} 320 | - target: {fileID: 4690024007171475925, guid: 17d956ae30022714782e814b1589f8de, 321 | type: 3} 322 | propertyPath: m_LocalPosition.x 323 | value: 0 324 | objectReference: {fileID: 0} 325 | - target: {fileID: 4690024007171475925, guid: 17d956ae30022714782e814b1589f8de, 326 | type: 3} 327 | propertyPath: m_LocalPosition.y 328 | value: 0 329 | objectReference: {fileID: 0} 330 | - target: {fileID: 4690024007171475925, guid: 17d956ae30022714782e814b1589f8de, 331 | type: 3} 332 | propertyPath: m_LocalPosition.z 333 | value: 0 334 | objectReference: {fileID: 0} 335 | - target: {fileID: 4690024007171475925, guid: 17d956ae30022714782e814b1589f8de, 336 | type: 3} 337 | propertyPath: m_LocalRotation.w 338 | value: 1 339 | objectReference: {fileID: 0} 340 | - target: {fileID: 4690024007171475925, guid: 17d956ae30022714782e814b1589f8de, 341 | type: 3} 342 | propertyPath: m_LocalRotation.x 343 | value: -0 344 | objectReference: {fileID: 0} 345 | - target: {fileID: 4690024007171475925, guid: 17d956ae30022714782e814b1589f8de, 346 | type: 3} 347 | propertyPath: m_LocalRotation.y 348 | value: -0 349 | objectReference: {fileID: 0} 350 | - target: {fileID: 4690024007171475925, guid: 17d956ae30022714782e814b1589f8de, 351 | type: 3} 352 | propertyPath: m_LocalRotation.z 353 | value: -0 354 | objectReference: {fileID: 0} 355 | - target: {fileID: 4690024007171475925, guid: 17d956ae30022714782e814b1589f8de, 356 | type: 3} 357 | propertyPath: m_LocalEulerAnglesHint.x 358 | value: 0 359 | objectReference: {fileID: 0} 360 | - target: {fileID: 4690024007171475925, guid: 17d956ae30022714782e814b1589f8de, 361 | type: 3} 362 | propertyPath: m_LocalEulerAnglesHint.y 363 | value: 0 364 | objectReference: {fileID: 0} 365 | - target: {fileID: 4690024007171475925, guid: 17d956ae30022714782e814b1589f8de, 366 | type: 3} 367 | propertyPath: m_LocalEulerAnglesHint.z 368 | value: 0 369 | objectReference: {fileID: 0} 370 | - target: {fileID: 4690024007173010504, guid: 17d956ae30022714782e814b1589f8de, 371 | type: 3} 372 | propertyPath: timeout 373 | value: 1000 374 | objectReference: {fileID: 0} 375 | - target: {fileID: 4690024007218344147, guid: 17d956ae30022714782e814b1589f8de, 376 | type: 3} 377 | propertyPath: m_Enabled 378 | value: 0 379 | objectReference: {fileID: 0} 380 | m_RemovedComponents: [] 381 | m_SourcePrefab: {fileID: 100100000, guid: 17d956ae30022714782e814b1589f8de, type: 3} 382 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Scenes/Receiver.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6782c68d9fc9aa74cade39f4fe8b096c 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Scenes/ReceiverSettings.lighting: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!850595691 &4890085278179872738 4 | LightingSettings: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_Name: ReceiverSettings 10 | serializedVersion: 3 11 | m_GIWorkflowMode: 0 12 | m_EnableBakedLightmaps: 1 13 | m_EnableRealtimeLightmaps: 1 14 | m_RealtimeEnvironmentLighting: 1 15 | m_BounceScale: 1 16 | m_AlbedoBoost: 1 17 | m_IndirectOutputScale: 1 18 | m_UsingShadowmask: 1 19 | m_BakeBackend: 1 20 | m_LightmapMaxSize: 1024 21 | m_BakeResolution: 40 22 | m_Padding: 2 23 | m_TextureCompression: 1 24 | m_AO: 0 25 | m_AOMaxDistance: 1 26 | m_CompAOExponent: 1 27 | m_CompAOExponentDirect: 0 28 | m_ExtractAO: 0 29 | m_MixedBakeMode: 2 30 | m_LightmapsBakeMode: 1 31 | m_FilterMode: 1 32 | m_LightmapParameters: {fileID: 15204, guid: 0000000000000000f000000000000000, type: 0} 33 | m_ExportTrainingData: 0 34 | m_TrainingDataDestination: TrainingData 35 | m_RealtimeResolution: 2 36 | m_ForceWhiteAlbedo: 0 37 | m_ForceUpdates: 0 38 | m_FinalGather: 0 39 | m_FinalGatherRayCount: 256 40 | m_FinalGatherFiltering: 1 41 | m_PVRCulling: 1 42 | m_PVRSampling: 1 43 | m_PVRDirectSampleCount: 32 44 | m_PVRSampleCount: 500 45 | m_PVREnvironmentSampleCount: 500 46 | m_PVREnvironmentReferencePointCount: 2048 47 | m_LightProbeSampleCountMultiplier: 4 48 | m_PVRBounces: 2 49 | m_PVRMinBounces: 2 50 | m_PVREnvironmentMIS: 0 51 | m_PVRFilteringMode: 2 52 | m_PVRDenoiserTypeDirect: 0 53 | m_PVRDenoiserTypeIndirect: 0 54 | m_PVRDenoiserTypeAO: 0 55 | m_PVRFilterTypeDirect: 0 56 | m_PVRFilterTypeIndirect: 0 57 | m_PVRFilterTypeAO: 0 58 | m_PVRFilteringGaussRadiusDirect: 1 59 | m_PVRFilteringGaussRadiusIndirect: 5 60 | m_PVRFilteringGaussRadiusAO: 2 61 | m_PVRFilteringAtrousPositionSigmaDirect: 0.5 62 | m_PVRFilteringAtrousPositionSigmaIndirect: 2 63 | m_PVRFilteringAtrousPositionSigmaAO: 1 64 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Scenes/ReceiverSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 57100e91885b33f4cbd96fc5d5a51d50 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 4890085278179872738 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Scenes/Sender.unity: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!29 &1 4 | OcclusionCullingSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_OcclusionBakeSettings: 8 | smallestOccluder: 5 9 | smallestHole: 0.25 10 | backfaceThreshold: 100 11 | m_SceneGUID: 00000000000000000000000000000000 12 | m_OcclusionCullingData: {fileID: 0} 13 | --- !u!104 &2 14 | RenderSettings: 15 | m_ObjectHideFlags: 0 16 | serializedVersion: 9 17 | m_Fog: 0 18 | m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 19 | m_FogMode: 3 20 | m_FogDensity: 0.01 21 | m_LinearFogStart: 0 22 | m_LinearFogEnd: 300 23 | m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} 24 | m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} 25 | m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} 26 | m_AmbientIntensity: 1 27 | m_AmbientMode: 0 28 | m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} 29 | m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} 30 | m_HaloStrength: 0.5 31 | m_FlareStrength: 1 32 | m_FlareFadeSpeed: 3 33 | m_HaloTexture: {fileID: 0} 34 | m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} 35 | m_DefaultReflectionMode: 0 36 | m_DefaultReflectionResolution: 128 37 | m_ReflectionBounces: 1 38 | m_ReflectionIntensity: 1 39 | m_CustomReflection: {fileID: 0} 40 | m_Sun: {fileID: 705507994} 41 | m_IndirectSpecularColor: {r: 0.44657898, g: 0.4964133, b: 0.5748178, a: 1} 42 | m_UseRadianceAmbientProbe: 0 43 | --- !u!157 &3 44 | LightmapSettings: 45 | m_ObjectHideFlags: 0 46 | serializedVersion: 12 47 | m_GIWorkflowMode: 0 48 | m_GISettings: 49 | serializedVersion: 2 50 | m_BounceScale: 1 51 | m_IndirectOutputScale: 1 52 | m_AlbedoBoost: 1 53 | m_EnvironmentLightingMode: 0 54 | m_EnableBakedLightmaps: 1 55 | m_EnableRealtimeLightmaps: 1 56 | m_LightmapEditorSettings: 57 | serializedVersion: 12 58 | m_Resolution: 2 59 | m_BakeResolution: 40 60 | m_AtlasSize: 1024 61 | m_AO: 0 62 | m_AOMaxDistance: 1 63 | m_CompAOExponent: 1 64 | m_CompAOExponentDirect: 0 65 | m_ExtractAmbientOcclusion: 0 66 | m_Padding: 2 67 | m_LightmapParameters: {fileID: 0} 68 | m_LightmapsBakeMode: 1 69 | m_TextureCompression: 1 70 | m_FinalGather: 0 71 | m_FinalGatherFiltering: 1 72 | m_FinalGatherRayCount: 256 73 | m_ReflectionCompression: 2 74 | m_MixedBakeMode: 2 75 | m_BakeBackend: 1 76 | m_PVRSampling: 1 77 | m_PVRDirectSampleCount: 32 78 | m_PVRSampleCount: 500 79 | m_PVRBounces: 2 80 | m_PVREnvironmentSampleCount: 500 81 | m_PVREnvironmentReferencePointCount: 2048 82 | m_PVRFilteringMode: 2 83 | m_PVRDenoiserTypeDirect: 0 84 | m_PVRDenoiserTypeIndirect: 0 85 | m_PVRDenoiserTypeAO: 0 86 | m_PVRFilterTypeDirect: 0 87 | m_PVRFilterTypeIndirect: 0 88 | m_PVRFilterTypeAO: 0 89 | m_PVREnvironmentMIS: 0 90 | m_PVRCulling: 1 91 | m_PVRFilteringGaussRadiusDirect: 1 92 | m_PVRFilteringGaussRadiusIndirect: 5 93 | m_PVRFilteringGaussRadiusAO: 2 94 | m_PVRFilteringAtrousPositionSigmaDirect: 0.5 95 | m_PVRFilteringAtrousPositionSigmaIndirect: 2 96 | m_PVRFilteringAtrousPositionSigmaAO: 1 97 | m_ExportTrainingData: 0 98 | m_TrainingDataDestination: TrainingData 99 | m_LightProbeSampleCountMultiplier: 4 100 | m_LightingDataAsset: {fileID: 0} 101 | m_LightingSettings: {fileID: 4890085278179872738, guid: 303dd025145595f4885c46547f096056, 102 | type: 2} 103 | --- !u!196 &4 104 | NavMeshSettings: 105 | serializedVersion: 2 106 | m_ObjectHideFlags: 0 107 | m_BuildSettings: 108 | serializedVersion: 2 109 | agentTypeID: 0 110 | agentRadius: 0.5 111 | agentHeight: 2 112 | agentSlope: 45 113 | agentClimb: 0.4 114 | ledgeDropHeight: 0 115 | maxJumpAcrossDistance: 0 116 | minRegionArea: 2 117 | manualCellSize: 0 118 | cellSize: 0.16666667 119 | manualTileSize: 0 120 | tileSize: 256 121 | accuratePlacement: 0 122 | maxJobWorkers: 0 123 | preserveTilesOutsideBounds: 0 124 | debug: 125 | m_Flags: 0 126 | m_NavMeshData: {fileID: 0} 127 | --- !u!1001 &57019436 128 | PrefabInstance: 129 | m_ObjectHideFlags: 0 130 | serializedVersion: 2 131 | m_Modification: 132 | m_TransformParent: {fileID: 0} 133 | m_Modifications: 134 | - target: {fileID: 7790942827231238681, guid: 2b67c08c118b3aa498a1c842fa98de74, 135 | type: 3} 136 | propertyPath: maxPacketSize 137 | value: 1400 138 | objectReference: {fileID: 0} 139 | - target: {fileID: 7790942827443430434, guid: 2b67c08c118b3aa498a1c842fa98de74, 140 | type: 3} 141 | propertyPath: forceIdrFrame 142 | value: 0 143 | objectReference: {fileID: 0} 144 | - target: {fileID: 7790942827443430434, guid: 2b67c08c118b3aa498a1c842fa98de74, 145 | type: 3} 146 | propertyPath: setting.bitRate 147 | value: 10000000 148 | objectReference: {fileID: 0} 149 | - target: {fileID: 7790942827443430434, guid: 2b67c08c118b3aa498a1c842fa98de74, 150 | type: 3} 151 | propertyPath: setting.frameRate 152 | value: 30 153 | objectReference: {fileID: 0} 154 | - target: {fileID: 7790942827443430434, guid: 2b67c08c118b3aa498a1c842fa98de74, 155 | type: 3} 156 | propertyPath: setting.maxFrameSize 157 | value: 333333 158 | objectReference: {fileID: 0} 159 | - target: {fileID: 7790942828218749804, guid: 2b67c08c118b3aa498a1c842fa98de74, 160 | type: 3} 161 | propertyPath: m_Name 162 | value: Sender 163 | objectReference: {fileID: 0} 164 | - target: {fileID: 7790942828218749805, guid: 2b67c08c118b3aa498a1c842fa98de74, 165 | type: 3} 166 | propertyPath: m_RootOrder 167 | value: 2 168 | objectReference: {fileID: 0} 169 | - target: {fileID: 7790942828218749805, guid: 2b67c08c118b3aa498a1c842fa98de74, 170 | type: 3} 171 | propertyPath: m_LocalPosition.x 172 | value: 0 173 | objectReference: {fileID: 0} 174 | - target: {fileID: 7790942828218749805, guid: 2b67c08c118b3aa498a1c842fa98de74, 175 | type: 3} 176 | propertyPath: m_LocalPosition.y 177 | value: 0 178 | objectReference: {fileID: 0} 179 | - target: {fileID: 7790942828218749805, guid: 2b67c08c118b3aa498a1c842fa98de74, 180 | type: 3} 181 | propertyPath: m_LocalPosition.z 182 | value: 0 183 | objectReference: {fileID: 0} 184 | - target: {fileID: 7790942828218749805, guid: 2b67c08c118b3aa498a1c842fa98de74, 185 | type: 3} 186 | propertyPath: m_LocalRotation.w 187 | value: 1 188 | objectReference: {fileID: 0} 189 | - target: {fileID: 7790942828218749805, guid: 2b67c08c118b3aa498a1c842fa98de74, 190 | type: 3} 191 | propertyPath: m_LocalRotation.x 192 | value: 0 193 | objectReference: {fileID: 0} 194 | - target: {fileID: 7790942828218749805, guid: 2b67c08c118b3aa498a1c842fa98de74, 195 | type: 3} 196 | propertyPath: m_LocalRotation.y 197 | value: 0 198 | objectReference: {fileID: 0} 199 | - target: {fileID: 7790942828218749805, guid: 2b67c08c118b3aa498a1c842fa98de74, 200 | type: 3} 201 | propertyPath: m_LocalRotation.z 202 | value: 0 203 | objectReference: {fileID: 0} 204 | - target: {fileID: 7790942828218749805, guid: 2b67c08c118b3aa498a1c842fa98de74, 205 | type: 3} 206 | propertyPath: m_LocalEulerAnglesHint.x 207 | value: 0 208 | objectReference: {fileID: 0} 209 | - target: {fileID: 7790942828218749805, guid: 2b67c08c118b3aa498a1c842fa98de74, 210 | type: 3} 211 | propertyPath: m_LocalEulerAnglesHint.y 212 | value: 0 213 | objectReference: {fileID: 0} 214 | - target: {fileID: 7790942828218749805, guid: 2b67c08c118b3aa498a1c842fa98de74, 215 | type: 3} 216 | propertyPath: m_LocalEulerAnglesHint.z 217 | value: 0 218 | objectReference: {fileID: 0} 219 | - target: {fileID: 7790942828467070158, guid: 2b67c08c118b3aa498a1c842fa98de74, 220 | type: 3} 221 | propertyPath: dataTransimissionInterval 222 | value: 1 223 | objectReference: {fileID: 0} 224 | m_RemovedComponents: [] 225 | m_SourcePrefab: {fileID: 100100000, guid: 2b67c08c118b3aa498a1c842fa98de74, type: 3} 226 | --- !u!1 &705507993 227 | GameObject: 228 | m_ObjectHideFlags: 0 229 | m_CorrespondingSourceObject: {fileID: 0} 230 | m_PrefabInstance: {fileID: 0} 231 | m_PrefabAsset: {fileID: 0} 232 | serializedVersion: 6 233 | m_Component: 234 | - component: {fileID: 705507995} 235 | - component: {fileID: 705507994} 236 | m_Layer: 0 237 | m_Name: Directional Light 238 | m_TagString: Untagged 239 | m_Icon: {fileID: 0} 240 | m_NavMeshLayer: 0 241 | m_StaticEditorFlags: 0 242 | m_IsActive: 1 243 | --- !u!108 &705507994 244 | Light: 245 | m_ObjectHideFlags: 0 246 | m_CorrespondingSourceObject: {fileID: 0} 247 | m_PrefabInstance: {fileID: 0} 248 | m_PrefabAsset: {fileID: 0} 249 | m_GameObject: {fileID: 705507993} 250 | m_Enabled: 1 251 | serializedVersion: 10 252 | m_Type: 1 253 | m_Shape: 0 254 | m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} 255 | m_Intensity: 1 256 | m_Range: 10 257 | m_SpotAngle: 30 258 | m_InnerSpotAngle: 21.80208 259 | m_CookieSize: 10 260 | m_Shadows: 261 | m_Type: 2 262 | m_Resolution: -1 263 | m_CustomResolution: -1 264 | m_Strength: 1 265 | m_Bias: 0.05 266 | m_NormalBias: 0.4 267 | m_NearPlane: 0.2 268 | m_CullingMatrixOverride: 269 | e00: 1 270 | e01: 0 271 | e02: 0 272 | e03: 0 273 | e10: 0 274 | e11: 1 275 | e12: 0 276 | e13: 0 277 | e20: 0 278 | e21: 0 279 | e22: 1 280 | e23: 0 281 | e30: 0 282 | e31: 0 283 | e32: 0 284 | e33: 1 285 | m_UseCullingMatrixOverride: 0 286 | m_Cookie: {fileID: 0} 287 | m_DrawHalo: 0 288 | m_Flare: {fileID: 0} 289 | m_RenderMode: 0 290 | m_CullingMask: 291 | serializedVersion: 2 292 | m_Bits: 4294967295 293 | m_RenderingLayerMask: 1 294 | m_Lightmapping: 1 295 | m_LightShadowCasterMode: 0 296 | m_AreaSize: {x: 1, y: 1} 297 | m_BounceIntensity: 1 298 | m_ColorTemperature: 6570 299 | m_UseColorTemperature: 0 300 | m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} 301 | m_UseBoundingSphereOverride: 0 302 | m_UseViewFrustumForShadowCasterCull: 1 303 | m_ShadowRadius: 0 304 | m_ShadowAngle: 0 305 | --- !u!4 &705507995 306 | Transform: 307 | m_ObjectHideFlags: 0 308 | m_CorrespondingSourceObject: {fileID: 0} 309 | m_PrefabInstance: {fileID: 0} 310 | m_PrefabAsset: {fileID: 0} 311 | m_GameObject: {fileID: 705507993} 312 | m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} 313 | m_LocalPosition: {x: 0, y: 3, z: 0} 314 | m_LocalScale: {x: 1, y: 1, z: 1} 315 | m_Children: [] 316 | m_Father: {fileID: 0} 317 | m_RootOrder: 1 318 | m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} 319 | --- !u!1 &963194225 320 | GameObject: 321 | m_ObjectHideFlags: 0 322 | m_CorrespondingSourceObject: {fileID: 0} 323 | m_PrefabInstance: {fileID: 0} 324 | m_PrefabAsset: {fileID: 0} 325 | serializedVersion: 6 326 | m_Component: 327 | - component: {fileID: 963194228} 328 | - component: {fileID: 963194227} 329 | - component: {fileID: 963194226} 330 | m_Layer: 0 331 | m_Name: Main Camera 332 | m_TagString: MainCamera 333 | m_Icon: {fileID: 0} 334 | m_NavMeshLayer: 0 335 | m_StaticEditorFlags: 0 336 | m_IsActive: 1 337 | --- !u!81 &963194226 338 | AudioListener: 339 | m_ObjectHideFlags: 0 340 | m_CorrespondingSourceObject: {fileID: 0} 341 | m_PrefabInstance: {fileID: 0} 342 | m_PrefabAsset: {fileID: 0} 343 | m_GameObject: {fileID: 963194225} 344 | m_Enabled: 1 345 | --- !u!20 &963194227 346 | Camera: 347 | m_ObjectHideFlags: 0 348 | m_CorrespondingSourceObject: {fileID: 0} 349 | m_PrefabInstance: {fileID: 0} 350 | m_PrefabAsset: {fileID: 0} 351 | m_GameObject: {fileID: 963194225} 352 | m_Enabled: 1 353 | serializedVersion: 2 354 | m_ClearFlags: 1 355 | m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} 356 | m_projectionMatrixMode: 1 357 | m_GateFitMode: 2 358 | m_FOVAxisMode: 0 359 | m_SensorSize: {x: 36, y: 24} 360 | m_LensShift: {x: 0, y: 0} 361 | m_FocalLength: 50 362 | m_NormalizedViewPortRect: 363 | serializedVersion: 2 364 | x: 0 365 | y: 0 366 | width: 1 367 | height: 1 368 | near clip plane: 0.3 369 | far clip plane: 1000 370 | field of view: 60 371 | orthographic: 0 372 | orthographic size: 5 373 | m_Depth: -1 374 | m_CullingMask: 375 | serializedVersion: 2 376 | m_Bits: 4294967295 377 | m_RenderingPath: -1 378 | m_TargetTexture: {fileID: 0} 379 | m_TargetDisplay: 0 380 | m_TargetEye: 3 381 | m_HDR: 1 382 | m_AllowMSAA: 1 383 | m_AllowDynamicResolution: 0 384 | m_ForceIntoRT: 0 385 | m_OcclusionCulling: 1 386 | m_StereoConvergence: 10 387 | m_StereoSeparation: 0.022 388 | --- !u!4 &963194228 389 | Transform: 390 | m_ObjectHideFlags: 0 391 | m_CorrespondingSourceObject: {fileID: 0} 392 | m_PrefabInstance: {fileID: 0} 393 | m_PrefabAsset: {fileID: 0} 394 | m_GameObject: {fileID: 963194225} 395 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 396 | m_LocalPosition: {x: 0, y: 0, z: -10} 397 | m_LocalScale: {x: 1, y: 1, z: 1} 398 | m_Children: [] 399 | m_Father: {fileID: 0} 400 | m_RootOrder: 0 401 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 402 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Scenes/Sender.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: d32ad1e59ae051640a61a11652667c51 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Scenes/SenderSettings.lighting: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!850595691 &4890085278179872738 4 | LightingSettings: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_Name: SenderSettings 10 | serializedVersion: 3 11 | m_GIWorkflowMode: 0 12 | m_EnableBakedLightmaps: 1 13 | m_EnableRealtimeLightmaps: 1 14 | m_RealtimeEnvironmentLighting: 1 15 | m_BounceScale: 1 16 | m_AlbedoBoost: 1 17 | m_IndirectOutputScale: 1 18 | m_UsingShadowmask: 1 19 | m_BakeBackend: 1 20 | m_LightmapMaxSize: 1024 21 | m_BakeResolution: 40 22 | m_Padding: 2 23 | m_TextureCompression: 1 24 | m_AO: 0 25 | m_AOMaxDistance: 1 26 | m_CompAOExponent: 1 27 | m_CompAOExponentDirect: 0 28 | m_ExtractAO: 0 29 | m_MixedBakeMode: 2 30 | m_LightmapsBakeMode: 1 31 | m_FilterMode: 1 32 | m_LightmapParameters: {fileID: 15204, guid: 0000000000000000f000000000000000, type: 0} 33 | m_ExportTrainingData: 0 34 | m_TrainingDataDestination: TrainingData 35 | m_RealtimeResolution: 2 36 | m_ForceWhiteAlbedo: 0 37 | m_ForceUpdates: 0 38 | m_FinalGather: 0 39 | m_FinalGatherRayCount: 256 40 | m_FinalGatherFiltering: 1 41 | m_PVRCulling: 1 42 | m_PVRSampling: 1 43 | m_PVRDirectSampleCount: 32 44 | m_PVRSampleCount: 500 45 | m_PVREnvironmentSampleCount: 500 46 | m_PVREnvironmentReferencePointCount: 2048 47 | m_LightProbeSampleCountMultiplier: 4 48 | m_PVRBounces: 2 49 | m_PVRMinBounces: 2 50 | m_PVREnvironmentMIS: 0 51 | m_PVRFilteringMode: 2 52 | m_PVRDenoiserTypeDirect: 0 53 | m_PVRDenoiserTypeIndirect: 0 54 | m_PVRDenoiserTypeAO: 0 55 | m_PVRFilterTypeDirect: 0 56 | m_PVRFilterTypeIndirect: 0 57 | m_PVRFilterTypeAO: 0 58 | m_PVRFilteringGaussRadiusDirect: 1 59 | m_PVRFilteringGaussRadiusIndirect: 5 60 | m_PVRFilteringGaussRadiusAO: 2 61 | m_PVRFilteringAtrousPositionSigmaDirect: 0.5 62 | m_PVRFilteringAtrousPositionSigmaIndirect: 2 63 | m_PVRFilteringAtrousPositionSigmaAO: 1 64 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Scenes/SenderSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 303dd025145595f4885c46547f096056 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 4890085278179872738 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Scenes/SenderToReceiver.unity: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!29 &1 4 | OcclusionCullingSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_OcclusionBakeSettings: 8 | smallestOccluder: 5 9 | smallestHole: 0.25 10 | backfaceThreshold: 100 11 | m_SceneGUID: 00000000000000000000000000000000 12 | m_OcclusionCullingData: {fileID: 0} 13 | --- !u!104 &2 14 | RenderSettings: 15 | m_ObjectHideFlags: 0 16 | serializedVersion: 9 17 | m_Fog: 0 18 | m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} 19 | m_FogMode: 3 20 | m_FogDensity: 0.01 21 | m_LinearFogStart: 0 22 | m_LinearFogEnd: 300 23 | m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} 24 | m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} 25 | m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} 26 | m_AmbientIntensity: 1 27 | m_AmbientMode: 0 28 | m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} 29 | m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} 30 | m_HaloStrength: 0.5 31 | m_FlareStrength: 1 32 | m_FlareFadeSpeed: 3 33 | m_HaloTexture: {fileID: 0} 34 | m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} 35 | m_DefaultReflectionMode: 0 36 | m_DefaultReflectionResolution: 128 37 | m_ReflectionBounces: 1 38 | m_ReflectionIntensity: 1 39 | m_CustomReflection: {fileID: 0} 40 | m_Sun: {fileID: 705507994} 41 | m_IndirectSpecularColor: {r: 0.44657898, g: 0.4964133, b: 0.5748178, a: 1} 42 | m_UseRadianceAmbientProbe: 0 43 | --- !u!157 &3 44 | LightmapSettings: 45 | m_ObjectHideFlags: 0 46 | serializedVersion: 12 47 | m_GIWorkflowMode: 0 48 | m_GISettings: 49 | serializedVersion: 2 50 | m_BounceScale: 1 51 | m_IndirectOutputScale: 1 52 | m_AlbedoBoost: 1 53 | m_EnvironmentLightingMode: 0 54 | m_EnableBakedLightmaps: 1 55 | m_EnableRealtimeLightmaps: 1 56 | m_LightmapEditorSettings: 57 | serializedVersion: 12 58 | m_Resolution: 2 59 | m_BakeResolution: 40 60 | m_AtlasSize: 1024 61 | m_AO: 0 62 | m_AOMaxDistance: 1 63 | m_CompAOExponent: 1 64 | m_CompAOExponentDirect: 0 65 | m_ExtractAmbientOcclusion: 0 66 | m_Padding: 2 67 | m_LightmapParameters: {fileID: 0} 68 | m_LightmapsBakeMode: 1 69 | m_TextureCompression: 1 70 | m_FinalGather: 0 71 | m_FinalGatherFiltering: 1 72 | m_FinalGatherRayCount: 256 73 | m_ReflectionCompression: 2 74 | m_MixedBakeMode: 2 75 | m_BakeBackend: 1 76 | m_PVRSampling: 1 77 | m_PVRDirectSampleCount: 32 78 | m_PVRSampleCount: 500 79 | m_PVRBounces: 2 80 | m_PVREnvironmentSampleCount: 500 81 | m_PVREnvironmentReferencePointCount: 2048 82 | m_PVRFilteringMode: 2 83 | m_PVRDenoiserTypeDirect: 0 84 | m_PVRDenoiserTypeIndirect: 0 85 | m_PVRDenoiserTypeAO: 0 86 | m_PVRFilterTypeDirect: 0 87 | m_PVRFilterTypeIndirect: 0 88 | m_PVRFilterTypeAO: 0 89 | m_PVREnvironmentMIS: 0 90 | m_PVRCulling: 1 91 | m_PVRFilteringGaussRadiusDirect: 1 92 | m_PVRFilteringGaussRadiusIndirect: 5 93 | m_PVRFilteringGaussRadiusAO: 2 94 | m_PVRFilteringAtrousPositionSigmaDirect: 0.5 95 | m_PVRFilteringAtrousPositionSigmaIndirect: 2 96 | m_PVRFilteringAtrousPositionSigmaAO: 1 97 | m_ExportTrainingData: 0 98 | m_TrainingDataDestination: TrainingData 99 | m_LightProbeSampleCountMultiplier: 4 100 | m_LightingDataAsset: {fileID: 0} 101 | m_LightingSettings: {fileID: 4890085278179872738, guid: 3d0478796b66d9749867ee5e19c48ae8, 102 | type: 2} 103 | --- !u!196 &4 104 | NavMeshSettings: 105 | serializedVersion: 2 106 | m_ObjectHideFlags: 0 107 | m_BuildSettings: 108 | serializedVersion: 2 109 | agentTypeID: 0 110 | agentRadius: 0.5 111 | agentHeight: 2 112 | agentSlope: 45 113 | agentClimb: 0.4 114 | ledgeDropHeight: 0 115 | maxJumpAcrossDistance: 0 116 | minRegionArea: 2 117 | manualCellSize: 0 118 | cellSize: 0.16666667 119 | manualTileSize: 0 120 | tileSize: 256 121 | accuratePlacement: 0 122 | maxJobWorkers: 0 123 | preserveTilesOutsideBounds: 0 124 | debug: 125 | m_Flags: 0 126 | m_NavMeshData: {fileID: 0} 127 | --- !u!1 &705507993 128 | GameObject: 129 | m_ObjectHideFlags: 0 130 | m_CorrespondingSourceObject: {fileID: 0} 131 | m_PrefabInstance: {fileID: 0} 132 | m_PrefabAsset: {fileID: 0} 133 | serializedVersion: 6 134 | m_Component: 135 | - component: {fileID: 705507995} 136 | - component: {fileID: 705507994} 137 | m_Layer: 0 138 | m_Name: Directional Light 139 | m_TagString: Untagged 140 | m_Icon: {fileID: 0} 141 | m_NavMeshLayer: 0 142 | m_StaticEditorFlags: 0 143 | m_IsActive: 1 144 | --- !u!108 &705507994 145 | Light: 146 | m_ObjectHideFlags: 0 147 | m_CorrespondingSourceObject: {fileID: 0} 148 | m_PrefabInstance: {fileID: 0} 149 | m_PrefabAsset: {fileID: 0} 150 | m_GameObject: {fileID: 705507993} 151 | m_Enabled: 1 152 | serializedVersion: 10 153 | m_Type: 1 154 | m_Shape: 0 155 | m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} 156 | m_Intensity: 1 157 | m_Range: 10 158 | m_SpotAngle: 30 159 | m_InnerSpotAngle: 21.80208 160 | m_CookieSize: 10 161 | m_Shadows: 162 | m_Type: 2 163 | m_Resolution: -1 164 | m_CustomResolution: -1 165 | m_Strength: 1 166 | m_Bias: 0.05 167 | m_NormalBias: 0.4 168 | m_NearPlane: 0.2 169 | m_CullingMatrixOverride: 170 | e00: 1 171 | e01: 0 172 | e02: 0 173 | e03: 0 174 | e10: 0 175 | e11: 1 176 | e12: 0 177 | e13: 0 178 | e20: 0 179 | e21: 0 180 | e22: 1 181 | e23: 0 182 | e30: 0 183 | e31: 0 184 | e32: 0 185 | e33: 1 186 | m_UseCullingMatrixOverride: 0 187 | m_Cookie: {fileID: 0} 188 | m_DrawHalo: 0 189 | m_Flare: {fileID: 0} 190 | m_RenderMode: 0 191 | m_CullingMask: 192 | serializedVersion: 2 193 | m_Bits: 4294967295 194 | m_RenderingLayerMask: 1 195 | m_Lightmapping: 1 196 | m_LightShadowCasterMode: 0 197 | m_AreaSize: {x: 1, y: 1} 198 | m_BounceIntensity: 1 199 | m_ColorTemperature: 6570 200 | m_UseColorTemperature: 0 201 | m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} 202 | m_UseBoundingSphereOverride: 0 203 | m_UseViewFrustumForShadowCasterCull: 1 204 | m_ShadowRadius: 0 205 | m_ShadowAngle: 0 206 | --- !u!4 &705507995 207 | Transform: 208 | m_ObjectHideFlags: 0 209 | m_CorrespondingSourceObject: {fileID: 0} 210 | m_PrefabInstance: {fileID: 0} 211 | m_PrefabAsset: {fileID: 0} 212 | m_GameObject: {fileID: 705507993} 213 | m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} 214 | m_LocalPosition: {x: 0, y: 3, z: 0} 215 | m_LocalScale: {x: 1, y: 1, z: 1} 216 | m_Children: [] 217 | m_Father: {fileID: 0} 218 | m_RootOrder: 1 219 | m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} 220 | --- !u!1 &963194225 221 | GameObject: 222 | m_ObjectHideFlags: 0 223 | m_CorrespondingSourceObject: {fileID: 0} 224 | m_PrefabInstance: {fileID: 0} 225 | m_PrefabAsset: {fileID: 0} 226 | serializedVersion: 6 227 | m_Component: 228 | - component: {fileID: 963194228} 229 | - component: {fileID: 963194227} 230 | - component: {fileID: 963194226} 231 | m_Layer: 0 232 | m_Name: Main Camera 233 | m_TagString: MainCamera 234 | m_Icon: {fileID: 0} 235 | m_NavMeshLayer: 0 236 | m_StaticEditorFlags: 0 237 | m_IsActive: 1 238 | --- !u!81 &963194226 239 | AudioListener: 240 | m_ObjectHideFlags: 0 241 | m_CorrespondingSourceObject: {fileID: 0} 242 | m_PrefabInstance: {fileID: 0} 243 | m_PrefabAsset: {fileID: 0} 244 | m_GameObject: {fileID: 963194225} 245 | m_Enabled: 1 246 | --- !u!20 &963194227 247 | Camera: 248 | m_ObjectHideFlags: 0 249 | m_CorrespondingSourceObject: {fileID: 0} 250 | m_PrefabInstance: {fileID: 0} 251 | m_PrefabAsset: {fileID: 0} 252 | m_GameObject: {fileID: 963194225} 253 | m_Enabled: 1 254 | serializedVersion: 2 255 | m_ClearFlags: 1 256 | m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} 257 | m_projectionMatrixMode: 1 258 | m_GateFitMode: 2 259 | m_FOVAxisMode: 0 260 | m_SensorSize: {x: 36, y: 24} 261 | m_LensShift: {x: 0, y: 0} 262 | m_FocalLength: 50 263 | m_NormalizedViewPortRect: 264 | serializedVersion: 2 265 | x: 0 266 | y: 0 267 | width: 1 268 | height: 1 269 | near clip plane: 0.3 270 | far clip plane: 1000 271 | field of view: 60 272 | orthographic: 0 273 | orthographic size: 5 274 | m_Depth: -1 275 | m_CullingMask: 276 | serializedVersion: 2 277 | m_Bits: 4294967295 278 | m_RenderingPath: -1 279 | m_TargetTexture: {fileID: 0} 280 | m_TargetDisplay: 0 281 | m_TargetEye: 3 282 | m_HDR: 1 283 | m_AllowMSAA: 1 284 | m_AllowDynamicResolution: 0 285 | m_ForceIntoRT: 0 286 | m_OcclusionCulling: 1 287 | m_StereoConvergence: 10 288 | m_StereoSeparation: 0.022 289 | --- !u!4 &963194228 290 | Transform: 291 | m_ObjectHideFlags: 0 292 | m_CorrespondingSourceObject: {fileID: 0} 293 | m_PrefabInstance: {fileID: 0} 294 | m_PrefabAsset: {fileID: 0} 295 | m_GameObject: {fileID: 963194225} 296 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 297 | m_LocalPosition: {x: 0, y: 0, z: -2} 298 | m_LocalScale: {x: 1, y: 1, z: 1} 299 | m_Children: [] 300 | m_Father: {fileID: 0} 301 | m_RootOrder: 0 302 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 303 | --- !u!1001 &1185524849 304 | PrefabInstance: 305 | m_ObjectHideFlags: 0 306 | serializedVersion: 2 307 | m_Modification: 308 | m_TransformParent: {fileID: 0} 309 | m_Modifications: 310 | - target: {fileID: 4690024007171475922, guid: 17d956ae30022714782e814b1589f8de, 311 | type: 3} 312 | propertyPath: m_Name 313 | value: Receiver 314 | objectReference: {fileID: 0} 315 | - target: {fileID: 4690024007171475925, guid: 17d956ae30022714782e814b1589f8de, 316 | type: 3} 317 | propertyPath: m_RootOrder 318 | value: 3 319 | objectReference: {fileID: 0} 320 | - target: {fileID: 4690024007171475925, guid: 17d956ae30022714782e814b1589f8de, 321 | type: 3} 322 | propertyPath: m_LocalPosition.x 323 | value: 0 324 | objectReference: {fileID: 0} 325 | - target: {fileID: 4690024007171475925, guid: 17d956ae30022714782e814b1589f8de, 326 | type: 3} 327 | propertyPath: m_LocalPosition.y 328 | value: 0 329 | objectReference: {fileID: 0} 330 | - target: {fileID: 4690024007171475925, guid: 17d956ae30022714782e814b1589f8de, 331 | type: 3} 332 | propertyPath: m_LocalPosition.z 333 | value: 10 334 | objectReference: {fileID: 0} 335 | - target: {fileID: 4690024007171475925, guid: 17d956ae30022714782e814b1589f8de, 336 | type: 3} 337 | propertyPath: m_LocalRotation.w 338 | value: 1 339 | objectReference: {fileID: 0} 340 | - target: {fileID: 4690024007171475925, guid: 17d956ae30022714782e814b1589f8de, 341 | type: 3} 342 | propertyPath: m_LocalRotation.x 343 | value: -0 344 | objectReference: {fileID: 0} 345 | - target: {fileID: 4690024007171475925, guid: 17d956ae30022714782e814b1589f8de, 346 | type: 3} 347 | propertyPath: m_LocalRotation.y 348 | value: -0 349 | objectReference: {fileID: 0} 350 | - target: {fileID: 4690024007171475925, guid: 17d956ae30022714782e814b1589f8de, 351 | type: 3} 352 | propertyPath: m_LocalRotation.z 353 | value: -0 354 | objectReference: {fileID: 0} 355 | - target: {fileID: 4690024007171475925, guid: 17d956ae30022714782e814b1589f8de, 356 | type: 3} 357 | propertyPath: m_LocalEulerAnglesHint.x 358 | value: 0 359 | objectReference: {fileID: 0} 360 | - target: {fileID: 4690024007171475925, guid: 17d956ae30022714782e814b1589f8de, 361 | type: 3} 362 | propertyPath: m_LocalEulerAnglesHint.y 363 | value: 0 364 | objectReference: {fileID: 0} 365 | - target: {fileID: 4690024007171475925, guid: 17d956ae30022714782e814b1589f8de, 366 | type: 3} 367 | propertyPath: m_LocalEulerAnglesHint.z 368 | value: 0 369 | objectReference: {fileID: 0} 370 | m_RemovedComponents: [] 371 | m_SourcePrefab: {fileID: 100100000, guid: 17d956ae30022714782e814b1589f8de, type: 3} 372 | --- !u!1001 &1661070875 373 | PrefabInstance: 374 | m_ObjectHideFlags: 0 375 | serializedVersion: 2 376 | m_Modification: 377 | m_TransformParent: {fileID: 0} 378 | m_Modifications: 379 | - target: {fileID: 7790942827443430434, guid: 2b67c08c118b3aa498a1c842fa98de74, 380 | type: 3} 381 | propertyPath: forceIdrFrame 382 | value: 1 383 | objectReference: {fileID: 0} 384 | - target: {fileID: 7790942827443430434, guid: 2b67c08c118b3aa498a1c842fa98de74, 385 | type: 3} 386 | propertyPath: setting.bitRate 387 | value: 2000000 388 | objectReference: {fileID: 0} 389 | - target: {fileID: 7790942827443430434, guid: 2b67c08c118b3aa498a1c842fa98de74, 390 | type: 3} 391 | propertyPath: setting.maxFrameSize 392 | value: 40000 393 | objectReference: {fileID: 0} 394 | - target: {fileID: 7790942828218749804, guid: 2b67c08c118b3aa498a1c842fa98de74, 395 | type: 3} 396 | propertyPath: m_Name 397 | value: Sender 398 | objectReference: {fileID: 0} 399 | - target: {fileID: 7790942828218749805, guid: 2b67c08c118b3aa498a1c842fa98de74, 400 | type: 3} 401 | propertyPath: m_RootOrder 402 | value: 2 403 | objectReference: {fileID: 0} 404 | - target: {fileID: 7790942828218749805, guid: 2b67c08c118b3aa498a1c842fa98de74, 405 | type: 3} 406 | propertyPath: m_LocalPosition.x 407 | value: 0 408 | objectReference: {fileID: 0} 409 | - target: {fileID: 7790942828218749805, guid: 2b67c08c118b3aa498a1c842fa98de74, 410 | type: 3} 411 | propertyPath: m_LocalPosition.y 412 | value: 11.64 413 | objectReference: {fileID: 0} 414 | - target: {fileID: 7790942828218749805, guid: 2b67c08c118b3aa498a1c842fa98de74, 415 | type: 3} 416 | propertyPath: m_LocalPosition.z 417 | value: 10 418 | objectReference: {fileID: 0} 419 | - target: {fileID: 7790942828218749805, guid: 2b67c08c118b3aa498a1c842fa98de74, 420 | type: 3} 421 | propertyPath: m_LocalRotation.w 422 | value: 1 423 | objectReference: {fileID: 0} 424 | - target: {fileID: 7790942828218749805, guid: 2b67c08c118b3aa498a1c842fa98de74, 425 | type: 3} 426 | propertyPath: m_LocalRotation.x 427 | value: 0 428 | objectReference: {fileID: 0} 429 | - target: {fileID: 7790942828218749805, guid: 2b67c08c118b3aa498a1c842fa98de74, 430 | type: 3} 431 | propertyPath: m_LocalRotation.y 432 | value: 0 433 | objectReference: {fileID: 0} 434 | - target: {fileID: 7790942828218749805, guid: 2b67c08c118b3aa498a1c842fa98de74, 435 | type: 3} 436 | propertyPath: m_LocalRotation.z 437 | value: 0 438 | objectReference: {fileID: 0} 439 | - target: {fileID: 7790942828218749805, guid: 2b67c08c118b3aa498a1c842fa98de74, 440 | type: 3} 441 | propertyPath: m_LocalEulerAnglesHint.x 442 | value: 0 443 | objectReference: {fileID: 0} 444 | - target: {fileID: 7790942828218749805, guid: 2b67c08c118b3aa498a1c842fa98de74, 445 | type: 3} 446 | propertyPath: m_LocalEulerAnglesHint.y 447 | value: 0 448 | objectReference: {fileID: 0} 449 | - target: {fileID: 7790942828218749805, guid: 2b67c08c118b3aa498a1c842fa98de74, 450 | type: 3} 451 | propertyPath: m_LocalEulerAnglesHint.z 452 | value: 0 453 | objectReference: {fileID: 0} 454 | m_RemovedComponents: [] 455 | m_SourcePrefab: {fileID: 100100000, guid: 2b67c08c118b3aa498a1c842fa98de74, type: 3} 456 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Scenes/SenderToReceiver.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 41600c88e2231c845863ad0683b875a0 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Scenes/SenderToReceiverSettings.lighting: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!850595691 &4890085278179872738 4 | LightingSettings: 5 | m_ObjectHideFlags: 0 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_Name: SenderToReceiverSettings 10 | serializedVersion: 3 11 | m_GIWorkflowMode: 0 12 | m_EnableBakedLightmaps: 1 13 | m_EnableRealtimeLightmaps: 1 14 | m_RealtimeEnvironmentLighting: 1 15 | m_BounceScale: 1 16 | m_AlbedoBoost: 1 17 | m_IndirectOutputScale: 1 18 | m_UsingShadowmask: 1 19 | m_BakeBackend: 1 20 | m_LightmapMaxSize: 1024 21 | m_BakeResolution: 40 22 | m_Padding: 2 23 | m_TextureCompression: 1 24 | m_AO: 0 25 | m_AOMaxDistance: 1 26 | m_CompAOExponent: 1 27 | m_CompAOExponentDirect: 0 28 | m_ExtractAO: 0 29 | m_MixedBakeMode: 2 30 | m_LightmapsBakeMode: 1 31 | m_FilterMode: 1 32 | m_LightmapParameters: {fileID: 15204, guid: 0000000000000000f000000000000000, type: 0} 33 | m_ExportTrainingData: 0 34 | m_TrainingDataDestination: TrainingData 35 | m_RealtimeResolution: 2 36 | m_ForceWhiteAlbedo: 0 37 | m_ForceUpdates: 0 38 | m_FinalGather: 0 39 | m_FinalGatherRayCount: 256 40 | m_FinalGatherFiltering: 1 41 | m_PVRCulling: 1 42 | m_PVRSampling: 1 43 | m_PVRDirectSampleCount: 32 44 | m_PVRSampleCount: 500 45 | m_PVREnvironmentSampleCount: 500 46 | m_PVREnvironmentReferencePointCount: 2048 47 | m_LightProbeSampleCountMultiplier: 4 48 | m_PVRBounces: 2 49 | m_PVRMinBounces: 2 50 | m_PVREnvironmentMIS: 0 51 | m_PVRFilteringMode: 2 52 | m_PVRDenoiserTypeDirect: 0 53 | m_PVRDenoiserTypeIndirect: 0 54 | m_PVRDenoiserTypeAO: 0 55 | m_PVRFilterTypeDirect: 0 56 | m_PVRFilterTypeIndirect: 0 57 | m_PVRFilterTypeAO: 0 58 | m_PVRFilteringGaussRadiusDirect: 1 59 | m_PVRFilteringGaussRadiusIndirect: 5 60 | m_PVRFilteringGaussRadiusAO: 2 61 | m_PVRFilteringAtrousPositionSigmaDirect: 0.5 62 | m_PVRFilteringAtrousPositionSigmaIndirect: 2 63 | m_PVRFilteringAtrousPositionSigmaAO: 1 64 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Scenes/SenderToReceiverSettings.lighting.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 3d0478796b66d9749867ee5e19c48ae8 3 | NativeFormatImporter: 4 | externalObjects: {} 5 | mainObjectFileID: 4890085278179872738 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9415b6b47f4e98143b1e5865d486523d 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Scripts/DesktopEncoder.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.Collections; 3 | 4 | namespace UnityRemoteDesktopDuplication 5 | { 6 | 7 | public class DesktopEncoder : MonoBehaviour 8 | { 9 | [SerializeField] 10 | uDesktopDuplication.Texture texture = null; 11 | 12 | [SerializeField] 13 | uNvEncoder.Encoder encoder = null; 14 | 15 | [SerializeField] 16 | public uNvEncoder.EncoderDesc setting = new uNvEncoder.EncoderDesc 17 | { 18 | width = 1920, 19 | height = 1080, 20 | frameRate = 60, 21 | format = uNvEncoder.Format.B8G8R8A8_UNORM, 22 | bitRate = 2000000, 23 | maxFrameSize = 40000, 24 | }; 25 | 26 | public int idrFrameIntervalFrame = 60; 27 | int idrFrameCounter_ = 0; 28 | 29 | void OnEnable() 30 | { 31 | StartCoroutine(EncodeLoop()); 32 | } 33 | 34 | void OnDisable() 35 | { 36 | StopAllCoroutines(); 37 | encoder.Destroy(); 38 | } 39 | 40 | IEnumerator EncodeLoop() 41 | { 42 | for (;;) 43 | { 44 | if (texture.monitor != null) break; 45 | yield return new WaitForEndOfFrame(); 46 | } 47 | 48 | setting.width = texture.monitor.width; 49 | setting.height = texture.monitor.height; 50 | encoder.Create(setting); 51 | 52 | for (;;) 53 | { 54 | if (setting.frameRate < 60) 55 | { 56 | yield return new WaitForSeconds(1f / setting.frameRate); 57 | } 58 | 59 | bool idr = idrFrameCounter_++ % idrFrameIntervalFrame == 0; 60 | encoder.Encode(texture.monitor.texture, idr); 61 | encoder.Update(); 62 | } 63 | } 64 | 65 | [ContextMenu("Reconfigure")] 66 | public void Reconfigure() 67 | { 68 | if (encoder == null) return; 69 | encoder.Reconfigure(setting); 70 | } 71 | } 72 | 73 | } 74 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Scripts/DesktopEncoder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5c45c05707607b549bdd68904d990f9d 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Scripts/DesktopReceiver.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using uOSC; 3 | using uPacketDivision; 4 | using System.Runtime.InteropServices; 5 | 6 | namespace UnityRemoteDesktopDuplication 7 | { 8 | 9 | public class DesktopReceiver : MonoBehaviour 10 | { 11 | public uNvPipe.uNvPipeDecoder decoder; 12 | public uint timeout = 100; 13 | Assembler assembler_ = new Assembler(); 14 | bool isInitialized_ = false; 15 | 16 | public void OnDataReceived(Message message) 17 | { 18 | assembler_.timeout = timeout; 19 | 20 | if (message.address == "/uDD/Size") 21 | { 22 | var width = (int)message.values[0]; 23 | var height = (int)message.values[1]; 24 | SetScreenSize(width, height); 25 | } 26 | else if (message.address == "/uDD/Data") 27 | { 28 | assembler_.Add((byte[])message.values[0]); 29 | CheckPacketEvent(); 30 | } 31 | } 32 | 33 | void SetScreenSize(int width, int height) 34 | { 35 | if (isInitialized_) return; 36 | 37 | Debug.LogFormat("Start decoder: width => {0}, height => {0}", width, height); 38 | decoder.width = width; 39 | decoder.height = height; 40 | decoder.enabled = true; 41 | 42 | isInitialized_ = true; 43 | } 44 | 45 | void CheckPacketEvent() 46 | { 47 | if (!isInitialized_) return; 48 | 49 | switch (assembler_.GetEventType()) 50 | { 51 | case uPacketDivision.EventType.FrameCompleted: 52 | { 53 | var data = assembler_.GetAssembledData(); 54 | int size = data.Length; 55 | var handle = GCHandle.Alloc(data, GCHandleType.Pinned); 56 | var ptr = handle.AddrOfPinnedObject(); 57 | decoder.Decode(ptr, (int)size); 58 | handle.Free(); 59 | break; 60 | } 61 | case uPacketDivision.EventType.PacketLoss: 62 | { 63 | Debug.LogError("packet loss"); 64 | break; 65 | } 66 | default: 67 | { 68 | break; 69 | } 70 | } 71 | } 72 | } 73 | 74 | } 75 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Scripts/DesktopReceiver.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62c9ee82d7a44904d814aab25385f430 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Scripts/DesktopSender.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using uOSC; 3 | using uPacketDivision; 4 | 5 | namespace UnityRemoteDesktopDuplication 6 | { 7 | 8 | public class DesktopSender : MonoBehaviour 9 | { 10 | public uOscClient client; 11 | public DesktopEncoder encoder; 12 | public uint maxPacketSize = 1400; 13 | public uNvEncoder.EncoderDesc desc { get; set; } 14 | Divider divider_ = new Divider(); 15 | 16 | public void OnEncoded(System.IntPtr data, int size) 17 | { 18 | var width = encoder.setting.width; 19 | var height = encoder.setting.height; 20 | client.Send("/uDD/Size", width, height); 21 | 22 | divider_.maxPacketSize = maxPacketSize; 23 | divider_.Divide(data, (uint)size); 24 | for (uint i = 0; i < divider_.GetChunkCount(); ++i) 25 | { 26 | client.Send("/uDD/Data", divider_.GetChunk(i)); 27 | } 28 | } 29 | } 30 | 31 | } 32 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Scripts/DesktopSender.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 7ab587b1af120cf48bc1c923283cc118 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Scripts/OutputEncodedDataToFile.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using System.IO; 3 | using System.Runtime.InteropServices; 4 | 5 | namespace uNvEncoder.Examples 6 | { 7 | 8 | public class OutputEncodedDataToFile : MonoBehaviour 9 | { 10 | [SerializeField] 11 | string filePath = "test.h264"; 12 | 13 | FileStream fileStream_; 14 | BinaryWriter binaryWriter_; 15 | 16 | void Start() 17 | { 18 | fileStream_ = new FileStream(filePath, FileMode.Create, FileAccess.Write); 19 | binaryWriter_ = new BinaryWriter(fileStream_); 20 | } 21 | 22 | void OnApplicationQuit() 23 | { 24 | if (fileStream_ != null) 25 | { 26 | fileStream_.Close(); 27 | } 28 | 29 | if (binaryWriter_ != null) 30 | { 31 | binaryWriter_.Close(); 32 | } 33 | } 34 | 35 | public void OnData(System.IntPtr ptr, int size) 36 | { 37 | if (!enabled) return; 38 | 39 | if (ptr == System.IntPtr.Zero) return; 40 | 41 | var bytes = new byte[size]; 42 | Marshal.Copy(ptr, bytes, 0, size); 43 | binaryWriter_.Write(bytes); 44 | } 45 | } 46 | 47 | } 48 | -------------------------------------------------------------------------------- /Assets/uRemoteDesktopDuplication/Scripts/OutputEncodedDataToFile.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0833f6be5a296eb4fb05eca6ff7e6439 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2019 hecomi 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 21 | -------------------------------------------------------------------------------- /LICENSE_NvPipe: -------------------------------------------------------------------------------- 1 | Copyright (c) 2018 NVIDIA CORPORATION. All rights reserved. 2 | 3 | Redistribution and use in source and binary forms, with or without 4 | modification, are permitted provided that the following conditions 5 | are met: 6 | * Redistributions of source code must retain the above copyright 7 | notice, this list of conditions and the following disclaimer. 8 | * Redistributions in binary form must reproduce the above copyright 9 | notice, this list of conditions and the following disclaimer in the 10 | documentation and/or other materials provided with the distribution. 11 | * Neither the name of NVIDIA CORPORATION nor the names of its 12 | contributors may be used to endorse or promote products derived 13 | from this software without specific prior written permission. 14 | 15 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY 16 | EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 18 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 19 | CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 20 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 21 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 22 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 23 | OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 | 27 | ----- 28 | 29 | The Video Codec SDK has its own license agreement that can be found in src/Video_Codec_SDK. 30 | -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.hecomi.udesktopduplication": "1.8.1", 4 | "com.hecomi.unvencoder": "1.1.0", 5 | "com.hecomi.unvpipe": "1.0.1", 6 | "com.hecomi.uosc": "2.0.3", 7 | "com.hecomi.upacketdivision": "1.0.0", 8 | "com.unity.2d.sprite": "1.0.0", 9 | "com.unity.2d.tilemap": "1.0.0", 10 | "com.unity.collab-proxy": "1.15.1", 11 | "com.unity.ide.rider": "2.0.7", 12 | "com.unity.ide.visualstudio": "2.0.12", 13 | "com.unity.ide.vscode": "1.2.4", 14 | "com.unity.test-framework": "1.1.29", 15 | "com.unity.textmeshpro": "3.0.6", 16 | "com.unity.timeline": "1.4.8", 17 | "com.unity.ugui": "1.0.0", 18 | "com.unity.modules.ai": "1.0.0", 19 | "com.unity.modules.androidjni": "1.0.0", 20 | "com.unity.modules.animation": "1.0.0", 21 | "com.unity.modules.assetbundle": "1.0.0", 22 | "com.unity.modules.audio": "1.0.0", 23 | "com.unity.modules.cloth": "1.0.0", 24 | "com.unity.modules.director": "1.0.0", 25 | "com.unity.modules.imageconversion": "1.0.0", 26 | "com.unity.modules.imgui": "1.0.0", 27 | "com.unity.modules.jsonserialize": "1.0.0", 28 | "com.unity.modules.particlesystem": "1.0.0", 29 | "com.unity.modules.physics": "1.0.0", 30 | "com.unity.modules.physics2d": "1.0.0", 31 | "com.unity.modules.screencapture": "1.0.0", 32 | "com.unity.modules.terrain": "1.0.0", 33 | "com.unity.modules.terrainphysics": "1.0.0", 34 | "com.unity.modules.tilemap": "1.0.0", 35 | "com.unity.modules.ui": "1.0.0", 36 | "com.unity.modules.uielements": "1.0.0", 37 | "com.unity.modules.umbra": "1.0.0", 38 | "com.unity.modules.unityanalytics": "1.0.0", 39 | "com.unity.modules.unitywebrequest": "1.0.0", 40 | "com.unity.modules.unitywebrequestassetbundle": "1.0.0", 41 | "com.unity.modules.unitywebrequestaudio": "1.0.0", 42 | "com.unity.modules.unitywebrequesttexture": "1.0.0", 43 | "com.unity.modules.unitywebrequestwww": "1.0.0", 44 | "com.unity.modules.vehicles": "1.0.0", 45 | "com.unity.modules.video": "1.0.0", 46 | "com.unity.modules.vr": "1.0.0", 47 | "com.unity.modules.wind": "1.0.0", 48 | "com.unity.modules.xr": "1.0.0" 49 | }, 50 | "scopedRegistries": [ 51 | { 52 | "name": "hecomi", 53 | "url": "https://registry.npmjs.com", 54 | "scopes": [ 55 | "com.hecomi" 56 | ] 57 | } 58 | ] 59 | } 60 | -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.hecomi.udesktopduplication": { 4 | "version": "1.8.1", 5 | "depth": 0, 6 | "source": "registry", 7 | "dependencies": {}, 8 | "url": "https://registry.npmjs.com" 9 | }, 10 | "com.hecomi.unvencoder": { 11 | "version": "1.1.0", 12 | "depth": 0, 13 | "source": "registry", 14 | "dependencies": {}, 15 | "url": "https://registry.npmjs.com" 16 | }, 17 | "com.hecomi.unvpipe": { 18 | "version": "1.0.1", 19 | "depth": 0, 20 | "source": "registry", 21 | "dependencies": {}, 22 | "url": "https://registry.npmjs.com" 23 | }, 24 | "com.hecomi.uosc": { 25 | "version": "2.0.3", 26 | "depth": 0, 27 | "source": "registry", 28 | "dependencies": {}, 29 | "url": "https://registry.npmjs.com" 30 | }, 31 | "com.hecomi.upacketdivision": { 32 | "version": "1.0.0", 33 | "depth": 0, 34 | "source": "registry", 35 | "dependencies": {}, 36 | "url": "https://registry.npmjs.com" 37 | }, 38 | "com.unity.2d.sprite": { 39 | "version": "1.0.0", 40 | "depth": 0, 41 | "source": "builtin", 42 | "dependencies": {} 43 | }, 44 | "com.unity.2d.tilemap": { 45 | "version": "1.0.0", 46 | "depth": 0, 47 | "source": "builtin", 48 | "dependencies": {} 49 | }, 50 | "com.unity.collab-proxy": { 51 | "version": "1.15.1", 52 | "depth": 0, 53 | "source": "registry", 54 | "dependencies": { 55 | "com.unity.nuget.newtonsoft-json": "2.0.0", 56 | "com.unity.services.core": "1.0.1" 57 | }, 58 | "url": "https://packages.unity.com" 59 | }, 60 | "com.unity.ext.nunit": { 61 | "version": "1.0.6", 62 | "depth": 1, 63 | "source": "registry", 64 | "dependencies": {}, 65 | "url": "https://packages.unity.com" 66 | }, 67 | "com.unity.ide.rider": { 68 | "version": "2.0.7", 69 | "depth": 0, 70 | "source": "registry", 71 | "dependencies": { 72 | "com.unity.test-framework": "1.1.1" 73 | }, 74 | "url": "https://packages.unity.com" 75 | }, 76 | "com.unity.ide.visualstudio": { 77 | "version": "2.0.12", 78 | "depth": 0, 79 | "source": "registry", 80 | "dependencies": { 81 | "com.unity.test-framework": "1.1.9" 82 | }, 83 | "url": "https://packages.unity.com" 84 | }, 85 | "com.unity.ide.vscode": { 86 | "version": "1.2.4", 87 | "depth": 0, 88 | "source": "registry", 89 | "dependencies": {}, 90 | "url": "https://packages.unity.com" 91 | }, 92 | "com.unity.nuget.newtonsoft-json": { 93 | "version": "2.0.0", 94 | "depth": 1, 95 | "source": "registry", 96 | "dependencies": {}, 97 | "url": "https://packages.unity.com" 98 | }, 99 | "com.unity.services.core": { 100 | "version": "1.0.1", 101 | "depth": 1, 102 | "source": "registry", 103 | "dependencies": { 104 | "com.unity.modules.unitywebrequest": "1.0.0" 105 | }, 106 | "url": "https://packages.unity.com" 107 | }, 108 | "com.unity.test-framework": { 109 | "version": "1.1.29", 110 | "depth": 0, 111 | "source": "registry", 112 | "dependencies": { 113 | "com.unity.ext.nunit": "1.0.6", 114 | "com.unity.modules.imgui": "1.0.0", 115 | "com.unity.modules.jsonserialize": "1.0.0" 116 | }, 117 | "url": "https://packages.unity.com" 118 | }, 119 | "com.unity.textmeshpro": { 120 | "version": "3.0.6", 121 | "depth": 0, 122 | "source": "registry", 123 | "dependencies": { 124 | "com.unity.ugui": "1.0.0" 125 | }, 126 | "url": "https://packages.unity.com" 127 | }, 128 | "com.unity.timeline": { 129 | "version": "1.4.8", 130 | "depth": 0, 131 | "source": "registry", 132 | "dependencies": { 133 | "com.unity.modules.director": "1.0.0", 134 | "com.unity.modules.animation": "1.0.0", 135 | "com.unity.modules.audio": "1.0.0", 136 | "com.unity.modules.particlesystem": "1.0.0" 137 | }, 138 | "url": "https://packages.unity.com" 139 | }, 140 | "com.unity.ugui": { 141 | "version": "1.0.0", 142 | "depth": 0, 143 | "source": "builtin", 144 | "dependencies": { 145 | "com.unity.modules.ui": "1.0.0", 146 | "com.unity.modules.imgui": "1.0.0" 147 | } 148 | }, 149 | "com.unity.modules.ai": { 150 | "version": "1.0.0", 151 | "depth": 0, 152 | "source": "builtin", 153 | "dependencies": {} 154 | }, 155 | "com.unity.modules.androidjni": { 156 | "version": "1.0.0", 157 | "depth": 0, 158 | "source": "builtin", 159 | "dependencies": {} 160 | }, 161 | "com.unity.modules.animation": { 162 | "version": "1.0.0", 163 | "depth": 0, 164 | "source": "builtin", 165 | "dependencies": {} 166 | }, 167 | "com.unity.modules.assetbundle": { 168 | "version": "1.0.0", 169 | "depth": 0, 170 | "source": "builtin", 171 | "dependencies": {} 172 | }, 173 | "com.unity.modules.audio": { 174 | "version": "1.0.0", 175 | "depth": 0, 176 | "source": "builtin", 177 | "dependencies": {} 178 | }, 179 | "com.unity.modules.cloth": { 180 | "version": "1.0.0", 181 | "depth": 0, 182 | "source": "builtin", 183 | "dependencies": { 184 | "com.unity.modules.physics": "1.0.0" 185 | } 186 | }, 187 | "com.unity.modules.director": { 188 | "version": "1.0.0", 189 | "depth": 0, 190 | "source": "builtin", 191 | "dependencies": { 192 | "com.unity.modules.audio": "1.0.0", 193 | "com.unity.modules.animation": "1.0.0" 194 | } 195 | }, 196 | "com.unity.modules.imageconversion": { 197 | "version": "1.0.0", 198 | "depth": 0, 199 | "source": "builtin", 200 | "dependencies": {} 201 | }, 202 | "com.unity.modules.imgui": { 203 | "version": "1.0.0", 204 | "depth": 0, 205 | "source": "builtin", 206 | "dependencies": {} 207 | }, 208 | "com.unity.modules.jsonserialize": { 209 | "version": "1.0.0", 210 | "depth": 0, 211 | "source": "builtin", 212 | "dependencies": {} 213 | }, 214 | "com.unity.modules.particlesystem": { 215 | "version": "1.0.0", 216 | "depth": 0, 217 | "source": "builtin", 218 | "dependencies": {} 219 | }, 220 | "com.unity.modules.physics": { 221 | "version": "1.0.0", 222 | "depth": 0, 223 | "source": "builtin", 224 | "dependencies": {} 225 | }, 226 | "com.unity.modules.physics2d": { 227 | "version": "1.0.0", 228 | "depth": 0, 229 | "source": "builtin", 230 | "dependencies": {} 231 | }, 232 | "com.unity.modules.screencapture": { 233 | "version": "1.0.0", 234 | "depth": 0, 235 | "source": "builtin", 236 | "dependencies": { 237 | "com.unity.modules.imageconversion": "1.0.0" 238 | } 239 | }, 240 | "com.unity.modules.subsystems": { 241 | "version": "1.0.0", 242 | "depth": 1, 243 | "source": "builtin", 244 | "dependencies": { 245 | "com.unity.modules.jsonserialize": "1.0.0" 246 | } 247 | }, 248 | "com.unity.modules.terrain": { 249 | "version": "1.0.0", 250 | "depth": 0, 251 | "source": "builtin", 252 | "dependencies": {} 253 | }, 254 | "com.unity.modules.terrainphysics": { 255 | "version": "1.0.0", 256 | "depth": 0, 257 | "source": "builtin", 258 | "dependencies": { 259 | "com.unity.modules.physics": "1.0.0", 260 | "com.unity.modules.terrain": "1.0.0" 261 | } 262 | }, 263 | "com.unity.modules.tilemap": { 264 | "version": "1.0.0", 265 | "depth": 0, 266 | "source": "builtin", 267 | "dependencies": { 268 | "com.unity.modules.physics2d": "1.0.0" 269 | } 270 | }, 271 | "com.unity.modules.ui": { 272 | "version": "1.0.0", 273 | "depth": 0, 274 | "source": "builtin", 275 | "dependencies": {} 276 | }, 277 | "com.unity.modules.uielements": { 278 | "version": "1.0.0", 279 | "depth": 0, 280 | "source": "builtin", 281 | "dependencies": { 282 | "com.unity.modules.ui": "1.0.0", 283 | "com.unity.modules.imgui": "1.0.0", 284 | "com.unity.modules.jsonserialize": "1.0.0", 285 | "com.unity.modules.uielementsnative": "1.0.0" 286 | } 287 | }, 288 | "com.unity.modules.uielementsnative": { 289 | "version": "1.0.0", 290 | "depth": 1, 291 | "source": "builtin", 292 | "dependencies": { 293 | "com.unity.modules.ui": "1.0.0", 294 | "com.unity.modules.imgui": "1.0.0", 295 | "com.unity.modules.jsonserialize": "1.0.0" 296 | } 297 | }, 298 | "com.unity.modules.umbra": { 299 | "version": "1.0.0", 300 | "depth": 0, 301 | "source": "builtin", 302 | "dependencies": {} 303 | }, 304 | "com.unity.modules.unityanalytics": { 305 | "version": "1.0.0", 306 | "depth": 0, 307 | "source": "builtin", 308 | "dependencies": { 309 | "com.unity.modules.unitywebrequest": "1.0.0", 310 | "com.unity.modules.jsonserialize": "1.0.0" 311 | } 312 | }, 313 | "com.unity.modules.unitywebrequest": { 314 | "version": "1.0.0", 315 | "depth": 0, 316 | "source": "builtin", 317 | "dependencies": {} 318 | }, 319 | "com.unity.modules.unitywebrequestassetbundle": { 320 | "version": "1.0.0", 321 | "depth": 0, 322 | "source": "builtin", 323 | "dependencies": { 324 | "com.unity.modules.assetbundle": "1.0.0", 325 | "com.unity.modules.unitywebrequest": "1.0.0" 326 | } 327 | }, 328 | "com.unity.modules.unitywebrequestaudio": { 329 | "version": "1.0.0", 330 | "depth": 0, 331 | "source": "builtin", 332 | "dependencies": { 333 | "com.unity.modules.unitywebrequest": "1.0.0", 334 | "com.unity.modules.audio": "1.0.0" 335 | } 336 | }, 337 | "com.unity.modules.unitywebrequesttexture": { 338 | "version": "1.0.0", 339 | "depth": 0, 340 | "source": "builtin", 341 | "dependencies": { 342 | "com.unity.modules.unitywebrequest": "1.0.0", 343 | "com.unity.modules.imageconversion": "1.0.0" 344 | } 345 | }, 346 | "com.unity.modules.unitywebrequestwww": { 347 | "version": "1.0.0", 348 | "depth": 0, 349 | "source": "builtin", 350 | "dependencies": { 351 | "com.unity.modules.unitywebrequest": "1.0.0", 352 | "com.unity.modules.unitywebrequestassetbundle": "1.0.0", 353 | "com.unity.modules.unitywebrequestaudio": "1.0.0", 354 | "com.unity.modules.audio": "1.0.0", 355 | "com.unity.modules.assetbundle": "1.0.0", 356 | "com.unity.modules.imageconversion": "1.0.0" 357 | } 358 | }, 359 | "com.unity.modules.vehicles": { 360 | "version": "1.0.0", 361 | "depth": 0, 362 | "source": "builtin", 363 | "dependencies": { 364 | "com.unity.modules.physics": "1.0.0" 365 | } 366 | }, 367 | "com.unity.modules.video": { 368 | "version": "1.0.0", 369 | "depth": 0, 370 | "source": "builtin", 371 | "dependencies": { 372 | "com.unity.modules.audio": "1.0.0", 373 | "com.unity.modules.ui": "1.0.0", 374 | "com.unity.modules.unitywebrequest": "1.0.0" 375 | } 376 | }, 377 | "com.unity.modules.vr": { 378 | "version": "1.0.0", 379 | "depth": 0, 380 | "source": "builtin", 381 | "dependencies": { 382 | "com.unity.modules.jsonserialize": "1.0.0", 383 | "com.unity.modules.physics": "1.0.0", 384 | "com.unity.modules.xr": "1.0.0" 385 | } 386 | }, 387 | "com.unity.modules.wind": { 388 | "version": "1.0.0", 389 | "depth": 0, 390 | "source": "builtin", 391 | "dependencies": {} 392 | }, 393 | "com.unity.modules.xr": { 394 | "version": "1.0.0", 395 | "depth": 0, 396 | "source": "builtin", 397 | "dependencies": { 398 | "com.unity.modules.physics": "1.0.0", 399 | "com.unity.modules.jsonserialize": "1.0.0", 400 | "com.unity.modules.subsystems": "1.0.0" 401 | } 402 | } 403 | } 404 | } 405 | -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!11 &1 4 | AudioManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Volume: 1 8 | Rolloff Scale: 1 9 | Doppler Factor: 1 10 | Default Speaker Mode: 2 11 | m_SampleRate: 0 12 | m_DSPBufferSize: 1024 13 | m_VirtualVoiceCount: 512 14 | m_RealVoiceCount: 32 15 | m_SpatializerPlugin: 16 | m_AmbisonicDecoderPlugin: 17 | m_DisableAudio: 0 18 | m_VirtualizeEffects: 1 19 | m_RequestedDSPBufferSize: 1024 20 | -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!236 &1 4 | ClusterInputManager: 5 | m_ObjectHideFlags: 0 6 | m_Inputs: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!55 &1 4 | PhysicsManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 11 7 | m_Gravity: {x: 0, y: -9.81, z: 0} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_BounceThreshold: 2 10 | m_SleepThreshold: 0.005 11 | m_DefaultContactOffset: 0.01 12 | m_DefaultSolverIterations: 6 13 | m_DefaultSolverVelocityIterations: 1 14 | m_QueriesHitBackfaces: 0 15 | m_QueriesHitTriggers: 1 16 | m_EnableAdaptiveForce: 0 17 | m_ClothInterCollisionDistance: 0 18 | m_ClothInterCollisionStiffness: 0 19 | m_ContactsGeneration: 1 20 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 21 | m_AutoSimulation: 1 22 | m_AutoSyncTransforms: 0 23 | m_ReuseCollisionCallbacks: 1 24 | m_ClothInterCollisionSettingsToggle: 0 25 | m_ContactPairsMode: 0 26 | m_BroadphaseType: 0 27 | m_WorldBounds: 28 | m_Center: {x: 0, y: 0, z: 0} 29 | m_Extent: {x: 250, y: 250, z: 250} 30 | m_WorldSubdivisions: 8 31 | m_FrictionType: 0 32 | m_EnableEnhancedDeterminism: 0 33 | m_EnableUnifiedHeightmaps: 1 34 | m_DefaultMaxAngluarSpeed: 7 35 | -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1045 &1 4 | EditorBuildSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Scenes: 8 | - enabled: 1 9 | path: Assets/uRemoteDesktopDuplication/Scenes/Sender.unity 10 | guid: d32ad1e59ae051640a61a11652667c51 11 | m_configObjects: {} 12 | -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!159 &1 4 | EditorSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 9 7 | m_ExternalVersionControlSupport: Visible Meta Files 8 | m_SerializationMode: 2 9 | m_LineEndingsForNewScripts: 2 10 | m_DefaultBehaviorMode: 0 11 | m_PrefabRegularEnvironment: {fileID: 0} 12 | m_PrefabUIEnvironment: {fileID: 0} 13 | m_SpritePackerMode: 0 14 | m_SpritePackerPaddingPower: 1 15 | m_EtcTextureCompressorBehavior: 1 16 | m_EtcTextureFastCompressor: 1 17 | m_EtcTextureNormalCompressor: 2 18 | m_EtcTextureBestCompressor: 4 19 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef;rsp;asmref 20 | m_ProjectGenerationRootNamespace: 21 | m_CollabEditorSettings: 22 | inProgressEnabled: 1 23 | m_EnableTextureStreamingInEditMode: 1 24 | m_EnableTextureStreamingInPlayMode: 1 25 | m_AsyncShaderCompilation: 1 26 | m_EnterPlayModeOptionsEnabled: 0 27 | m_EnterPlayModeOptions: 3 28 | m_ShowLightmapResolutionOverlay: 1 29 | m_UseLegacyProbeSampleCount: 1 30 | m_AssetPipelineMode: 1 31 | m_CacheServerMode: 0 32 | m_CacheServerEndpoint: 33 | m_CacheServerNamespacePrefix: default 34 | m_CacheServerEnableDownload: 1 35 | m_CacheServerEnableUpload: 1 36 | -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!30 &1 4 | GraphicsSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 13 7 | m_Deferred: 8 | m_Mode: 1 9 | m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} 10 | m_DeferredReflections: 11 | m_Mode: 1 12 | m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} 13 | m_ScreenSpaceShadows: 14 | m_Mode: 1 15 | m_Shader: {fileID: 64, guid: 0000000000000000f000000000000000, type: 0} 16 | m_LegacyDeferred: 17 | m_Mode: 1 18 | m_Shader: {fileID: 63, guid: 0000000000000000f000000000000000, type: 0} 19 | m_DepthNormals: 20 | m_Mode: 1 21 | m_Shader: {fileID: 62, guid: 0000000000000000f000000000000000, type: 0} 22 | m_MotionVectors: 23 | m_Mode: 1 24 | m_Shader: {fileID: 75, guid: 0000000000000000f000000000000000, type: 0} 25 | m_LightHalo: 26 | m_Mode: 1 27 | m_Shader: {fileID: 105, guid: 0000000000000000f000000000000000, type: 0} 28 | m_LensFlare: 29 | m_Mode: 1 30 | m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} 31 | m_AlwaysIncludedShaders: 32 | - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} 33 | - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} 34 | - {fileID: 15105, guid: 0000000000000000f000000000000000, type: 0} 35 | - {fileID: 15106, guid: 0000000000000000f000000000000000, type: 0} 36 | - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} 37 | - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} 38 | - {fileID: 16000, guid: 0000000000000000f000000000000000, type: 0} 39 | - {fileID: 16001, guid: 0000000000000000f000000000000000, type: 0} 40 | - {fileID: 17000, guid: 0000000000000000f000000000000000, type: 0} 41 | m_PreloadedShaders: [] 42 | m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, 43 | type: 0} 44 | m_CustomRenderPipeline: {fileID: 0} 45 | m_TransparencySortMode: 0 46 | m_TransparencySortAxis: {x: 0, y: 0, z: 1} 47 | m_DefaultRenderingPath: 1 48 | m_DefaultMobileRenderingPath: 1 49 | m_TierSettings: [] 50 | m_LightmapStripping: 0 51 | m_FogStripping: 0 52 | m_InstancingStripping: 0 53 | m_LightmapKeepPlain: 1 54 | m_LightmapKeepDirCombined: 1 55 | m_LightmapKeepDynamicPlain: 1 56 | m_LightmapKeepDynamicDirCombined: 1 57 | m_LightmapKeepShadowMask: 1 58 | m_LightmapKeepSubtractive: 1 59 | m_FogKeepLinear: 1 60 | m_FogKeepExp: 1 61 | m_FogKeepExp2: 1 62 | m_AlbedoSwatchInfos: [] 63 | m_LightsUseLinearIntensity: 0 64 | m_LightsUseColorTemperature: 0 65 | m_LogWhenShaderIsCompiled: 0 66 | m_AllowEnlightenSupportForUpgradedProject: 1 67 | -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!13 &1 4 | InputManager: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | m_Axes: 8 | - serializedVersion: 3 9 | m_Name: Horizontal 10 | descriptiveName: 11 | descriptiveNegativeName: 12 | negativeButton: left 13 | positiveButton: right 14 | altNegativeButton: a 15 | altPositiveButton: d 16 | gravity: 3 17 | dead: 0.001 18 | sensitivity: 3 19 | snap: 1 20 | invert: 0 21 | type: 0 22 | axis: 0 23 | joyNum: 0 24 | - serializedVersion: 3 25 | m_Name: Vertical 26 | descriptiveName: 27 | descriptiveNegativeName: 28 | negativeButton: down 29 | positiveButton: up 30 | altNegativeButton: s 31 | altPositiveButton: w 32 | gravity: 3 33 | dead: 0.001 34 | sensitivity: 3 35 | snap: 1 36 | invert: 0 37 | type: 0 38 | axis: 0 39 | joyNum: 0 40 | - serializedVersion: 3 41 | m_Name: Fire1 42 | descriptiveName: 43 | descriptiveNegativeName: 44 | negativeButton: 45 | positiveButton: left ctrl 46 | altNegativeButton: 47 | altPositiveButton: mouse 0 48 | gravity: 1000 49 | dead: 0.001 50 | sensitivity: 1000 51 | snap: 0 52 | invert: 0 53 | type: 0 54 | axis: 0 55 | joyNum: 0 56 | - serializedVersion: 3 57 | m_Name: Fire2 58 | descriptiveName: 59 | descriptiveNegativeName: 60 | negativeButton: 61 | positiveButton: left alt 62 | altNegativeButton: 63 | altPositiveButton: mouse 1 64 | gravity: 1000 65 | dead: 0.001 66 | sensitivity: 1000 67 | snap: 0 68 | invert: 0 69 | type: 0 70 | axis: 0 71 | joyNum: 0 72 | - serializedVersion: 3 73 | m_Name: Fire3 74 | descriptiveName: 75 | descriptiveNegativeName: 76 | negativeButton: 77 | positiveButton: left shift 78 | altNegativeButton: 79 | altPositiveButton: mouse 2 80 | gravity: 1000 81 | dead: 0.001 82 | sensitivity: 1000 83 | snap: 0 84 | invert: 0 85 | type: 0 86 | axis: 0 87 | joyNum: 0 88 | - serializedVersion: 3 89 | m_Name: Jump 90 | descriptiveName: 91 | descriptiveNegativeName: 92 | negativeButton: 93 | positiveButton: space 94 | altNegativeButton: 95 | altPositiveButton: 96 | gravity: 1000 97 | dead: 0.001 98 | sensitivity: 1000 99 | snap: 0 100 | invert: 0 101 | type: 0 102 | axis: 0 103 | joyNum: 0 104 | - serializedVersion: 3 105 | m_Name: Mouse X 106 | descriptiveName: 107 | descriptiveNegativeName: 108 | negativeButton: 109 | positiveButton: 110 | altNegativeButton: 111 | altPositiveButton: 112 | gravity: 0 113 | dead: 0 114 | sensitivity: 0.1 115 | snap: 0 116 | invert: 0 117 | type: 1 118 | axis: 0 119 | joyNum: 0 120 | - serializedVersion: 3 121 | m_Name: Mouse Y 122 | descriptiveName: 123 | descriptiveNegativeName: 124 | negativeButton: 125 | positiveButton: 126 | altNegativeButton: 127 | altPositiveButton: 128 | gravity: 0 129 | dead: 0 130 | sensitivity: 0.1 131 | snap: 0 132 | invert: 0 133 | type: 1 134 | axis: 1 135 | joyNum: 0 136 | - serializedVersion: 3 137 | m_Name: Mouse ScrollWheel 138 | descriptiveName: 139 | descriptiveNegativeName: 140 | negativeButton: 141 | positiveButton: 142 | altNegativeButton: 143 | altPositiveButton: 144 | gravity: 0 145 | dead: 0 146 | sensitivity: 0.1 147 | snap: 0 148 | invert: 0 149 | type: 1 150 | axis: 2 151 | joyNum: 0 152 | - serializedVersion: 3 153 | m_Name: Horizontal 154 | descriptiveName: 155 | descriptiveNegativeName: 156 | negativeButton: 157 | positiveButton: 158 | altNegativeButton: 159 | altPositiveButton: 160 | gravity: 0 161 | dead: 0.19 162 | sensitivity: 1 163 | snap: 0 164 | invert: 0 165 | type: 2 166 | axis: 0 167 | joyNum: 0 168 | - serializedVersion: 3 169 | m_Name: Vertical 170 | descriptiveName: 171 | descriptiveNegativeName: 172 | negativeButton: 173 | positiveButton: 174 | altNegativeButton: 175 | altPositiveButton: 176 | gravity: 0 177 | dead: 0.19 178 | sensitivity: 1 179 | snap: 0 180 | invert: 1 181 | type: 2 182 | axis: 1 183 | joyNum: 0 184 | - serializedVersion: 3 185 | m_Name: Fire1 186 | descriptiveName: 187 | descriptiveNegativeName: 188 | negativeButton: 189 | positiveButton: joystick button 0 190 | altNegativeButton: 191 | altPositiveButton: 192 | gravity: 1000 193 | dead: 0.001 194 | sensitivity: 1000 195 | snap: 0 196 | invert: 0 197 | type: 0 198 | axis: 0 199 | joyNum: 0 200 | - serializedVersion: 3 201 | m_Name: Fire2 202 | descriptiveName: 203 | descriptiveNegativeName: 204 | negativeButton: 205 | positiveButton: joystick button 1 206 | altNegativeButton: 207 | altPositiveButton: 208 | gravity: 1000 209 | dead: 0.001 210 | sensitivity: 1000 211 | snap: 0 212 | invert: 0 213 | type: 0 214 | axis: 0 215 | joyNum: 0 216 | - serializedVersion: 3 217 | m_Name: Fire3 218 | descriptiveName: 219 | descriptiveNegativeName: 220 | negativeButton: 221 | positiveButton: joystick button 2 222 | altNegativeButton: 223 | altPositiveButton: 224 | gravity: 1000 225 | dead: 0.001 226 | sensitivity: 1000 227 | snap: 0 228 | invert: 0 229 | type: 0 230 | axis: 0 231 | joyNum: 0 232 | - serializedVersion: 3 233 | m_Name: Jump 234 | descriptiveName: 235 | descriptiveNegativeName: 236 | negativeButton: 237 | positiveButton: joystick button 3 238 | altNegativeButton: 239 | altPositiveButton: 240 | gravity: 1000 241 | dead: 0.001 242 | sensitivity: 1000 243 | snap: 0 244 | invert: 0 245 | type: 0 246 | axis: 0 247 | joyNum: 0 248 | - serializedVersion: 3 249 | m_Name: Submit 250 | descriptiveName: 251 | descriptiveNegativeName: 252 | negativeButton: 253 | positiveButton: return 254 | altNegativeButton: 255 | altPositiveButton: joystick button 0 256 | gravity: 1000 257 | dead: 0.001 258 | sensitivity: 1000 259 | snap: 0 260 | invert: 0 261 | type: 0 262 | axis: 0 263 | joyNum: 0 264 | - serializedVersion: 3 265 | m_Name: Submit 266 | descriptiveName: 267 | descriptiveNegativeName: 268 | negativeButton: 269 | positiveButton: enter 270 | altNegativeButton: 271 | altPositiveButton: space 272 | gravity: 1000 273 | dead: 0.001 274 | sensitivity: 1000 275 | snap: 0 276 | invert: 0 277 | type: 0 278 | axis: 0 279 | joyNum: 0 280 | - serializedVersion: 3 281 | m_Name: Cancel 282 | descriptiveName: 283 | descriptiveNegativeName: 284 | negativeButton: 285 | positiveButton: escape 286 | altNegativeButton: 287 | altPositiveButton: joystick button 1 288 | gravity: 1000 289 | dead: 0.001 290 | sensitivity: 1000 291 | snap: 0 292 | invert: 0 293 | type: 0 294 | axis: 0 295 | joyNum: 0 296 | -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!126 &1 4 | NavMeshProjectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 2 7 | areas: 8 | - name: Walkable 9 | cost: 1 10 | - name: Not Walkable 11 | cost: 1 12 | - name: Jump 13 | cost: 2 14 | - name: 15 | cost: 1 16 | - name: 17 | cost: 1 18 | - name: 19 | cost: 1 20 | - name: 21 | cost: 1 22 | - name: 23 | cost: 1 24 | - name: 25 | cost: 1 26 | - name: 27 | cost: 1 28 | - name: 29 | cost: 1 30 | - name: 31 | cost: 1 32 | - name: 33 | cost: 1 34 | - name: 35 | cost: 1 36 | - name: 37 | cost: 1 38 | - name: 39 | cost: 1 40 | - name: 41 | cost: 1 42 | - name: 43 | cost: 1 44 | - name: 45 | cost: 1 46 | - name: 47 | cost: 1 48 | - name: 49 | cost: 1 50 | - name: 51 | cost: 1 52 | - name: 53 | cost: 1 54 | - name: 55 | cost: 1 56 | - name: 57 | cost: 1 58 | - name: 59 | cost: 1 60 | - name: 61 | cost: 1 62 | - name: 63 | cost: 1 64 | - name: 65 | cost: 1 66 | - name: 67 | cost: 1 68 | - name: 69 | cost: 1 70 | - name: 71 | cost: 1 72 | m_LastAgentTypeID: -887442657 73 | m_Settings: 74 | - serializedVersion: 2 75 | agentTypeID: 0 76 | agentRadius: 0.5 77 | agentHeight: 2 78 | agentSlope: 45 79 | agentClimb: 0.75 80 | ledgeDropHeight: 0 81 | maxJumpAcrossDistance: 0 82 | minRegionArea: 2 83 | manualCellSize: 0 84 | cellSize: 0.16666667 85 | manualTileSize: 0 86 | tileSize: 256 87 | accuratePlacement: 0 88 | debug: 89 | m_Flags: 0 90 | m_SettingNames: 91 | - Humanoid 92 | -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!114 &1 4 | MonoBehaviour: 5 | m_ObjectHideFlags: 61 6 | m_CorrespondingSourceObject: {fileID: 0} 7 | m_PrefabInstance: {fileID: 0} 8 | m_PrefabAsset: {fileID: 0} 9 | m_GameObject: {fileID: 0} 10 | m_Enabled: 1 11 | m_EditorHideFlags: 0 12 | m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0} 13 | m_Name: 14 | m_EditorClassIdentifier: 15 | m_EnablePreviewPackages: 0 16 | m_EnablePackageDependencies: 0 17 | m_AdvancedSettingsExpanded: 1 18 | m_ScopedRegistriesSettingsExpanded: 1 19 | oneTimeWarningShown: 0 20 | m_Registries: 21 | - m_Id: main 22 | m_Name: 23 | m_Url: https://packages.unity.com 24 | m_Scopes: [] 25 | m_IsDefault: 1 26 | m_Capabilities: 7 27 | - m_Id: scoped:hecomi 28 | m_Name: hecomi 29 | m_Url: https://registry.npmjs.com 30 | m_Scopes: 31 | - com.hecomi 32 | m_IsDefault: 0 33 | m_Capabilities: 0 34 | m_UserSelectedRegistryName: hecomi 35 | m_UserAddingNewScopedRegistry: 0 36 | m_RegistryInfoDraft: 37 | m_ErrorMessage: 38 | m_Original: 39 | m_Id: scoped:hecomi 40 | m_Name: hecomi 41 | m_Url: https://registry.npmjs.com 42 | m_Scopes: 43 | - com.hecomi 44 | m_IsDefault: 0 45 | m_Capabilities: 0 46 | m_Modified: 0 47 | m_Name: hecomi 48 | m_Url: https://registry.npmjs.com 49 | m_Scopes: 50 | - com.hecomi 51 | m_SelectedScopeIndex: 0 52 | -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!19 &1 4 | Physics2DSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 4 7 | m_Gravity: {x: 0, y: -9.81} 8 | m_DefaultMaterial: {fileID: 0} 9 | m_VelocityIterations: 8 10 | m_PositionIterations: 3 11 | m_VelocityThreshold: 1 12 | m_MaxLinearCorrection: 0.2 13 | m_MaxAngularCorrection: 8 14 | m_MaxTranslationSpeed: 100 15 | m_MaxRotationSpeed: 360 16 | m_BaumgarteScale: 0.2 17 | m_BaumgarteTimeOfImpactScale: 0.75 18 | m_TimeToSleep: 0.5 19 | m_LinearSleepTolerance: 0.01 20 | m_AngularSleepTolerance: 2 21 | m_DefaultContactOffset: 0.01 22 | m_JobOptions: 23 | serializedVersion: 2 24 | useMultithreading: 0 25 | useConsistencySorting: 0 26 | m_InterpolationPosesPerJob: 100 27 | m_NewContactsPerJob: 30 28 | m_CollideContactsPerJob: 100 29 | m_ClearFlagsPerJob: 200 30 | m_ClearBodyForcesPerJob: 200 31 | m_SyncDiscreteFixturesPerJob: 50 32 | m_SyncContinuousFixturesPerJob: 50 33 | m_FindNearestContactsPerJob: 100 34 | m_UpdateTriggerContactsPerJob: 100 35 | m_IslandSolverCostThreshold: 100 36 | m_IslandSolverBodyCostScale: 1 37 | m_IslandSolverContactCostScale: 10 38 | m_IslandSolverJointCostScale: 10 39 | m_IslandSolverBodiesPerJob: 50 40 | m_IslandSolverContactsPerJob: 50 41 | m_AutoSimulation: 1 42 | m_QueriesHitTriggers: 1 43 | m_QueriesStartInColliders: 1 44 | m_CallbacksOnDisable: 1 45 | m_ReuseCollisionCallbacks: 1 46 | m_AutoSyncTransforms: 0 47 | m_AlwaysShowColliders: 0 48 | m_ShowColliderSleep: 1 49 | m_ShowColliderContacts: 0 50 | m_ShowColliderAABB: 0 51 | m_ContactArrowScale: 0.2 52 | m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} 53 | m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} 54 | m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} 55 | m_ColliderAABBColor: {r: 1, g: 1, b: 0, a: 0.2509804} 56 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 57 | -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!1386491679 &1 4 | PresetManager: 5 | m_ObjectHideFlags: 0 6 | m_DefaultList: [] 7 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!129 &1 4 | PlayerSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 20 7 | productGUID: d9f98eae14e16e248a37d4ff02f60f6c 8 | AndroidProfiler: 0 9 | AndroidFilterTouchesWhenObscured: 0 10 | AndroidEnableSustainedPerformanceMode: 0 11 | defaultScreenOrientation: 4 12 | targetDevice: 2 13 | useOnDemandResources: 0 14 | accelerometerFrequency: 60 15 | companyName: hecomi 16 | productName: UnityRemoteDesktopDuplication 17 | defaultCursor: {fileID: 0} 18 | cursorHotspot: {x: 0, y: 0} 19 | m_SplashScreenBackgroundColor: {r: 0.13725491, g: 0.12156863, b: 0.1254902, a: 1} 20 | m_ShowUnitySplashScreen: 1 21 | m_ShowUnitySplashLogo: 1 22 | m_SplashScreenOverlayOpacity: 1 23 | m_SplashScreenAnimation: 1 24 | m_SplashScreenLogoStyle: 1 25 | m_SplashScreenDrawMode: 0 26 | m_SplashScreenBackgroundAnimationZoom: 1 27 | m_SplashScreenLogoAnimationZoom: 1 28 | m_SplashScreenBackgroundLandscapeAspect: 1 29 | m_SplashScreenBackgroundPortraitAspect: 1 30 | m_SplashScreenBackgroundLandscapeUvs: 31 | serializedVersion: 2 32 | x: 0 33 | y: 0 34 | width: 1 35 | height: 1 36 | m_SplashScreenBackgroundPortraitUvs: 37 | serializedVersion: 2 38 | x: 0 39 | y: 0 40 | width: 1 41 | height: 1 42 | m_SplashScreenLogos: [] 43 | m_VirtualRealitySplashScreen: {fileID: 0} 44 | m_HolographicTrackingLossScreen: {fileID: 0} 45 | defaultScreenWidth: 1920 46 | defaultScreenHeight: 1080 47 | defaultScreenWidthWeb: 960 48 | defaultScreenHeightWeb: 600 49 | m_StereoRenderingPath: 0 50 | m_ActiveColorSpace: 0 51 | m_MTRendering: 1 52 | m_StackTraceTypes: 010000000100000001000000010000000100000001000000 53 | iosShowActivityIndicatorOnLoading: -1 54 | androidShowActivityIndicatorOnLoading: -1 55 | iosUseCustomAppBackgroundBehavior: 0 56 | iosAllowHTTPDownload: 1 57 | allowedAutorotateToPortrait: 1 58 | allowedAutorotateToPortraitUpsideDown: 1 59 | allowedAutorotateToLandscapeRight: 1 60 | allowedAutorotateToLandscapeLeft: 1 61 | useOSAutorotation: 1 62 | use32BitDisplayBuffer: 1 63 | preserveFramebufferAlpha: 0 64 | disableDepthAndStencilBuffers: 0 65 | androidStartInFullscreen: 1 66 | androidRenderOutsideSafeArea: 1 67 | androidUseSwappy: 0 68 | androidBlitType: 0 69 | defaultIsNativeResolution: 1 70 | macRetinaSupport: 1 71 | runInBackground: 1 72 | captureSingleScreen: 0 73 | muteOtherAudioSources: 0 74 | Prepare IOS For Recording: 0 75 | Force IOS Speakers When Recording: 0 76 | deferSystemGesturesMode: 0 77 | hideHomeButton: 0 78 | submitAnalytics: 1 79 | usePlayerLog: 1 80 | bakeCollisionMeshes: 0 81 | forceSingleInstance: 0 82 | useFlipModelSwapchain: 1 83 | resizableWindow: 0 84 | useMacAppStoreValidation: 0 85 | macAppStoreCategory: public.app-category.games 86 | gpuSkinning: 1 87 | xboxPIXTextureCapture: 0 88 | xboxEnableAvatar: 0 89 | xboxEnableKinect: 0 90 | xboxEnableKinectAutoTracking: 0 91 | xboxEnableFitness: 0 92 | visibleInBackground: 1 93 | allowFullscreenSwitch: 1 94 | fullscreenMode: 3 95 | xboxSpeechDB: 0 96 | xboxEnableHeadOrientation: 0 97 | xboxEnableGuest: 0 98 | xboxEnablePIXSampling: 0 99 | metalFramebufferOnly: 0 100 | xboxOneResolution: 0 101 | xboxOneSResolution: 0 102 | xboxOneXResolution: 3 103 | xboxOneMonoLoggingLevel: 0 104 | xboxOneLoggingLevel: 1 105 | xboxOneDisableEsram: 0 106 | xboxOnePresentImmediateThreshold: 0 107 | switchQueueCommandMemory: 0 108 | switchQueueControlMemory: 16384 109 | switchQueueComputeMemory: 262144 110 | switchNVNShaderPoolsGranularity: 33554432 111 | switchNVNDefaultPoolsGranularity: 16777216 112 | switchNVNOtherPoolsGranularity: 16777216 113 | vulkanNumSwapchainBuffers: 3 114 | vulkanEnableSetSRGBWrite: 0 115 | m_SupportedAspectRatios: 116 | 4:3: 1 117 | 5:4: 1 118 | 16:10: 1 119 | 16:9: 1 120 | Others: 1 121 | bundleVersion: 0.1 122 | preloadedAssets: [] 123 | metroInputSource: 0 124 | wsaTransparentSwapchain: 0 125 | m_HolographicPauseOnTrackingLoss: 1 126 | xboxOneDisableKinectGpuReservation: 1 127 | xboxOneEnable7thCore: 1 128 | vrSettings: 129 | cardboard: 130 | depthFormat: 0 131 | enableTransitionView: 0 132 | daydream: 133 | depthFormat: 0 134 | useSustainedPerformanceMode: 0 135 | enableVideoLayer: 0 136 | useProtectedVideoMemory: 0 137 | minimumSupportedHeadTracking: 0 138 | maximumSupportedHeadTracking: 1 139 | hololens: 140 | depthFormat: 1 141 | depthBufferSharingEnabled: 1 142 | lumin: 143 | depthFormat: 0 144 | frameTiming: 2 145 | enableGLCache: 0 146 | glCacheMaxBlobSize: 524288 147 | glCacheMaxFileSize: 8388608 148 | oculus: 149 | sharedDepthBuffer: 1 150 | dashSupport: 1 151 | lowOverheadMode: 0 152 | protectedContext: 0 153 | v2Signing: 1 154 | enable360StereoCapture: 0 155 | isWsaHolographicRemotingEnabled: 0 156 | enableFrameTimingStats: 0 157 | useHDRDisplay: 0 158 | D3DHDRBitDepth: 0 159 | m_ColorGamuts: 00000000 160 | targetPixelDensity: 30 161 | resolutionScalingMode: 0 162 | androidSupportedAspectRatio: 1 163 | androidMaxAspectRatio: 2.1 164 | applicationIdentifier: {} 165 | buildNumber: {} 166 | AndroidBundleVersionCode: 1 167 | AndroidMinSdkVersion: 19 168 | AndroidTargetSdkVersion: 0 169 | AndroidPreferredInstallLocation: 1 170 | aotOptions: 171 | stripEngineCode: 1 172 | iPhoneStrippingLevel: 0 173 | iPhoneScriptCallOptimization: 0 174 | ForceInternetPermission: 0 175 | ForceSDCardPermission: 0 176 | CreateWallpaper: 0 177 | APKExpansionFiles: 0 178 | keepLoadedShadersAlive: 0 179 | StripUnusedMeshComponents: 1 180 | VertexChannelCompressionMask: 4054 181 | iPhoneSdkVersion: 988 182 | iOSTargetOSVersionString: 10.0 183 | tvOSSdkVersion: 0 184 | tvOSRequireExtendedGameController: 0 185 | tvOSTargetOSVersionString: 10.0 186 | uIPrerenderedIcon: 0 187 | uIRequiresPersistentWiFi: 0 188 | uIRequiresFullScreen: 1 189 | uIStatusBarHidden: 1 190 | uIExitOnSuspend: 0 191 | uIStatusBarStyle: 0 192 | iPhoneSplashScreen: {fileID: 0} 193 | iPhoneHighResSplashScreen: {fileID: 0} 194 | iPhoneTallHighResSplashScreen: {fileID: 0} 195 | iPhone47inSplashScreen: {fileID: 0} 196 | iPhone55inPortraitSplashScreen: {fileID: 0} 197 | iPhone55inLandscapeSplashScreen: {fileID: 0} 198 | iPhone58inPortraitSplashScreen: {fileID: 0} 199 | iPhone58inLandscapeSplashScreen: {fileID: 0} 200 | iPadPortraitSplashScreen: {fileID: 0} 201 | iPadHighResPortraitSplashScreen: {fileID: 0} 202 | iPadLandscapeSplashScreen: {fileID: 0} 203 | iPadHighResLandscapeSplashScreen: {fileID: 0} 204 | iPhone65inPortraitSplashScreen: {fileID: 0} 205 | iPhone65inLandscapeSplashScreen: {fileID: 0} 206 | iPhone61inPortraitSplashScreen: {fileID: 0} 207 | iPhone61inLandscapeSplashScreen: {fileID: 0} 208 | appleTVSplashScreen: {fileID: 0} 209 | appleTVSplashScreen2x: {fileID: 0} 210 | tvOSSmallIconLayers: [] 211 | tvOSSmallIconLayers2x: [] 212 | tvOSLargeIconLayers: [] 213 | tvOSLargeIconLayers2x: [] 214 | tvOSTopShelfImageLayers: [] 215 | tvOSTopShelfImageLayers2x: [] 216 | tvOSTopShelfImageWideLayers: [] 217 | tvOSTopShelfImageWideLayers2x: [] 218 | iOSLaunchScreenType: 0 219 | iOSLaunchScreenPortrait: {fileID: 0} 220 | iOSLaunchScreenLandscape: {fileID: 0} 221 | iOSLaunchScreenBackgroundColor: 222 | serializedVersion: 2 223 | rgba: 0 224 | iOSLaunchScreenFillPct: 100 225 | iOSLaunchScreenSize: 100 226 | iOSLaunchScreenCustomXibPath: 227 | iOSLaunchScreeniPadType: 0 228 | iOSLaunchScreeniPadImage: {fileID: 0} 229 | iOSLaunchScreeniPadBackgroundColor: 230 | serializedVersion: 2 231 | rgba: 0 232 | iOSLaunchScreeniPadFillPct: 100 233 | iOSLaunchScreeniPadSize: 100 234 | iOSLaunchScreeniPadCustomXibPath: 235 | iOSUseLaunchScreenStoryboard: 0 236 | iOSLaunchScreenCustomStoryboardPath: 237 | iOSDeviceRequirements: [] 238 | iOSURLSchemes: [] 239 | iOSBackgroundModes: 0 240 | iOSMetalForceHardShadows: 0 241 | metalEditorSupport: 1 242 | metalAPIValidation: 1 243 | iOSRenderExtraFrameOnPause: 0 244 | appleDeveloperTeamID: 245 | iOSManualSigningProvisioningProfileID: 246 | tvOSManualSigningProvisioningProfileID: 247 | iOSManualSigningProvisioningProfileType: 0 248 | tvOSManualSigningProvisioningProfileType: 0 249 | appleEnableAutomaticSigning: 0 250 | iOSRequireARKit: 0 251 | iOSAutomaticallyDetectAndAddCapabilities: 1 252 | appleEnableProMotion: 0 253 | clonedFromGUID: c0afd0d1d80e3634a9dac47e8a0426ea 254 | templatePackageId: com.unity.template.3d@2.3.3 255 | templateDefaultScene: Assets/Scenes/SampleScene.unity 256 | AndroidTargetArchitectures: 1 257 | AndroidSplashScreenScale: 0 258 | androidSplashScreen: {fileID: 0} 259 | AndroidKeystoreName: '{inproject}: ' 260 | AndroidKeyaliasName: 261 | AndroidBuildApkPerCpuArchitecture: 0 262 | AndroidTVCompatibility: 0 263 | AndroidIsGame: 1 264 | AndroidEnableTango: 0 265 | androidEnableBanner: 1 266 | androidUseLowAccuracyLocation: 0 267 | androidUseCustomKeystore: 0 268 | m_AndroidBanners: 269 | - width: 320 270 | height: 180 271 | banner: {fileID: 0} 272 | androidGamepadSupportLevel: 0 273 | AndroidValidateAppBundleSize: 1 274 | AndroidAppBundleSizeToValidate: 150 275 | m_BuildTargetIcons: [] 276 | m_BuildTargetPlatformIcons: [] 277 | m_BuildTargetBatching: 278 | - m_BuildTarget: Standalone 279 | m_StaticBatching: 1 280 | m_DynamicBatching: 0 281 | - m_BuildTarget: tvOS 282 | m_StaticBatching: 1 283 | m_DynamicBatching: 0 284 | - m_BuildTarget: Android 285 | m_StaticBatching: 1 286 | m_DynamicBatching: 0 287 | - m_BuildTarget: iPhone 288 | m_StaticBatching: 1 289 | m_DynamicBatching: 0 290 | - m_BuildTarget: WebGL 291 | m_StaticBatching: 0 292 | m_DynamicBatching: 0 293 | m_BuildTargetGraphicsJobs: 294 | - m_BuildTarget: MacStandaloneSupport 295 | m_GraphicsJobs: 0 296 | - m_BuildTarget: Switch 297 | m_GraphicsJobs: 0 298 | - m_BuildTarget: MetroSupport 299 | m_GraphicsJobs: 0 300 | - m_BuildTarget: AppleTVSupport 301 | m_GraphicsJobs: 0 302 | - m_BuildTarget: BJMSupport 303 | m_GraphicsJobs: 0 304 | - m_BuildTarget: LinuxStandaloneSupport 305 | m_GraphicsJobs: 0 306 | - m_BuildTarget: PS4Player 307 | m_GraphicsJobs: 0 308 | - m_BuildTarget: iOSSupport 309 | m_GraphicsJobs: 0 310 | - m_BuildTarget: WindowsStandaloneSupport 311 | m_GraphicsJobs: 0 312 | - m_BuildTarget: XboxOnePlayer 313 | m_GraphicsJobs: 0 314 | - m_BuildTarget: LuminSupport 315 | m_GraphicsJobs: 0 316 | - m_BuildTarget: AndroidPlayer 317 | m_GraphicsJobs: 0 318 | - m_BuildTarget: WebGLSupport 319 | m_GraphicsJobs: 0 320 | m_BuildTargetGraphicsJobMode: 321 | - m_BuildTarget: PS4Player 322 | m_GraphicsJobMode: 0 323 | - m_BuildTarget: XboxOnePlayer 324 | m_GraphicsJobMode: 0 325 | m_BuildTargetGraphicsAPIs: 326 | - m_BuildTarget: AndroidPlayer 327 | m_APIs: 150000000b000000 328 | m_Automatic: 0 329 | - m_BuildTarget: iOSSupport 330 | m_APIs: 10000000 331 | m_Automatic: 1 332 | - m_BuildTarget: AppleTVSupport 333 | m_APIs: 10000000 334 | m_Automatic: 0 335 | - m_BuildTarget: WebGLSupport 336 | m_APIs: 0b000000 337 | m_Automatic: 1 338 | m_BuildTargetVRSettings: 339 | - m_BuildTarget: Standalone 340 | m_Enabled: 0 341 | m_Devices: 342 | - Oculus 343 | - OpenVR 344 | openGLRequireES31: 0 345 | openGLRequireES31AEP: 0 346 | openGLRequireES32: 0 347 | m_TemplateCustomTags: {} 348 | mobileMTRendering: 349 | Android: 1 350 | iPhone: 1 351 | tvOS: 1 352 | m_BuildTargetGroupLightmapEncodingQuality: [] 353 | m_BuildTargetGroupLightmapSettings: [] 354 | playModeTestRunnerEnabled: 0 355 | runPlayModeTestAsEditModeTest: 0 356 | actionOnDotNetUnhandledException: 1 357 | enableInternalProfiler: 0 358 | logObjCUncaughtExceptions: 1 359 | enableCrashReportAPI: 0 360 | cameraUsageDescription: 361 | locationUsageDescription: 362 | microphoneUsageDescription: 363 | switchNetLibKey: 364 | switchSocketMemoryPoolSize: 6144 365 | switchSocketAllocatorPoolSize: 128 366 | switchSocketConcurrencyLimit: 14 367 | switchScreenResolutionBehavior: 2 368 | switchUseCPUProfiler: 0 369 | switchApplicationID: 0x01004b9000490000 370 | switchNSODependencies: 371 | switchTitleNames_0: 372 | switchTitleNames_1: 373 | switchTitleNames_2: 374 | switchTitleNames_3: 375 | switchTitleNames_4: 376 | switchTitleNames_5: 377 | switchTitleNames_6: 378 | switchTitleNames_7: 379 | switchTitleNames_8: 380 | switchTitleNames_9: 381 | switchTitleNames_10: 382 | switchTitleNames_11: 383 | switchTitleNames_12: 384 | switchTitleNames_13: 385 | switchTitleNames_14: 386 | switchPublisherNames_0: 387 | switchPublisherNames_1: 388 | switchPublisherNames_2: 389 | switchPublisherNames_3: 390 | switchPublisherNames_4: 391 | switchPublisherNames_5: 392 | switchPublisherNames_6: 393 | switchPublisherNames_7: 394 | switchPublisherNames_8: 395 | switchPublisherNames_9: 396 | switchPublisherNames_10: 397 | switchPublisherNames_11: 398 | switchPublisherNames_12: 399 | switchPublisherNames_13: 400 | switchPublisherNames_14: 401 | switchIcons_0: {fileID: 0} 402 | switchIcons_1: {fileID: 0} 403 | switchIcons_2: {fileID: 0} 404 | switchIcons_3: {fileID: 0} 405 | switchIcons_4: {fileID: 0} 406 | switchIcons_5: {fileID: 0} 407 | switchIcons_6: {fileID: 0} 408 | switchIcons_7: {fileID: 0} 409 | switchIcons_8: {fileID: 0} 410 | switchIcons_9: {fileID: 0} 411 | switchIcons_10: {fileID: 0} 412 | switchIcons_11: {fileID: 0} 413 | switchIcons_12: {fileID: 0} 414 | switchIcons_13: {fileID: 0} 415 | switchIcons_14: {fileID: 0} 416 | switchSmallIcons_0: {fileID: 0} 417 | switchSmallIcons_1: {fileID: 0} 418 | switchSmallIcons_2: {fileID: 0} 419 | switchSmallIcons_3: {fileID: 0} 420 | switchSmallIcons_4: {fileID: 0} 421 | switchSmallIcons_5: {fileID: 0} 422 | switchSmallIcons_6: {fileID: 0} 423 | switchSmallIcons_7: {fileID: 0} 424 | switchSmallIcons_8: {fileID: 0} 425 | switchSmallIcons_9: {fileID: 0} 426 | switchSmallIcons_10: {fileID: 0} 427 | switchSmallIcons_11: {fileID: 0} 428 | switchSmallIcons_12: {fileID: 0} 429 | switchSmallIcons_13: {fileID: 0} 430 | switchSmallIcons_14: {fileID: 0} 431 | switchManualHTML: 432 | switchAccessibleURLs: 433 | switchLegalInformation: 434 | switchMainThreadStackSize: 1048576 435 | switchPresenceGroupId: 436 | switchLogoHandling: 0 437 | switchReleaseVersion: 0 438 | switchDisplayVersion: 1.0.0 439 | switchStartupUserAccount: 0 440 | switchTouchScreenUsage: 0 441 | switchSupportedLanguagesMask: 0 442 | switchLogoType: 0 443 | switchApplicationErrorCodeCategory: 444 | switchUserAccountSaveDataSize: 0 445 | switchUserAccountSaveDataJournalSize: 0 446 | switchApplicationAttribute: 0 447 | switchCardSpecSize: -1 448 | switchCardSpecClock: -1 449 | switchRatingsMask: 0 450 | switchRatingsInt_0: 0 451 | switchRatingsInt_1: 0 452 | switchRatingsInt_2: 0 453 | switchRatingsInt_3: 0 454 | switchRatingsInt_4: 0 455 | switchRatingsInt_5: 0 456 | switchRatingsInt_6: 0 457 | switchRatingsInt_7: 0 458 | switchRatingsInt_8: 0 459 | switchRatingsInt_9: 0 460 | switchRatingsInt_10: 0 461 | switchRatingsInt_11: 0 462 | switchRatingsInt_12: 0 463 | switchLocalCommunicationIds_0: 464 | switchLocalCommunicationIds_1: 465 | switchLocalCommunicationIds_2: 466 | switchLocalCommunicationIds_3: 467 | switchLocalCommunicationIds_4: 468 | switchLocalCommunicationIds_5: 469 | switchLocalCommunicationIds_6: 470 | switchLocalCommunicationIds_7: 471 | switchParentalControl: 0 472 | switchAllowsScreenshot: 1 473 | switchAllowsVideoCapturing: 1 474 | switchAllowsRuntimeAddOnContentInstall: 0 475 | switchDataLossConfirmation: 0 476 | switchUserAccountLockEnabled: 0 477 | switchSystemResourceMemory: 16777216 478 | switchSupportedNpadStyles: 3 479 | switchNativeFsCacheSize: 32 480 | switchIsHoldTypeHorizontal: 0 481 | switchSupportedNpadCount: 8 482 | switchSocketConfigEnabled: 0 483 | switchTcpInitialSendBufferSize: 32 484 | switchTcpInitialReceiveBufferSize: 64 485 | switchTcpAutoSendBufferSizeMax: 256 486 | switchTcpAutoReceiveBufferSizeMax: 256 487 | switchUdpSendBufferSize: 9 488 | switchUdpReceiveBufferSize: 42 489 | switchSocketBufferEfficiency: 4 490 | switchSocketInitializeEnabled: 1 491 | switchNetworkInterfaceManagerInitializeEnabled: 1 492 | switchPlayerConnectionEnabled: 1 493 | ps4NPAgeRating: 12 494 | ps4NPTitleSecret: 495 | ps4NPTrophyPackPath: 496 | ps4ParentalLevel: 11 497 | ps4ContentID: ED1633-NPXX51362_00-0000000000000000 498 | ps4Category: 0 499 | ps4MasterVersion: 01.00 500 | ps4AppVersion: 01.00 501 | ps4AppType: 0 502 | ps4ParamSfxPath: 503 | ps4VideoOutPixelFormat: 0 504 | ps4VideoOutInitialWidth: 1920 505 | ps4VideoOutBaseModeInitialWidth: 1920 506 | ps4VideoOutReprojectionRate: 60 507 | ps4PronunciationXMLPath: 508 | ps4PronunciationSIGPath: 509 | ps4BackgroundImagePath: 510 | ps4StartupImagePath: 511 | ps4StartupImagesFolder: 512 | ps4IconImagesFolder: 513 | ps4SaveDataImagePath: 514 | ps4SdkOverride: 515 | ps4BGMPath: 516 | ps4ShareFilePath: 517 | ps4ShareOverlayImagePath: 518 | ps4PrivacyGuardImagePath: 519 | ps4NPtitleDatPath: 520 | ps4RemotePlayKeyAssignment: -1 521 | ps4RemotePlayKeyMappingDir: 522 | ps4PlayTogetherPlayerCount: 0 523 | ps4EnterButtonAssignment: 1 524 | ps4ApplicationParam1: 0 525 | ps4ApplicationParam2: 0 526 | ps4ApplicationParam3: 0 527 | ps4ApplicationParam4: 0 528 | ps4DownloadDataSize: 0 529 | ps4GarlicHeapSize: 2048 530 | ps4ProGarlicHeapSize: 2560 531 | playerPrefsMaxSize: 32768 532 | ps4Passcode: frAQBc8Wsa1xVPfvJcrgRYwTiizs2trQ 533 | ps4pnSessions: 1 534 | ps4pnPresence: 1 535 | ps4pnFriends: 1 536 | ps4pnGameCustomData: 1 537 | playerPrefsSupport: 0 538 | enableApplicationExit: 0 539 | resetTempFolder: 1 540 | restrictedAudioUsageRights: 0 541 | ps4UseResolutionFallback: 0 542 | ps4ReprojectionSupport: 0 543 | ps4UseAudio3dBackend: 0 544 | ps4SocialScreenEnabled: 0 545 | ps4ScriptOptimizationLevel: 0 546 | ps4Audio3dVirtualSpeakerCount: 14 547 | ps4attribCpuUsage: 0 548 | ps4PatchPkgPath: 549 | ps4PatchLatestPkgPath: 550 | ps4PatchChangeinfoPath: 551 | ps4PatchDayOne: 0 552 | ps4attribUserManagement: 0 553 | ps4attribMoveSupport: 0 554 | ps4attrib3DSupport: 0 555 | ps4attribShareSupport: 0 556 | ps4attribExclusiveVR: 0 557 | ps4disableAutoHideSplash: 0 558 | ps4videoRecordingFeaturesUsed: 0 559 | ps4contentSearchFeaturesUsed: 0 560 | ps4attribEyeToEyeDistanceSettingVR: 0 561 | ps4IncludedModules: [] 562 | ps4attribVROutputEnabled: 0 563 | monoEnv: 564 | splashScreenBackgroundSourceLandscape: {fileID: 0} 565 | splashScreenBackgroundSourcePortrait: {fileID: 0} 566 | blurSplashScreenBackground: 1 567 | spritePackerPolicy: 568 | webGLMemorySize: 16 569 | webGLExceptionSupport: 1 570 | webGLNameFilesAsHashes: 0 571 | webGLDataCaching: 1 572 | webGLDebugSymbols: 0 573 | webGLEmscriptenArgs: 574 | webGLModulesDirectory: 575 | webGLTemplate: APPLICATION:Default 576 | webGLAnalyzeBuildSize: 0 577 | webGLUseEmbeddedResources: 0 578 | webGLCompressionFormat: 1 579 | webGLLinkerTarget: 1 580 | webGLThreadsSupport: 0 581 | webGLWasmStreaming: 0 582 | scriptingDefineSymbols: {} 583 | platformArchitecture: {} 584 | scriptingBackend: {} 585 | il2cppCompilerConfiguration: {} 586 | managedStrippingLevel: {} 587 | incrementalIl2cppBuild: {} 588 | allowUnsafeCode: 0 589 | additionalIl2CppArgs: 590 | scriptingRuntimeVersion: 1 591 | gcIncremental: 0 592 | gcWBarrierValidation: 0 593 | apiCompatibilityLevelPerPlatform: {} 594 | m_RenderingPath: 1 595 | m_MobileRenderingPath: 1 596 | metroPackageName: Template_3D 597 | metroPackageVersion: 598 | metroCertificatePath: 599 | metroCertificatePassword: 600 | metroCertificateSubject: 601 | metroCertificateIssuer: 602 | metroCertificateNotAfter: 0000000000000000 603 | metroApplicationDescription: Template_3D 604 | wsaImages: {} 605 | metroTileShortName: 606 | metroTileShowName: 0 607 | metroMediumTileShowName: 0 608 | metroLargeTileShowName: 0 609 | metroWideTileShowName: 0 610 | metroSupportStreamingInstall: 0 611 | metroLastRequiredScene: 0 612 | metroDefaultTileSize: 1 613 | metroTileForegroundText: 2 614 | metroTileBackgroundColor: {r: 0.13333334, g: 0.17254902, b: 0.21568628, a: 0} 615 | metroSplashScreenBackgroundColor: {r: 0.12941177, g: 0.17254902, b: 0.21568628, 616 | a: 1} 617 | metroSplashScreenUseBackgroundColor: 0 618 | platformCapabilities: {} 619 | metroTargetDeviceFamilies: {} 620 | metroFTAName: 621 | metroFTAFileTypes: [] 622 | metroProtocolName: 623 | XboxOneProductId: 624 | XboxOneUpdateKey: 625 | XboxOneSandboxId: 626 | XboxOneContentId: 627 | XboxOneTitleId: 628 | XboxOneSCId: 629 | XboxOneGameOsOverridePath: 630 | XboxOnePackagingOverridePath: 631 | XboxOneAppManifestOverridePath: 632 | XboxOneVersion: 1.0.0.0 633 | XboxOnePackageEncryption: 0 634 | XboxOnePackageUpdateGranularity: 2 635 | XboxOneDescription: 636 | XboxOneLanguage: 637 | - enus 638 | XboxOneCapability: [] 639 | XboxOneGameRating: {} 640 | XboxOneIsContentPackage: 0 641 | XboxOneEnableGPUVariability: 1 642 | XboxOneSockets: {} 643 | XboxOneSplashScreen: {fileID: 0} 644 | XboxOneAllowedProductIds: [] 645 | XboxOnePersistentLocalStorageSize: 0 646 | XboxOneXTitleMemory: 8 647 | XboxOneOverrideIdentityName: 648 | vrEditorSettings: 649 | daydream: 650 | daydreamIconForeground: {fileID: 0} 651 | daydreamIconBackground: {fileID: 0} 652 | cloudServicesEnabled: 653 | UNet: 1 654 | luminIcon: 655 | m_Name: 656 | m_ModelFolderPath: 657 | m_PortalFolderPath: 658 | luminCert: 659 | m_CertPath: 660 | m_SignPackage: 1 661 | luminIsChannelApp: 0 662 | luminVersion: 663 | m_VersionCode: 1 664 | m_VersionName: 665 | apiCompatibilityLevel: 6 666 | cloudProjectId: 667 | framebufferDepthMemorylessMode: 0 668 | projectName: 669 | organizationId: 670 | cloudEnabled: 0 671 | enableNativePlatformBackendsForNewInputSystem: 0 672 | disableOldInputManagerSupport: 0 673 | legacyClampBlendShapeWeights: 0 674 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2020.3.23f1 2 | m_EditorVersionWithRevision: 2020.3.23f1 (c5d91304a876) 3 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!47 &1 4 | QualitySettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 5 7 | m_CurrentQuality: 5 8 | m_QualitySettings: 9 | - serializedVersion: 2 10 | name: Very Low 11 | pixelLightCount: 0 12 | shadows: 0 13 | shadowResolution: 0 14 | shadowProjection: 1 15 | shadowCascades: 1 16 | shadowDistance: 15 17 | shadowNearPlaneOffset: 3 18 | shadowCascade2Split: 0.33333334 19 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 20 | shadowmaskMode: 0 21 | blendWeights: 1 22 | textureQuality: 1 23 | anisotropicTextures: 0 24 | antiAliasing: 0 25 | softParticles: 0 26 | softVegetation: 0 27 | realtimeReflectionProbes: 0 28 | billboardsFaceCameraPosition: 0 29 | vSyncCount: 0 30 | lodBias: 0.3 31 | maximumLODLevel: 0 32 | streamingMipmapsActive: 0 33 | streamingMipmapsAddAllCameras: 1 34 | streamingMipmapsMemoryBudget: 512 35 | streamingMipmapsRenderersPerFrame: 512 36 | streamingMipmapsMaxLevelReduction: 2 37 | streamingMipmapsMaxFileIORequests: 1024 38 | particleRaycastBudget: 4 39 | asyncUploadTimeSlice: 2 40 | asyncUploadBufferSize: 16 41 | asyncUploadPersistentBuffer: 1 42 | resolutionScalingFixedDPIFactor: 1 43 | excludedTargetPlatforms: [] 44 | - serializedVersion: 2 45 | name: Low 46 | pixelLightCount: 0 47 | shadows: 0 48 | shadowResolution: 0 49 | shadowProjection: 1 50 | shadowCascades: 1 51 | shadowDistance: 20 52 | shadowNearPlaneOffset: 3 53 | shadowCascade2Split: 0.33333334 54 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 55 | shadowmaskMode: 0 56 | blendWeights: 2 57 | textureQuality: 0 58 | anisotropicTextures: 0 59 | antiAliasing: 0 60 | softParticles: 0 61 | softVegetation: 0 62 | realtimeReflectionProbes: 0 63 | billboardsFaceCameraPosition: 0 64 | vSyncCount: 0 65 | lodBias: 0.4 66 | maximumLODLevel: 0 67 | streamingMipmapsActive: 0 68 | streamingMipmapsAddAllCameras: 1 69 | streamingMipmapsMemoryBudget: 512 70 | streamingMipmapsRenderersPerFrame: 512 71 | streamingMipmapsMaxLevelReduction: 2 72 | streamingMipmapsMaxFileIORequests: 1024 73 | particleRaycastBudget: 16 74 | asyncUploadTimeSlice: 2 75 | asyncUploadBufferSize: 16 76 | asyncUploadPersistentBuffer: 1 77 | resolutionScalingFixedDPIFactor: 1 78 | excludedTargetPlatforms: [] 79 | - serializedVersion: 2 80 | name: Medium 81 | pixelLightCount: 1 82 | shadows: 1 83 | shadowResolution: 0 84 | shadowProjection: 1 85 | shadowCascades: 1 86 | shadowDistance: 20 87 | shadowNearPlaneOffset: 3 88 | shadowCascade2Split: 0.33333334 89 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 90 | shadowmaskMode: 0 91 | blendWeights: 2 92 | textureQuality: 0 93 | anisotropicTextures: 1 94 | antiAliasing: 0 95 | softParticles: 0 96 | softVegetation: 0 97 | realtimeReflectionProbes: 0 98 | billboardsFaceCameraPosition: 0 99 | vSyncCount: 1 100 | lodBias: 0.7 101 | maximumLODLevel: 0 102 | streamingMipmapsActive: 0 103 | streamingMipmapsAddAllCameras: 1 104 | streamingMipmapsMemoryBudget: 512 105 | streamingMipmapsRenderersPerFrame: 512 106 | streamingMipmapsMaxLevelReduction: 2 107 | streamingMipmapsMaxFileIORequests: 1024 108 | particleRaycastBudget: 64 109 | asyncUploadTimeSlice: 2 110 | asyncUploadBufferSize: 16 111 | asyncUploadPersistentBuffer: 1 112 | resolutionScalingFixedDPIFactor: 1 113 | excludedTargetPlatforms: [] 114 | - serializedVersion: 2 115 | name: High 116 | pixelLightCount: 2 117 | shadows: 2 118 | shadowResolution: 1 119 | shadowProjection: 1 120 | shadowCascades: 2 121 | shadowDistance: 40 122 | shadowNearPlaneOffset: 3 123 | shadowCascade2Split: 0.33333334 124 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 125 | shadowmaskMode: 1 126 | blendWeights: 2 127 | textureQuality: 0 128 | anisotropicTextures: 1 129 | antiAliasing: 0 130 | softParticles: 0 131 | softVegetation: 1 132 | realtimeReflectionProbes: 1 133 | billboardsFaceCameraPosition: 1 134 | vSyncCount: 1 135 | lodBias: 1 136 | maximumLODLevel: 0 137 | streamingMipmapsActive: 0 138 | streamingMipmapsAddAllCameras: 1 139 | streamingMipmapsMemoryBudget: 512 140 | streamingMipmapsRenderersPerFrame: 512 141 | streamingMipmapsMaxLevelReduction: 2 142 | streamingMipmapsMaxFileIORequests: 1024 143 | particleRaycastBudget: 256 144 | asyncUploadTimeSlice: 2 145 | asyncUploadBufferSize: 16 146 | asyncUploadPersistentBuffer: 1 147 | resolutionScalingFixedDPIFactor: 1 148 | excludedTargetPlatforms: [] 149 | - serializedVersion: 2 150 | name: Very High 151 | pixelLightCount: 3 152 | shadows: 2 153 | shadowResolution: 2 154 | shadowProjection: 1 155 | shadowCascades: 2 156 | shadowDistance: 70 157 | shadowNearPlaneOffset: 3 158 | shadowCascade2Split: 0.33333334 159 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 160 | shadowmaskMode: 1 161 | blendWeights: 4 162 | textureQuality: 0 163 | anisotropicTextures: 2 164 | antiAliasing: 2 165 | softParticles: 1 166 | softVegetation: 1 167 | realtimeReflectionProbes: 1 168 | billboardsFaceCameraPosition: 1 169 | vSyncCount: 1 170 | lodBias: 1.5 171 | maximumLODLevel: 0 172 | streamingMipmapsActive: 0 173 | streamingMipmapsAddAllCameras: 1 174 | streamingMipmapsMemoryBudget: 512 175 | streamingMipmapsRenderersPerFrame: 512 176 | streamingMipmapsMaxLevelReduction: 2 177 | streamingMipmapsMaxFileIORequests: 1024 178 | particleRaycastBudget: 1024 179 | asyncUploadTimeSlice: 2 180 | asyncUploadBufferSize: 16 181 | asyncUploadPersistentBuffer: 1 182 | resolutionScalingFixedDPIFactor: 1 183 | excludedTargetPlatforms: [] 184 | - serializedVersion: 2 185 | name: Ultra 186 | pixelLightCount: 4 187 | shadows: 2 188 | shadowResolution: 2 189 | shadowProjection: 1 190 | shadowCascades: 4 191 | shadowDistance: 150 192 | shadowNearPlaneOffset: 3 193 | shadowCascade2Split: 0.33333334 194 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 195 | shadowmaskMode: 1 196 | blendWeights: 4 197 | textureQuality: 0 198 | anisotropicTextures: 2 199 | antiAliasing: 2 200 | softParticles: 1 201 | softVegetation: 1 202 | realtimeReflectionProbes: 1 203 | billboardsFaceCameraPosition: 1 204 | vSyncCount: 1 205 | lodBias: 2 206 | maximumLODLevel: 0 207 | streamingMipmapsActive: 0 208 | streamingMipmapsAddAllCameras: 1 209 | streamingMipmapsMemoryBudget: 512 210 | streamingMipmapsRenderersPerFrame: 512 211 | streamingMipmapsMaxLevelReduction: 2 212 | streamingMipmapsMaxFileIORequests: 1024 213 | particleRaycastBudget: 4096 214 | asyncUploadTimeSlice: 2 215 | asyncUploadBufferSize: 16 216 | asyncUploadPersistentBuffer: 1 217 | resolutionScalingFixedDPIFactor: 1 218 | excludedTargetPlatforms: [] 219 | m_PerPlatformDefaultQuality: 220 | Android: 2 221 | Lumin: 5 222 | Nintendo 3DS: 5 223 | Nintendo Switch: 5 224 | PS4: 5 225 | PSP2: 2 226 | Standalone: 5 227 | WebGL: 3 228 | Windows Store Apps: 5 229 | XboxOne: 5 230 | iPhone: 2 231 | tvOS: 2 232 | -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!78 &1 4 | TagManager: 5 | serializedVersion: 2 6 | tags: [] 7 | layers: 8 | - Default 9 | - TransparentFX 10 | - Ignore Raycast 11 | - 12 | - Water 13 | - UI 14 | - 15 | - 16 | - 17 | - 18 | - 19 | - 20 | - 21 | - 22 | - 23 | - 24 | - 25 | - 26 | - 27 | - 28 | - 29 | - 30 | - 31 | - 32 | - 33 | - 34 | - 35 | - 36 | - 37 | - 38 | - 39 | - 40 | m_SortingLayers: 41 | - name: Default 42 | uniqueID: 0 43 | locked: 0 44 | -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!5 &1 4 | TimeManager: 5 | m_ObjectHideFlags: 0 6 | Fixed Timestep: 0.02 7 | Maximum Allowed Timestep: 0.33333334 8 | m_TimeScale: 1 9 | Maximum Particle Timestep: 0.03 10 | -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!310 &1 4 | UnityConnectSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 1 7 | m_Enabled: 0 8 | m_TestMode: 0 9 | m_EventOldUrl: https://api.uca.cloud.unity3d.com/v1/events 10 | m_EventUrl: https://cdp.cloud.unity3d.com/v1/events 11 | m_ConfigUrl: https://config.uca.cloud.unity3d.com 12 | m_TestInitMode: 0 13 | CrashReportingSettings: 14 | m_EventUrl: https://perf-events.cloud.unity3d.com 15 | m_Enabled: 0 16 | m_LogBufferSize: 10 17 | m_CaptureEditorExceptions: 1 18 | UnityPurchasingSettings: 19 | m_Enabled: 0 20 | m_TestMode: 0 21 | UnityAnalyticsSettings: 22 | m_Enabled: 0 23 | m_TestMode: 0 24 | m_InitializeOnStartup: 1 25 | UnityAdsSettings: 26 | m_Enabled: 0 27 | m_InitializeOnStartup: 1 28 | m_TestMode: 0 29 | m_IosGameId: 30 | m_AndroidGameId: 31 | m_GameIds: {} 32 | m_GameId: 33 | PerformanceReportingSettings: 34 | m_Enabled: 0 35 | -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!937362698 &1 4 | VFXManager: 5 | m_ObjectHideFlags: 0 6 | m_IndirectShader: {fileID: 0} 7 | m_CopyBufferShader: {fileID: 0} 8 | m_SortShader: {fileID: 0} 9 | m_RenderPipeSettingsPath: 10 | m_FixedTimeStep: 0.016666668 11 | m_MaxDeltaTime: 0.05 12 | -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!890905787 &1 4 | VersionControlSettings: 5 | m_ObjectHideFlags: 0 6 | m_Mode: Visible Meta Files 7 | m_CollabEditorSettings: 8 | inProgressEnabled: 1 9 | -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- 1 | { 2 | "m_SettingKeys": [ 3 | "VR Device Disabled", 4 | "VR Device User Alert" 5 | ], 6 | "m_SettingValues": [ 7 | "False", 8 | "False" 9 | ] 10 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | UnityRemoteDesktopDuplication 2 | ============================= 3 | 4 | This is an example of sending a desktop image to a remote location. The image is captured by Desktop Duplication API and encoded using NVENC directly (NvPipe is not used to reduce the overhead for encoding). The buffer is then sent over UDP and decoded with NvPipe (NVDEC) in a remote location. 5 | 6 | Platforms 7 | --------- 8 | 9 | - Windows 10 10 | - Unity 2020.3.23f1 11 | - NVIDIA GPU that supports NVENC/NVDEC APIs 12 | 13 | 14 | Dependencies 15 | ------------ 16 | 17 | - [uDesktopDuplication](https://github.com/hecomi/uDesktopDuplication) 18 | - [uNvEncoder](https://github.com/hecomi/uNvEncoder) 19 | - [uNvPipe](https://github.com/hecomi/uNvPipe) 20 | - [uOSC](https://github.com/hecomi/uOSC) 21 | - [uPacketDivision](https://github.com/hecomi/uPacketDivision) 22 | 23 | 24 | Screenshot 25 | ---------- 26 | 27 | 28 | -------------------------------------------------------------------------------- /UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!162 &1 4 | EditorUserSettings: 5 | m_ObjectHideFlags: 0 6 | serializedVersion: 4 7 | m_ConfigSettings: 8 | RecentlyUsedScenePath-0: 9 | value: 224247031146464e3f0b012d04267b15051c0c253c0c332021201e32f6e93b36add435ece93f2c730a07e138012c3530c00f0a0eff1d0f195f1bf30705e6 10 | flags: 0 11 | RecentlyUsedScenePath-1: 12 | value: 224247031146464e3f0b012d04267b15051c0c253c0c332021201e32f6e93b36add435ece93f2c730a07e138012c4f2afc031d12 13 | flags: 0 14 | RecentlyUsedScenePath-2: 15 | value: 224247031146464e3f0b012d04267b15051c0c253c0c332021201e32f6e93b36add435ece93f2c730b07ec390d28042dbc1f0702e212 16 | flags: 0 17 | vcSharedLogLevel: 18 | value: 0d5e400f0650 19 | flags: 0 20 | m_VCAutomaticAdd: 1 21 | m_VCDebugCom: 0 22 | m_VCDebugCmd: 0 23 | m_VCDebugOut: 0 24 | m_SemanticMergeMode: 2 25 | m_VCShowFailedCheckout: 1 26 | m_VCOverwriteFailedCheckoutAssets: 1 27 | m_VCProjectOverlayIcons: 1 28 | m_VCHierarchyOverlayIcons: 1 29 | m_VCOtherOverlayIcons: 1 30 | m_VCAllowAsyncUpdate: 0 31 | --------------------------------------------------------------------------------