├── .gitignore ├── Assets ├── ARKitRecorder.meta └── ARKitRecorder │ ├── Scenes.meta │ ├── Scenes │ ├── ARKitRecorder.unity │ └── ARKitRecorder.unity.meta │ ├── Scripts.meta │ └── Scripts │ ├── UnityARKitRecorder.cs │ └── UnityARKitRecorder.cs.meta ├── LICENSE ├── Packages └── manifest.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NavMeshLayers.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | [Ll]ibrary/ 2 | [Tt]emp/ 3 | [Oo]bj/ 4 | [Bb]uild/ 5 | [Bb]uilds/ 6 | Assets/AssetStoreTools* 7 | 8 | # Visual Studio cache directory 9 | .vs/ 10 | 11 | .idea/ 12 | 13 | # Autogenerated VS/MD/Consulo solution and project files 14 | ExportedObj/ 15 | .consulo/ 16 | *.csproj 17 | *.unityproj 18 | *.sln 19 | *.suo 20 | *.tmp 21 | *.user 22 | *.userprefs 23 | *.pidb 24 | *.booproj 25 | *.svd 26 | *.pdb 27 | *.opendb 28 | 29 | # Unity3D generated meta files 30 | *.pidb.meta 31 | *.pdb.meta 32 | 33 | # Unity3D Generated File On Crash Reports 34 | sysinfo.txt 35 | 36 | # Builds 37 | *.apk 38 | *.unitypackage 39 | -------------------------------------------------------------------------------- /Assets/ARKitRecorder.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9951f232f8d81436abda6aad43d145d7 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ARKitRecorder/Scenes.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 13afd0cf04429481ea7346c1ab1fc798 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ARKitRecorder/Scenes/ARKitRecorder.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: 0} 41 | m_IndirectSpecularColor: {r: 0.4465785, g: 0.49641252, b: 0.574817, a: 1} 42 | m_UseRadianceAmbientProbe: 0 43 | --- !u!157 &3 44 | LightmapSettings: 45 | m_ObjectHideFlags: 0 46 | serializedVersion: 11 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: 10 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_Padding: 2 66 | m_LightmapParameters: {fileID: 0} 67 | m_LightmapsBakeMode: 1 68 | m_TextureCompression: 1 69 | m_FinalGather: 0 70 | m_FinalGatherFiltering: 1 71 | m_FinalGatherRayCount: 256 72 | m_ReflectionCompression: 2 73 | m_MixedBakeMode: 2 74 | m_BakeBackend: 1 75 | m_PVRSampling: 1 76 | m_PVRDirectSampleCount: 32 77 | m_PVRSampleCount: 500 78 | m_PVRBounces: 2 79 | m_PVRFilterTypeDirect: 0 80 | m_PVRFilterTypeIndirect: 0 81 | m_PVRFilterTypeAO: 0 82 | m_PVRFilteringMode: 1 83 | m_PVRCulling: 1 84 | m_PVRFilteringGaussRadiusDirect: 1 85 | m_PVRFilteringGaussRadiusIndirect: 5 86 | m_PVRFilteringGaussRadiusAO: 2 87 | m_PVRFilteringAtrousPositionSigmaDirect: 0.5 88 | m_PVRFilteringAtrousPositionSigmaIndirect: 2 89 | m_PVRFilteringAtrousPositionSigmaAO: 1 90 | m_ShowResolutionOverlay: 1 91 | m_LightingDataAsset: {fileID: 0} 92 | m_UseShadowmask: 1 93 | --- !u!196 &4 94 | NavMeshSettings: 95 | serializedVersion: 2 96 | m_ObjectHideFlags: 0 97 | m_BuildSettings: 98 | serializedVersion: 2 99 | agentTypeID: 0 100 | agentRadius: 0.5 101 | agentHeight: 2 102 | agentSlope: 45 103 | agentClimb: 0.4 104 | ledgeDropHeight: 0 105 | maxJumpAcrossDistance: 0 106 | minRegionArea: 2 107 | manualCellSize: 0 108 | cellSize: 0.16666667 109 | manualTileSize: 0 110 | tileSize: 256 111 | accuratePlacement: 0 112 | debug: 113 | m_Flags: 0 114 | m_NavMeshData: {fileID: 0} 115 | --- !u!1 &33876236 116 | GameObject: 117 | m_ObjectHideFlags: 0 118 | m_CorrespondingSourceObject: {fileID: 0} 119 | m_PrefabInstance: {fileID: 0} 120 | m_PrefabAsset: {fileID: 0} 121 | serializedVersion: 6 122 | m_Component: 123 | - component: {fileID: 33876239} 124 | - component: {fileID: 33876238} 125 | - component: {fileID: 33876237} 126 | - component: {fileID: 33876240} 127 | m_Layer: 0 128 | m_Name: Main Camera 129 | m_TagString: MainCamera 130 | m_Icon: {fileID: 0} 131 | m_NavMeshLayer: 0 132 | m_StaticEditorFlags: 0 133 | m_IsActive: 1 134 | --- !u!81 &33876237 135 | AudioListener: 136 | m_ObjectHideFlags: 0 137 | m_CorrespondingSourceObject: {fileID: 0} 138 | m_PrefabInstance: {fileID: 0} 139 | m_PrefabAsset: {fileID: 0} 140 | m_GameObject: {fileID: 33876236} 141 | m_Enabled: 1 142 | --- !u!20 &33876238 143 | Camera: 144 | m_ObjectHideFlags: 0 145 | m_CorrespondingSourceObject: {fileID: 0} 146 | m_PrefabInstance: {fileID: 0} 147 | m_PrefabAsset: {fileID: 0} 148 | m_GameObject: {fileID: 33876236} 149 | m_Enabled: 1 150 | serializedVersion: 2 151 | m_ClearFlags: 2 152 | m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} 153 | m_projectionMatrixMode: 1 154 | m_SensorSize: {x: 36, y: 24} 155 | m_LensShift: {x: 0, y: 0} 156 | m_GateFitMode: 2 157 | m_FocalLength: 50 158 | m_NormalizedViewPortRect: 159 | serializedVersion: 2 160 | x: 0 161 | y: 0 162 | width: 1 163 | height: 1 164 | near clip plane: 0.3 165 | far clip plane: 1000 166 | field of view: 60 167 | orthographic: 0 168 | orthographic size: 5 169 | m_Depth: -1 170 | m_CullingMask: 171 | serializedVersion: 2 172 | m_Bits: 4294967295 173 | m_RenderingPath: -1 174 | m_TargetTexture: {fileID: 0} 175 | m_TargetDisplay: 0 176 | m_TargetEye: 3 177 | m_HDR: 1 178 | m_AllowMSAA: 1 179 | m_AllowDynamicResolution: 0 180 | m_ForceIntoRT: 0 181 | m_OcclusionCulling: 1 182 | m_StereoConvergence: 10 183 | m_StereoSeparation: 0.022 184 | --- !u!4 &33876239 185 | Transform: 186 | m_ObjectHideFlags: 0 187 | m_CorrespondingSourceObject: {fileID: 0} 188 | m_PrefabInstance: {fileID: 0} 189 | m_PrefabAsset: {fileID: 0} 190 | m_GameObject: {fileID: 33876236} 191 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 192 | m_LocalPosition: {x: 0, y: 0, z: -0.53} 193 | m_LocalScale: {x: 1, y: 1, z: 1} 194 | m_Children: [] 195 | m_Father: {fileID: 0} 196 | m_RootOrder: 0 197 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 198 | --- !u!114 &33876240 199 | MonoBehaviour: 200 | m_ObjectHideFlags: 0 201 | m_CorrespondingSourceObject: {fileID: 0} 202 | m_PrefabInstance: {fileID: 0} 203 | m_PrefabAsset: {fileID: 0} 204 | m_GameObject: {fileID: 33876236} 205 | m_Enabled: 1 206 | m_EditorHideFlags: 0 207 | m_Script: {fileID: 11500000, guid: b58ecea7a196242dd879c814ac05084c, type: 3} 208 | m_Name: 209 | m_EditorClassIdentifier: 210 | m_ClearMaterial: {fileID: 2100000, guid: f1d9352050a75486f878ab19fa578f16, type: 2} 211 | --- !u!1001 &108640178 212 | PrefabInstance: 213 | m_ObjectHideFlags: 0 214 | serializedVersion: 2 215 | m_Modification: 216 | m_TransformParent: {fileID: 0} 217 | m_Modifications: 218 | - target: {fileID: 13700000, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 219 | propertyPath: m_BlendShapeWeights.Array.size 220 | value: 50 221 | objectReference: {fileID: 0} 222 | - target: {fileID: 13700000, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 223 | propertyPath: m_AABB.m_Center.y 224 | value: -0.015557218 225 | objectReference: {fileID: 0} 226 | - target: {fileID: 13700000, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 227 | propertyPath: m_AABB.m_Extent.x 228 | value: 0.113363 229 | objectReference: {fileID: 0} 230 | - target: {fileID: 13700000, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 231 | propertyPath: m_AABB.m_Extent.y 232 | value: 0.13194084 233 | objectReference: {fileID: 0} 234 | - target: {fileID: 13700000, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 235 | propertyPath: m_AABB.m_Extent.z 236 | value: 0.13394047 237 | objectReference: {fileID: 0} 238 | - target: {fileID: 13700000, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 239 | propertyPath: m_DirtyAABB 240 | value: 0 241 | objectReference: {fileID: 0} 242 | - target: {fileID: 13700000, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 243 | propertyPath: m_BlendShapeWeights.Array.data[43] 244 | value: 0 245 | objectReference: {fileID: 0} 246 | - target: {fileID: 400004, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 247 | propertyPath: m_LocalPosition.x 248 | value: 0 249 | objectReference: {fileID: 0} 250 | - target: {fileID: 400004, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 251 | propertyPath: m_LocalPosition.y 252 | value: 0 253 | objectReference: {fileID: 0} 254 | - target: {fileID: 400004, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 255 | propertyPath: m_LocalPosition.z 256 | value: 0 257 | objectReference: {fileID: 0} 258 | - target: {fileID: 400004, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 259 | propertyPath: m_LocalRotation.x 260 | value: 0 261 | objectReference: {fileID: 0} 262 | - target: {fileID: 400004, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 263 | propertyPath: m_LocalRotation.y 264 | value: 0 265 | objectReference: {fileID: 0} 266 | - target: {fileID: 400004, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 267 | propertyPath: m_LocalRotation.z 268 | value: 0 269 | objectReference: {fileID: 0} 270 | - target: {fileID: 400004, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 271 | propertyPath: m_LocalRotation.w 272 | value: 1 273 | objectReference: {fileID: 0} 274 | - target: {fileID: 400004, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 275 | propertyPath: m_RootOrder 276 | value: 3 277 | objectReference: {fileID: 0} 278 | - target: {fileID: 400002, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 279 | propertyPath: m_LocalRotation.y 280 | value: 1 281 | objectReference: {fileID: 0} 282 | - target: {fileID: 400002, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 283 | propertyPath: m_LocalRotation.z 284 | value: 0 285 | objectReference: {fileID: 0} 286 | - target: {fileID: 400002, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 287 | propertyPath: m_LocalRotation.w 288 | value: 0 289 | objectReference: {fileID: 0} 290 | - target: {fileID: 400002, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 291 | propertyPath: m_LocalEulerAnglesHint.y 292 | value: 180 293 | objectReference: {fileID: 0} 294 | - target: {fileID: 400002, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 295 | propertyPath: m_LocalPosition.x 296 | value: 0 297 | objectReference: {fileID: 0} 298 | - target: {fileID: 400002, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 299 | propertyPath: m_LocalPosition.y 300 | value: 0 301 | objectReference: {fileID: 0} 302 | - target: {fileID: 400002, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 303 | propertyPath: m_LocalPosition.z 304 | value: 0 305 | objectReference: {fileID: 0} 306 | m_RemovedComponents: [] 307 | m_SourcePrefab: {fileID: 100100000, guid: 63ae12abc50414d5c882dbe18f6a820b, type: 3} 308 | --- !u!1 &1133448500 309 | GameObject: 310 | m_ObjectHideFlags: 0 311 | m_CorrespondingSourceObject: {fileID: 0} 312 | m_PrefabInstance: {fileID: 0} 313 | m_PrefabAsset: {fileID: 0} 314 | serializedVersion: 6 315 | m_Component: 316 | - component: {fileID: 1133448502} 317 | - component: {fileID: 1133448501} 318 | m_Layer: 0 319 | m_Name: Directional Light 320 | m_TagString: Untagged 321 | m_Icon: {fileID: 0} 322 | m_NavMeshLayer: 0 323 | m_StaticEditorFlags: 0 324 | m_IsActive: 1 325 | --- !u!108 &1133448501 326 | Light: 327 | m_ObjectHideFlags: 0 328 | m_CorrespondingSourceObject: {fileID: 0} 329 | m_PrefabInstance: {fileID: 0} 330 | m_PrefabAsset: {fileID: 0} 331 | m_GameObject: {fileID: 1133448500} 332 | m_Enabled: 1 333 | serializedVersion: 8 334 | m_Type: 1 335 | m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} 336 | m_Intensity: 1 337 | m_Range: 10 338 | m_SpotAngle: 30 339 | m_CookieSize: 10 340 | m_Shadows: 341 | m_Type: 2 342 | m_Resolution: -1 343 | m_CustomResolution: -1 344 | m_Strength: 1 345 | m_Bias: 0.05 346 | m_NormalBias: 0.4 347 | m_NearPlane: 0.2 348 | m_Cookie: {fileID: 0} 349 | m_DrawHalo: 0 350 | m_Flare: {fileID: 0} 351 | m_RenderMode: 0 352 | m_CullingMask: 353 | serializedVersion: 2 354 | m_Bits: 4294967295 355 | m_Lightmapping: 4 356 | m_LightShadowCasterMode: 0 357 | m_AreaSize: {x: 1, y: 1} 358 | m_BounceIntensity: 1 359 | m_ColorTemperature: 6570 360 | m_UseColorTemperature: 0 361 | m_ShadowRadius: 0 362 | m_ShadowAngle: 0 363 | --- !u!4 &1133448502 364 | Transform: 365 | m_ObjectHideFlags: 0 366 | m_CorrespondingSourceObject: {fileID: 0} 367 | m_PrefabInstance: {fileID: 0} 368 | m_PrefabAsset: {fileID: 0} 369 | m_GameObject: {fileID: 1133448500} 370 | m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} 371 | m_LocalPosition: {x: 0, y: 3, z: 0} 372 | m_LocalScale: {x: 1, y: 1, z: 1} 373 | m_Children: [] 374 | m_Father: {fileID: 0} 375 | m_RootOrder: 1 376 | m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} 377 | --- !u!1 &1731831388 378 | GameObject: 379 | m_ObjectHideFlags: 0 380 | m_CorrespondingSourceObject: {fileID: 0} 381 | m_PrefabInstance: {fileID: 0} 382 | m_PrefabAsset: {fileID: 0} 383 | serializedVersion: 6 384 | m_Component: 385 | - component: {fileID: 1731831390} 386 | - component: {fileID: 1731831389} 387 | m_Layer: 0 388 | m_Name: UnityARKitRecorder 389 | m_TagString: Untagged 390 | m_Icon: {fileID: 0} 391 | m_NavMeshLayer: 0 392 | m_StaticEditorFlags: 0 393 | m_IsActive: 1 394 | --- !u!114 &1731831389 395 | MonoBehaviour: 396 | m_ObjectHideFlags: 0 397 | m_CorrespondingSourceObject: {fileID: 0} 398 | m_PrefabInstance: {fileID: 0} 399 | m_PrefabAsset: {fileID: 0} 400 | m_GameObject: {fileID: 1731831388} 401 | m_Enabled: 1 402 | m_EditorHideFlags: 0 403 | m_Script: {fileID: 11500000, guid: 19362a8963d7b4e16aee2dcddff8b463, type: 3} 404 | m_Name: 405 | m_EditorClassIdentifier: 406 | EnableLightEstimation: 1 407 | ResetTracking: 1 408 | RemoveExistingAnchors: 1 409 | _recordingMode: 0 410 | _saveFilePath: ../faceTrackingData.bytes 411 | --- !u!4 &1731831390 412 | Transform: 413 | m_ObjectHideFlags: 0 414 | m_CorrespondingSourceObject: {fileID: 0} 415 | m_PrefabInstance: {fileID: 0} 416 | m_PrefabAsset: {fileID: 0} 417 | m_GameObject: {fileID: 1731831388} 418 | m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} 419 | m_LocalPosition: {x: 0, y: 0, z: 0} 420 | m_LocalScale: {x: 1, y: 1, z: 1} 421 | m_Children: [] 422 | m_Father: {fileID: 0} 423 | m_RootOrder: 2 424 | m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} 425 | --- !u!1 &1795977282 stripped 426 | GameObject: 427 | m_CorrespondingSourceObject: {fileID: 100002, guid: 63ae12abc50414d5c882dbe18f6a820b, 428 | type: 3} 429 | m_PrefabInstance: {fileID: 108640178} 430 | m_PrefabAsset: {fileID: 0} 431 | --- !u!114 &1795977284 432 | MonoBehaviour: 433 | m_ObjectHideFlags: 0 434 | m_CorrespondingSourceObject: {fileID: 0} 435 | m_PrefabInstance: {fileID: 0} 436 | m_PrefabAsset: {fileID: 0} 437 | m_GameObject: {fileID: 1795977282} 438 | m_Enabled: 1 439 | m_EditorHideFlags: 0 440 | m_Script: {fileID: 11500000, guid: b4b0f477e0af343a89cdf372c8f19c89, type: 3} 441 | m_Name: 442 | m_EditorClassIdentifier: 443 | -------------------------------------------------------------------------------- /Assets/ARKitRecorder/Scenes/ARKitRecorder.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 36616187cfb334720a5b289b535f97aa 3 | DefaultImporter: 4 | externalObjects: {} 5 | userData: 6 | assetBundleName: 7 | assetBundleVariant: 8 | -------------------------------------------------------------------------------- /Assets/ARKitRecorder/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8c522435f268c4b83b71aaf7a87372ef 3 | folderAsset: yes 4 | DefaultImporter: 5 | externalObjects: {} 6 | userData: 7 | assetBundleName: 8 | assetBundleVariant: 9 | -------------------------------------------------------------------------------- /Assets/ARKitRecorder/Scripts/UnityARKitRecorder.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections; 3 | using System.Collections.Generic; 4 | using System.IO; 5 | using System.Runtime.Serialization.Formatters.Binary; 6 | using JetBrains.Annotations; 7 | using UnityEditor.Networking.PlayerConnection; 8 | using UnityEngine; 9 | using UnityEngine.Networking.PlayerConnection; 10 | using UnityEngine.XR.iOS; 11 | using UnityEngine.XR.iOS.Utils; 12 | 13 | public class UnityARKitRecorder : MonoBehaviour 14 | { 15 | enum CallMethodTypeId 16 | { 17 | SendInitToPlayer, 18 | UpdateCameraFrame, 19 | AddFaceAnchor, 20 | UpdateFaceAnchor, 21 | RemoveFaceAnchor, 22 | ReceiveRemoteScreenYTex, 23 | ReceiveRemoteScreenUVTex, 24 | } 25 | 26 | [Serializable] 27 | class FaceTrackingData 28 | { 29 | public int TimeCount; 30 | public CallMethodTypeId TypeId; 31 | public MessageEventArgs Data; 32 | } 33 | 34 | [Header("AR FaceTracking Config Options")] 35 | public bool EnableLightEstimation = true; 36 | 37 | [Header("Run Options")] 38 | public bool ResetTracking = true; 39 | public bool RemoveExistingAnchors = true; 40 | 41 | private EditorConnection _editorConnection ; 42 | 43 | private int _currentPlayerId = -1; 44 | private string _guiMessage = "none"; 45 | 46 | private Texture2D _remoteScreenYTex; 47 | private Texture2D _remoteScreenUvTex; 48 | 49 | private bool _bTexturesInitialized; 50 | 51 | enum RecordingMode 52 | { 53 | NONE, // Do nothing. you can see the video through ARKitRemote 54 | RECORDING, // At first, you should record the data with ARKitRemote. 55 | PLAYING, // And then, you can play the video. 56 | } 57 | [SerializeField] private RecordingMode _recordingMode = RecordingMode.NONE; 58 | private StreamWriter _writer; 59 | private StreamReader _reader; 60 | [SerializeField] private string _saveFilePath = "faceTrackingData.bytes"; 61 | private string _savePath; 62 | private int _timeCount = 0; 63 | private bool _isStart = false; 64 | private FileStream _playingFileStream; 65 | private BinaryFormatter _playingBinaryFormatter; 66 | private FaceTrackingData _nowFaceTrackingData; 67 | 68 | 69 | // スタート時に呼ばれる 70 | void Start () 71 | { 72 | _bTexturesInitialized = false; 73 | 74 | _editorConnection = EditorConnection.instance; 75 | _editorConnection.Initialize (); 76 | _editorConnection.RegisterConnection (PlayerConnected); 77 | _editorConnection.RegisterDisconnection (PlayerDisconnected); 78 | _editorConnection.Register (ConnectionMessageIds.updateCameraFrameMsgId, UpdateCameraFrame); 79 | _editorConnection.Register (ConnectionMessageIds.addFaceAnchorMsgeId, AddFaceAnchor); 80 | _editorConnection.Register (ConnectionMessageIds.updateFaceAnchorMsgeId, UpdateFaceAnchor); 81 | _editorConnection.Register (ConnectionMessageIds.removePlaneAnchorMsgeId, RemoveFaceAnchor); 82 | _editorConnection.Register (ConnectionMessageIds.screenCaptureYMsgId, ReceiveRemoteScreenYTex); 83 | _editorConnection.Register (ConnectionMessageIds.screenCaptureUVMsgId, ReceiveRemoteScreenUVTex); 84 | 85 | _savePath = Application.dataPath + "/" + _saveFilePath; 86 | _timeCount = 0; 87 | if (_recordingMode == RecordingMode.PLAYING) 88 | { 89 | _playingFileStream = new FileStream(_savePath, FileMode.Open, FileAccess.Read); 90 | _playingBinaryFormatter = new BinaryFormatter(); 91 | 92 | if (_playingFileStream.CanRead) 93 | { 94 | _nowFaceTrackingData = _playingBinaryFormatter.Deserialize(_playingFileStream) as FaceTrackingData; 95 | } 96 | 97 | _isStart = true; 98 | } 99 | } 100 | 101 | private void SaveData(int timeCount, CallMethodTypeId typeId, MessageEventArgs data, bool isFirst) 102 | { 103 | if (_recordingMode != RecordingMode.RECORDING) return; 104 | 105 | FaceTrackingData faceTrackingData = new FaceTrackingData(); 106 | faceTrackingData.TimeCount = timeCount; 107 | faceTrackingData.TypeId = typeId; 108 | faceTrackingData.Data = data; 109 | using (FileStream fs = new FileStream(_savePath, isFirst ? FileMode.Create : FileMode.Append, FileAccess.Write)) 110 | { 111 | BinaryFormatter bf = new BinaryFormatter(); 112 | bf.Serialize(fs, faceTrackingData); 113 | } 114 | } 115 | 116 | private void PlayerConnected(int playerID) 117 | { 118 | _currentPlayerId = playerID; 119 | } 120 | 121 | private void OnGUI() 122 | { 123 | 124 | if (!_bTexturesInitialized) 125 | { 126 | if (_currentPlayerId != -1) { 127 | _guiMessage = "Connected to ARKit Remote device : " + _currentPlayerId.ToString (); 128 | 129 | if (GUI.Button (new Rect ((Screen.width / 2) - 200, (Screen.height / 2) - 200, 400, 100), "Start Remote ARKit FaceTracking Session")) 130 | { 131 | SendInitToPlayer (); 132 | } 133 | } 134 | else 135 | { 136 | _guiMessage = "Please connect to player in the console menu"; 137 | } 138 | 139 | GUI.Box (new Rect ((Screen.width / 2) - 200, (Screen.height / 2) + 100, 400, 50), _guiMessage); 140 | } 141 | 142 | } 143 | 144 | private void PlayerDisconnected(int playerID) 145 | { 146 | if (_currentPlayerId == playerID) { 147 | _currentPlayerId = -1; 148 | } 149 | } 150 | 151 | private void OnDestroy() 152 | { 153 | #if UNITY_2017_1_OR_NEWER 154 | if(_editorConnection != null) { 155 | _editorConnection.DisconnectAll (); 156 | } 157 | #endif 158 | if (_recordingMode == RecordingMode.PLAYING) 159 | { 160 | _playingFileStream.Close(); 161 | } 162 | } 163 | 164 | 165 | private void InitializeTextures(UnityARCamera camera) 166 | { 167 | int yWidth = camera.videoParams.yWidth; 168 | int yHeight = camera.videoParams.yHeight; 169 | int uvWidth = yWidth / 2; 170 | int uvHeight = yHeight / 2; 171 | if (_remoteScreenYTex == null || _remoteScreenYTex.width != yWidth || _remoteScreenYTex.height != yHeight) { 172 | if (_remoteScreenYTex) { 173 | Destroy (_remoteScreenYTex); 174 | } 175 | _remoteScreenYTex = new Texture2D (yWidth, yHeight, TextureFormat.R8, false, true); 176 | } 177 | if (_remoteScreenUvTex == null || _remoteScreenUvTex.width != uvWidth || _remoteScreenUvTex.height != uvHeight) { 178 | if (_remoteScreenUvTex) { 179 | Destroy (_remoteScreenUvTex); 180 | } 181 | _remoteScreenUvTex = new Texture2D (uvWidth, uvHeight, TextureFormat.RG16, false, true); 182 | } 183 | 184 | _bTexturesInitialized = true; 185 | } 186 | 187 | private void UpdateCameraFrame(MessageEventArgs mea) 188 | { 189 | serializableUnityARCamera serCamera = mea.data.Deserialize (); 190 | 191 | UnityARCamera scamera = new UnityARCamera (); 192 | scamera = serCamera; 193 | 194 | InitializeTextures (scamera); 195 | 196 | UnityARSessionNativeInterface.SetStaticCamera (scamera); 197 | UnityARSessionNativeInterface.RunFrameUpdateCallbacks (); 198 | SaveData(_timeCount, CallMethodTypeId.UpdateCameraFrame, mea, false); 199 | } 200 | 201 | private void AddFaceAnchor(MessageEventArgs mea) 202 | { 203 | serializableUnityARFaceAnchor serFaceAnchor = mea.data.Deserialize (); 204 | 205 | ARFaceAnchor arFaceAnchor = serFaceAnchor; 206 | UnityARSessionNativeInterface.RunAddAnchorCallbacks (arFaceAnchor); 207 | SaveData(_timeCount, CallMethodTypeId.AddFaceAnchor, mea, false); 208 | } 209 | 210 | private void UpdateFaceAnchor(MessageEventArgs mea) 211 | { 212 | serializableUnityARFaceAnchor serFaceAnchor = mea.data.Deserialize (); 213 | 214 | ARFaceAnchor arFaceAnchor = serFaceAnchor; 215 | UnityARSessionNativeInterface.RunUpdateAnchorCallbacks (arFaceAnchor); 216 | SaveData(_timeCount, CallMethodTypeId.UpdateFaceAnchor, mea, false); 217 | } 218 | 219 | private void RemoveFaceAnchor(MessageEventArgs mea) 220 | { 221 | serializableUnityARFaceAnchor serFaceAnchor = mea.data.Deserialize (); 222 | 223 | ARFaceAnchor arFaceAnchor = serFaceAnchor; 224 | UnityARSessionNativeInterface.RunRemoveAnchorCallbacks (arFaceAnchor); 225 | SaveData(_timeCount, CallMethodTypeId.RemoveFaceAnchor, mea, false); 226 | } 227 | 228 | private void ReceiveRemoteScreenYTex(MessageEventArgs mea) 229 | { 230 | if (!_bTexturesInitialized) 231 | return; 232 | _remoteScreenYTex.LoadRawTextureData(CompressionHelper.ByteArrayDecompress(mea.data)); 233 | _remoteScreenYTex.Apply (); 234 | UnityARVideo arVideo = Camera.main.GetComponent(); 235 | if (arVideo) { 236 | arVideo.SetYTexure(_remoteScreenYTex); 237 | } 238 | SaveData(_timeCount, CallMethodTypeId.ReceiveRemoteScreenYTex, mea, false); 239 | } 240 | 241 | private void ReceiveRemoteScreenUVTex(MessageEventArgs mea) 242 | { 243 | if (!_bTexturesInitialized) 244 | return; 245 | _remoteScreenUvTex.LoadRawTextureData(CompressionHelper.ByteArrayDecompress(mea.data)); 246 | _remoteScreenUvTex.Apply (); 247 | UnityARVideo arVideo = Camera.main.GetComponent(); 248 | if (arVideo) { 249 | arVideo.SetUVTexure(_remoteScreenUvTex); 250 | } 251 | SaveData(_timeCount, CallMethodTypeId.ReceiveRemoteScreenUVTex, mea, false); 252 | } 253 | 254 | 255 | private void SendInitToPlayer() 256 | { 257 | serializableFromEditorMessage sfem = new serializableFromEditorMessage (); 258 | sfem.subMessageId = SubMessageIds.editorInitARKitFaceTracking; 259 | serializableARSessionConfiguration ssc = new serializableARSessionConfiguration (UnityARAlignment.UnityARAlignmentCamera, UnityARPlaneDetection.None, false, EnableLightEstimation, true); 260 | UnityARSessionRunOption roTracking = ResetTracking ? UnityARSessionRunOption.ARSessionRunOptionResetTracking : 0; 261 | UnityARSessionRunOption roAnchors = RemoveExistingAnchors ? UnityARSessionRunOption.ARSessionRunOptionRemoveExistingAnchors : 0; 262 | sfem.arkitConfigMsg = new serializableARKitInit (ssc, roTracking | roAnchors); 263 | SendToPlayer (ConnectionMessageIds.fromEditorARKitSessionMsgId, sfem); 264 | SaveData(_timeCount, 0, null, true); 265 | _isStart = true; 266 | } 267 | 268 | private void SendToPlayer(System.Guid msgId, byte[] data) 269 | { 270 | _editorConnection.Send (msgId, data); 271 | } 272 | 273 | public void SendToPlayer(System.Guid msgId, object serializableObject) 274 | { 275 | byte[] arrayToSend = serializableObject.SerializeToByteArray (); 276 | SendToPlayer (msgId, arrayToSend); 277 | } 278 | 279 | private void PlayTrackingData(ref FaceTrackingData faceTrackingData) 280 | { 281 | switch (faceTrackingData.TypeId) 282 | { 283 | case CallMethodTypeId.SendInitToPlayer: 284 | break; 285 | case CallMethodTypeId.UpdateCameraFrame: 286 | UpdateCameraFrame(faceTrackingData.Data); 287 | break; 288 | case CallMethodTypeId.AddFaceAnchor: 289 | AddFaceAnchor(faceTrackingData.Data); 290 | break; 291 | case CallMethodTypeId.UpdateFaceAnchor: 292 | UpdateFaceAnchor(faceTrackingData.Data); 293 | break; 294 | case CallMethodTypeId.RemoveFaceAnchor: 295 | RemoveFaceAnchor(faceTrackingData.Data); 296 | break; 297 | case CallMethodTypeId.ReceiveRemoteScreenYTex: 298 | ReceiveRemoteScreenYTex(faceTrackingData.Data); 299 | break; 300 | case CallMethodTypeId.ReceiveRemoteScreenUVTex: 301 | ReceiveRemoteScreenUVTex(faceTrackingData.Data); 302 | break; 303 | } 304 | } 305 | 306 | void Update() 307 | { 308 | if (_isStart) 309 | { 310 | if (_recordingMode == RecordingMode.PLAYING ) 311 | { 312 | while (_playingFileStream.Position < _playingFileStream.Length && 313 | _timeCount >= _nowFaceTrackingData.TimeCount ) 314 | { 315 | PlayTrackingData(ref _nowFaceTrackingData); 316 | _nowFaceTrackingData = _playingBinaryFormatter.Deserialize(_playingFileStream) as FaceTrackingData; 317 | } 318 | } 319 | 320 | _timeCount++; 321 | } 322 | } 323 | 324 | } 325 | -------------------------------------------------------------------------------- /Assets/ARKitRecorder/Scripts/UnityARKitRecorder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 19362a8963d7b4e16aee2dcddff8b463 3 | MonoImporter: 4 | externalObjects: {} 5 | serializedVersion: 2 6 | defaultReferences: [] 7 | executionOrder: 0 8 | icon: {instanceID: 0} 9 | userData: 10 | assetBundleName: 11 | assetBundleVariant: 12 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Makoto Ito 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, 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, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.ads": "2.3.1", 4 | "com.unity.analytics": "3.2.2", 5 | "com.unity.collab-proxy": "1.2.15", 6 | "com.unity.package-manager-ui": "2.0.3", 7 | "com.unity.purchasing": "2.0.3", 8 | "com.unity.textmeshpro": "1.3.0", 9 | "com.unity.modules.ai": "1.0.0", 10 | "com.unity.modules.animation": "1.0.0", 11 | "com.unity.modules.assetbundle": "1.0.0", 12 | "com.unity.modules.audio": "1.0.0", 13 | "com.unity.modules.cloth": "1.0.0", 14 | "com.unity.modules.director": "1.0.0", 15 | "com.unity.modules.imageconversion": "1.0.0", 16 | "com.unity.modules.imgui": "1.0.0", 17 | "com.unity.modules.jsonserialize": "1.0.0", 18 | "com.unity.modules.particlesystem": "1.0.0", 19 | "com.unity.modules.physics": "1.0.0", 20 | "com.unity.modules.physics2d": "1.0.0", 21 | "com.unity.modules.screencapture": "1.0.0", 22 | "com.unity.modules.terrain": "1.0.0", 23 | "com.unity.modules.terrainphysics": "1.0.0", 24 | "com.unity.modules.tilemap": "1.0.0", 25 | "com.unity.modules.ui": "1.0.0", 26 | "com.unity.modules.uielements": "1.0.0", 27 | "com.unity.modules.umbra": "1.0.0", 28 | "com.unity.modules.unityanalytics": "1.0.0", 29 | "com.unity.modules.unitywebrequest": "1.0.0", 30 | "com.unity.modules.unitywebrequestassetbundle": "1.0.0", 31 | "com.unity.modules.unitywebrequestaudio": "1.0.0", 32 | "com.unity.modules.unitywebrequesttexture": "1.0.0", 33 | "com.unity.modules.unitywebrequestwww": "1.0.0", 34 | "com.unity.modules.vehicles": "1.0.0", 35 | "com.unity.modules.video": "1.0.0", 36 | "com.unity.modules.vr": "1.0.0", 37 | "com.unity.modules.wind": "1.0.0", 38 | "com.unity.modules.xr": "1.0.0" 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /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 | m_Volume: 1 7 | Rolloff Scale: 1 8 | m_SpeedOfSound: 347 9 | Doppler Factor: 1 10 | Default Speaker Mode: 2 11 | m_DSPBufferSize: 0 12 | -------------------------------------------------------------------------------- /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 | m_Gravity: {x: 0, y: -9.81000042, z: 0} 7 | m_DefaultMaterial: {fileID: 0} 8 | m_BounceThreshold: 2 9 | m_SleepVelocity: .150000006 10 | m_SleepAngularVelocity: .140000001 11 | m_MaxAngularVelocity: 7 12 | m_MinPenetrationForPenalty: .00999999978 13 | m_SolverIterationCount: 6 14 | m_RaycastsHitTriggers: 1 15 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 16 | -------------------------------------------------------------------------------- /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: 0 9 | path: Assets/UnityARKitPlugin/Examples/FaceTracking/FaceBlendshapeSloth.unity 10 | guid: b9bc483a4023d4829a88ddc3adff3caf 11 | - enabled: 0 12 | path: Assets/UnityARKitPlugin/Examples/UnityARKitScene/UnityARKitScene.unity 13 | guid: c159f2591a9b5c843b0a0442451f78f8 14 | - enabled: 0 15 | path: Assets/UnityARKitPlugin/Examples/UnityParticlePainter/UnityParticlePainter.unity 16 | guid: 0327f0aa0142146c291df8203b848257 17 | - enabled: 0 18 | path: Assets/UnityARKitPlugin/Examples/UnityARBallz/UnityARBallz.unity 19 | guid: 75972bcfc855b486593ec2ec68da0b81 20 | - enabled: 0 21 | path: Assets/UnityARKitPlugin/Examples/UnityARShadows/UnityARShadows.unity 22 | guid: 14d17ec7304f440b48e6b953ba7a5895 23 | - enabled: 0 24 | path: Assets/UnityARKitPlugin/Examples/UnityAROcclusion/UnityAROcclusion.unity 25 | guid: 7f026c59fb9d6489ab924c6e0e119760 26 | - enabled: 1 27 | path: Assets/UnityARKitPlugin/ARKitRemote/UnityARKitRemote.unity 28 | guid: 3ed73c0c9d4b76a418a0541c0cefd3ac 29 | - enabled: 0 30 | path: Assets/UnityARKitPlugin/Examples/FocusSquare/FocusSquareScene.unity 31 | guid: 3c9ef824a7b95400bade362484e9b6af 32 | - enabled: 0 33 | path: Assets/UnityARKitPlugin/Examples/FaceTracking/FaceAnchorScene.unity 34 | guid: 46e299c2ec1244fbaa1b9b14e2ab198a 35 | - enabled: 0 36 | path: Assets/UnityARKitPlugin/Examples/FaceTracking/FaceMeshScene.unity 37 | guid: e95b28d2a95b34b868e407dc86a3e6d2 38 | - enabled: 0 39 | path: Assets/UnityARKitPlugin/Examples/FaceTracking/FaceBlendshapeScene.unity 40 | guid: 74c2619dd419d4704bba49146f77161d 41 | - enabled: 0 42 | path: Assets/UnityARKitPlugin/Examples/FaceTracking/FaceDirectionalLightEstimate.unity 43 | guid: 360fd35caee4f4e069485021a27c0b06 44 | - enabled: 0 45 | path: Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/UnityARWorldMap.unity 46 | guid: ee2777dc048a5482db055433cf94aa0e 47 | - enabled: 0 48 | path: Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARWorldMap/UnityARWorldMapSerialized.unity 49 | guid: 5886c251920f2454b98358e6027f37df 50 | - enabled: 0 51 | path: Assets/UnityARKitPlugin/Examples/ARKit2.0/UnityARObjectAnchor/UnityARObjectAnchor.unity 52 | guid: 9b7966300d2d04d8e86ace41d59d178c 53 | m_configObjects: {} 54 | -------------------------------------------------------------------------------- /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: 7 7 | m_ExternalVersionControlSupport: Visible Meta Files 8 | m_SerializationMode: 2 9 | m_LineEndingsForNewScripts: 1 10 | m_DefaultBehaviorMode: 0 11 | m_SpritePackerMode: 2 12 | m_SpritePackerPaddingPower: 1 13 | m_EtcTextureCompressorBehavior: 0 14 | m_EtcTextureFastCompressor: 2 15 | m_EtcTextureNormalCompressor: 2 16 | m_EtcTextureBestCompressor: 5 17 | m_ProjectGenerationIncludedExtensions: txt;xml;fnt;cd;asmdef 18 | m_ProjectGenerationRootNamespace: 19 | m_UserGeneratedProjectSuffix: 20 | m_CollabEditorSettings: 21 | inProgressEnabled: 1 22 | -------------------------------------------------------------------------------- /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: 12 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: 10770, guid: 0000000000000000f000000000000000, type: 0} 37 | - {fileID: 10782, guid: 0000000000000000f000000000000000, type: 0} 38 | - {fileID: 16000, guid: 0000000000000000f000000000000000, type: 0} 39 | - {fileID: 17000, guid: 0000000000000000f000000000000000, type: 0} 40 | m_PreloadedShaders: [] 41 | m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, 42 | type: 0} 43 | m_CustomRenderPipeline: {fileID: 0} 44 | m_TransparencySortMode: 0 45 | m_TransparencySortAxis: {x: 0, y: 0, z: 1} 46 | m_DefaultRenderingPath: 1 47 | m_DefaultMobileRenderingPath: 1 48 | m_TierSettings: [] 49 | m_LightmapStripping: 0 50 | m_FogStripping: 0 51 | m_InstancingStripping: 0 52 | m_LightmapKeepPlain: 1 53 | m_LightmapKeepDirCombined: 1 54 | m_LightmapKeepDynamicPlain: 1 55 | m_LightmapKeepDynamicDirCombined: 1 56 | m_LightmapKeepShadowMask: 1 57 | m_LightmapKeepSubtractive: 1 58 | m_FogKeepLinear: 1 59 | m_FogKeepExp: 1 60 | m_FogKeepExp2: 1 61 | m_AlbedoSwatchInfos: [] 62 | m_LightsUseLinearIntensity: 0 63 | m_LightsUseColorTemperature: 0 64 | -------------------------------------------------------------------------------- /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 | m_Axes: 7 | - serializedVersion: 3 8 | m_Name: Horizontal 9 | descriptiveName: 10 | descriptiveNegativeName: 11 | negativeButton: left 12 | positiveButton: right 13 | altNegativeButton: a 14 | altPositiveButton: d 15 | gravity: 3 16 | dead: .00100000005 17 | sensitivity: 3 18 | snap: 1 19 | invert: 0 20 | type: 0 21 | axis: 0 22 | joyNum: 0 23 | - serializedVersion: 3 24 | m_Name: Vertical 25 | descriptiveName: 26 | descriptiveNegativeName: 27 | negativeButton: down 28 | positiveButton: up 29 | altNegativeButton: s 30 | altPositiveButton: w 31 | gravity: 3 32 | dead: .00100000005 33 | sensitivity: 3 34 | snap: 1 35 | invert: 0 36 | type: 0 37 | axis: 0 38 | joyNum: 0 39 | - serializedVersion: 3 40 | m_Name: Fire1 41 | descriptiveName: 42 | descriptiveNegativeName: 43 | negativeButton: 44 | positiveButton: left ctrl 45 | altNegativeButton: 46 | altPositiveButton: mouse 0 47 | gravity: 1000 48 | dead: .00100000005 49 | sensitivity: 1000 50 | snap: 0 51 | invert: 0 52 | type: 0 53 | axis: 0 54 | joyNum: 0 55 | - serializedVersion: 3 56 | m_Name: Fire2 57 | descriptiveName: 58 | descriptiveNegativeName: 59 | negativeButton: 60 | positiveButton: left alt 61 | altNegativeButton: 62 | altPositiveButton: mouse 1 63 | gravity: 1000 64 | dead: .00100000005 65 | sensitivity: 1000 66 | snap: 0 67 | invert: 0 68 | type: 0 69 | axis: 0 70 | joyNum: 0 71 | - serializedVersion: 3 72 | m_Name: Fire3 73 | descriptiveName: 74 | descriptiveNegativeName: 75 | negativeButton: 76 | positiveButton: left cmd 77 | altNegativeButton: 78 | altPositiveButton: mouse 2 79 | gravity: 1000 80 | dead: .00100000005 81 | sensitivity: 1000 82 | snap: 0 83 | invert: 0 84 | type: 0 85 | axis: 0 86 | joyNum: 0 87 | - serializedVersion: 3 88 | m_Name: Jump 89 | descriptiveName: 90 | descriptiveNegativeName: 91 | negativeButton: 92 | positiveButton: space 93 | altNegativeButton: 94 | altPositiveButton: 95 | gravity: 1000 96 | dead: .00100000005 97 | sensitivity: 1000 98 | snap: 0 99 | invert: 0 100 | type: 0 101 | axis: 0 102 | joyNum: 0 103 | - serializedVersion: 3 104 | m_Name: Mouse X 105 | descriptiveName: 106 | descriptiveNegativeName: 107 | negativeButton: 108 | positiveButton: 109 | altNegativeButton: 110 | altPositiveButton: 111 | gravity: 0 112 | dead: 0 113 | sensitivity: .100000001 114 | snap: 0 115 | invert: 0 116 | type: 1 117 | axis: 0 118 | joyNum: 0 119 | - serializedVersion: 3 120 | m_Name: Mouse Y 121 | descriptiveName: 122 | descriptiveNegativeName: 123 | negativeButton: 124 | positiveButton: 125 | altNegativeButton: 126 | altPositiveButton: 127 | gravity: 0 128 | dead: 0 129 | sensitivity: .100000001 130 | snap: 0 131 | invert: 0 132 | type: 1 133 | axis: 1 134 | joyNum: 0 135 | - serializedVersion: 3 136 | m_Name: Mouse ScrollWheel 137 | descriptiveName: 138 | descriptiveNegativeName: 139 | negativeButton: 140 | positiveButton: 141 | altNegativeButton: 142 | altPositiveButton: 143 | gravity: 0 144 | dead: 0 145 | sensitivity: .100000001 146 | snap: 0 147 | invert: 0 148 | type: 1 149 | axis: 2 150 | joyNum: 0 151 | - serializedVersion: 3 152 | m_Name: Window Shake X 153 | descriptiveName: 154 | descriptiveNegativeName: 155 | negativeButton: 156 | positiveButton: 157 | altNegativeButton: 158 | altPositiveButton: 159 | gravity: 0 160 | dead: 0 161 | sensitivity: .100000001 162 | snap: 0 163 | invert: 0 164 | type: 3 165 | axis: 0 166 | joyNum: 0 167 | - serializedVersion: 3 168 | m_Name: Window Shake Y 169 | descriptiveName: 170 | descriptiveNegativeName: 171 | negativeButton: 172 | positiveButton: 173 | altNegativeButton: 174 | altPositiveButton: 175 | gravity: 0 176 | dead: 0 177 | sensitivity: .100000001 178 | snap: 0 179 | invert: 0 180 | type: 3 181 | axis: 1 182 | joyNum: 0 183 | - serializedVersion: 3 184 | m_Name: Horizontal 185 | descriptiveName: 186 | descriptiveNegativeName: 187 | negativeButton: 188 | positiveButton: 189 | altNegativeButton: 190 | altPositiveButton: 191 | gravity: 0 192 | dead: .189999998 193 | sensitivity: 1 194 | snap: 0 195 | invert: 0 196 | type: 2 197 | axis: 0 198 | joyNum: 0 199 | - serializedVersion: 3 200 | m_Name: Vertical 201 | descriptiveName: 202 | descriptiveNegativeName: 203 | negativeButton: 204 | positiveButton: 205 | altNegativeButton: 206 | altPositiveButton: 207 | gravity: 0 208 | dead: .189999998 209 | sensitivity: 1 210 | snap: 0 211 | invert: 1 212 | type: 2 213 | axis: 1 214 | joyNum: 0 215 | - serializedVersion: 3 216 | m_Name: Fire1 217 | descriptiveName: 218 | descriptiveNegativeName: 219 | negativeButton: 220 | positiveButton: joystick button 0 221 | altNegativeButton: 222 | altPositiveButton: 223 | gravity: 1000 224 | dead: .00100000005 225 | sensitivity: 1000 226 | snap: 0 227 | invert: 0 228 | type: 0 229 | axis: 0 230 | joyNum: 0 231 | - serializedVersion: 3 232 | m_Name: Fire2 233 | descriptiveName: 234 | descriptiveNegativeName: 235 | negativeButton: 236 | positiveButton: joystick button 1 237 | altNegativeButton: 238 | altPositiveButton: 239 | gravity: 1000 240 | dead: .00100000005 241 | sensitivity: 1000 242 | snap: 0 243 | invert: 0 244 | type: 0 245 | axis: 0 246 | joyNum: 0 247 | - serializedVersion: 3 248 | m_Name: Fire3 249 | descriptiveName: 250 | descriptiveNegativeName: 251 | negativeButton: 252 | positiveButton: joystick button 2 253 | altNegativeButton: 254 | altPositiveButton: 255 | gravity: 1000 256 | dead: .00100000005 257 | sensitivity: 1000 258 | snap: 0 259 | invert: 0 260 | type: 0 261 | axis: 0 262 | joyNum: 0 263 | - serializedVersion: 3 264 | m_Name: Jump 265 | descriptiveName: 266 | descriptiveNegativeName: 267 | negativeButton: 268 | positiveButton: joystick button 3 269 | altNegativeButton: 270 | altPositiveButton: 271 | gravity: 1000 272 | dead: .00100000005 273 | sensitivity: 1000 274 | snap: 0 275 | invert: 0 276 | type: 0 277 | axis: 0 278 | joyNum: 0 279 | -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!126 &1 4 | NavMeshLayers: 5 | m_ObjectHideFlags: 0 6 | Built-in Layer 0: 7 | name: Default 8 | cost: 1 9 | editType: 2 10 | Built-in Layer 1: 11 | name: Not Walkable 12 | cost: 1 13 | editType: 0 14 | Built-in Layer 2: 15 | name: Jump 16 | cost: 2 17 | editType: 2 18 | User Layer 0: 19 | name: 20 | cost: 1 21 | editType: 3 22 | User Layer 1: 23 | name: 24 | cost: 1 25 | editType: 3 26 | User Layer 2: 27 | name: 28 | cost: 1 29 | editType: 3 30 | User Layer 3: 31 | name: 32 | cost: 1 33 | editType: 3 34 | User Layer 4: 35 | name: 36 | cost: 1 37 | editType: 3 38 | User Layer 5: 39 | name: 40 | cost: 1 41 | editType: 3 42 | User Layer 6: 43 | name: 44 | cost: 1 45 | editType: 3 46 | User Layer 7: 47 | name: 48 | cost: 1 49 | editType: 3 50 | User Layer 8: 51 | name: 52 | cost: 1 53 | editType: 3 54 | User Layer 9: 55 | name: 56 | cost: 1 57 | editType: 3 58 | User Layer 10: 59 | name: 60 | cost: 1 61 | editType: 3 62 | User Layer 11: 63 | name: 64 | cost: 1 65 | editType: 3 66 | User Layer 12: 67 | name: 68 | cost: 1 69 | editType: 3 70 | User Layer 13: 71 | name: 72 | cost: 1 73 | editType: 3 74 | User Layer 14: 75 | name: 76 | cost: 1 77 | editType: 3 78 | User Layer 15: 79 | name: 80 | cost: 1 81 | editType: 3 82 | User Layer 16: 83 | name: 84 | cost: 1 85 | editType: 3 86 | User Layer 17: 87 | name: 88 | cost: 1 89 | editType: 3 90 | User Layer 18: 91 | name: 92 | cost: 1 93 | editType: 3 94 | User Layer 19: 95 | name: 96 | cost: 1 97 | editType: 3 98 | User Layer 20: 99 | name: 100 | cost: 1 101 | editType: 3 102 | User Layer 21: 103 | name: 104 | cost: 1 105 | editType: 3 106 | User Layer 22: 107 | name: 108 | cost: 1 109 | editType: 3 110 | User Layer 23: 111 | name: 112 | cost: 1 113 | editType: 3 114 | User Layer 24: 115 | name: 116 | cost: 1 117 | editType: 3 118 | User Layer 25: 119 | name: 120 | cost: 1 121 | editType: 3 122 | User Layer 26: 123 | name: 124 | cost: 1 125 | editType: 3 126 | User Layer 27: 127 | name: 128 | cost: 1 129 | editType: 3 130 | User Layer 28: 131 | name: 132 | cost: 1 133 | editType: 3 134 | -------------------------------------------------------------------------------- /ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!126 &1 4 | NavMeshLayers: 5 | m_ObjectHideFlags: 0 6 | Built-in Layer 0: 7 | name: Default 8 | cost: 1 9 | editType: 2 10 | Built-in Layer 1: 11 | name: Not Walkable 12 | cost: 1 13 | editType: 0 14 | Built-in Layer 2: 15 | name: Jump 16 | cost: 2 17 | editType: 2 18 | User Layer 0: 19 | name: 20 | cost: 1 21 | editType: 3 22 | User Layer 1: 23 | name: 24 | cost: 1 25 | editType: 3 26 | User Layer 2: 27 | name: 28 | cost: 1 29 | editType: 3 30 | User Layer 3: 31 | name: 32 | cost: 1 33 | editType: 3 34 | User Layer 4: 35 | name: 36 | cost: 1 37 | editType: 3 38 | User Layer 5: 39 | name: 40 | cost: 1 41 | editType: 3 42 | User Layer 6: 43 | name: 44 | cost: 1 45 | editType: 3 46 | User Layer 7: 47 | name: 48 | cost: 1 49 | editType: 3 50 | User Layer 8: 51 | name: 52 | cost: 1 53 | editType: 3 54 | User Layer 9: 55 | name: 56 | cost: 1 57 | editType: 3 58 | User Layer 10: 59 | name: 60 | cost: 1 61 | editType: 3 62 | User Layer 11: 63 | name: 64 | cost: 1 65 | editType: 3 66 | User Layer 12: 67 | name: 68 | cost: 1 69 | editType: 3 70 | User Layer 13: 71 | name: 72 | cost: 1 73 | editType: 3 74 | User Layer 14: 75 | name: 76 | cost: 1 77 | editType: 3 78 | User Layer 15: 79 | name: 80 | cost: 1 81 | editType: 3 82 | User Layer 16: 83 | name: 84 | cost: 1 85 | editType: 3 86 | User Layer 17: 87 | name: 88 | cost: 1 89 | editType: 3 90 | User Layer 18: 91 | name: 92 | cost: 1 93 | editType: 3 94 | User Layer 19: 95 | name: 96 | cost: 1 97 | editType: 3 98 | User Layer 20: 99 | name: 100 | cost: 1 101 | editType: 3 102 | User Layer 21: 103 | name: 104 | cost: 1 105 | editType: 3 106 | User Layer 22: 107 | name: 108 | cost: 1 109 | editType: 3 110 | User Layer 23: 111 | name: 112 | cost: 1 113 | editType: 3 114 | User Layer 24: 115 | name: 116 | cost: 1 117 | editType: 3 118 | User Layer 25: 119 | name: 120 | cost: 1 121 | editType: 3 122 | User Layer 26: 123 | name: 124 | cost: 1 125 | editType: 3 126 | User Layer 27: 127 | name: 128 | cost: 1 129 | editType: 3 130 | User Layer 28: 131 | name: 132 | cost: 1 133 | editType: 3 134 | -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- 1 | %YAML 1.1 2 | %TAG !u! tag:unity3d.com,2011: 3 | --- !u!149 &1 4 | NetworkManager: 5 | m_ObjectHideFlags: 0 6 | m_DebugLevel: 0 7 | m_Sendrate: 15 8 | m_AssetToPrefab: {} 9 | -------------------------------------------------------------------------------- /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: 2 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_MinPenetrationForPenalty: 0.01 17 | m_BaumgarteScale: 0.2 18 | m_BaumgarteTimeOfImpactScale: 0.75 19 | m_TimeToSleep: 0.5 20 | m_LinearSleepTolerance: 0.01 21 | m_AngularSleepTolerance: 2 22 | m_QueriesHitTriggers: 1 23 | m_QueriesStartInColliders: 1 24 | m_ChangeStopsCallbacks: 0 25 | m_AlwaysShowColliders: 0 26 | m_ShowColliderSleep: 1 27 | m_ShowColliderContacts: 0 28 | m_ContactArrowScale: 0.2 29 | m_ColliderAwakeColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.7529412} 30 | m_ColliderAsleepColor: {r: 0.5686275, g: 0.95686275, b: 0.54509807, a: 0.36078432} 31 | m_ColliderContactColor: {r: 1, g: 0, b: 1, a: 0.6862745} 32 | m_LayerCollisionMatrix: ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff 33 | -------------------------------------------------------------------------------- /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: 15 7 | productGUID: 6f1c150c1d09e34438d8b828344ac6d5 8 | AndroidProfiler: 0 9 | AndroidFilterTouchesWhenObscured: 0 10 | AndroidEnableSustainedPerformanceMode: 0 11 | defaultScreenOrientation: 4 12 | targetDevice: 0 13 | useOnDemandResources: 0 14 | accelerometerFrequency: 60 15 | companyName: Unity Technologies 16 | productName: ARKitRemote 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: 1024 46 | defaultScreenHeight: 768 47 | defaultScreenWidthWeb: 600 48 | defaultScreenHeightWeb: 450 49 | m_StereoRenderingPath: 0 50 | m_ActiveColorSpace: 0 51 | m_MTRendering: 1 52 | m_StackTraceTypes: 010000000100000001000000010000000100000001000000 53 | iosShowActivityIndicatorOnLoading: -1 54 | androidShowActivityIndicatorOnLoading: -1 55 | iosAppInBackgroundBehavior: 0 56 | displayResolutionDialog: 0 57 | iosAllowHTTPDownload: 1 58 | allowedAutorotateToPortrait: 1 59 | allowedAutorotateToPortraitUpsideDown: 1 60 | allowedAutorotateToLandscapeRight: 1 61 | allowedAutorotateToLandscapeLeft: 1 62 | useOSAutorotation: 0 63 | use32BitDisplayBuffer: 0 64 | preserveFramebufferAlpha: 0 65 | disableDepthAndStencilBuffers: 0 66 | androidStartInFullscreen: 1 67 | androidRenderOutsideSafeArea: 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 | resizableWindow: 0 83 | useMacAppStoreValidation: 0 84 | macAppStoreCategory: public.app-category.games 85 | gpuSkinning: 1 86 | graphicsJobs: 1 87 | xboxPIXTextureCapture: 0 88 | xboxEnableAvatar: 0 89 | xboxEnableKinect: 0 90 | xboxEnableKinectAutoTracking: 0 91 | xboxEnableFitness: 0 92 | visibleInBackground: 0 93 | allowFullscreenSwitch: 1 94 | graphicsJobMode: 0 95 | fullscreenMode: 1 96 | xboxSpeechDB: 0 97 | xboxEnableHeadOrientation: 0 98 | xboxEnableGuest: 0 99 | xboxEnablePIXSampling: 0 100 | metalFramebufferOnly: 0 101 | xboxOneResolution: 0 102 | xboxOneSResolution: 0 103 | xboxOneXResolution: 3 104 | xboxOneMonoLoggingLevel: 0 105 | xboxOneLoggingLevel: 1 106 | xboxOneDisableEsram: 0 107 | xboxOnePresentImmediateThreshold: 0 108 | switchQueueCommandMemory: 0 109 | vulkanEnableSetSRGBWrite: 0 110 | m_SupportedAspectRatios: 111 | 4:3: 1 112 | 5:4: 1 113 | 16:10: 1 114 | 16:9: 1 115 | Others: 1 116 | bundleVersion: 1.0 117 | preloadedAssets: [] 118 | metroInputSource: 0 119 | wsaTransparentSwapchain: 0 120 | m_HolographicPauseOnTrackingLoss: 1 121 | xboxOneDisableKinectGpuReservation: 0 122 | xboxOneEnable7thCore: 0 123 | isWsaHolographicRemotingEnabled: 0 124 | vrSettings: 125 | cardboard: 126 | depthFormat: 0 127 | enableTransitionView: 0 128 | daydream: 129 | depthFormat: 0 130 | useSustainedPerformanceMode: 0 131 | enableVideoLayer: 0 132 | useProtectedVideoMemory: 0 133 | minimumSupportedHeadTracking: 0 134 | maximumSupportedHeadTracking: 1 135 | hololens: 136 | depthFormat: 1 137 | depthBufferSharingEnabled: 0 138 | oculus: 139 | sharedDepthBuffer: 0 140 | dashSupport: 0 141 | enable360StereoCapture: 0 142 | protectGraphicsMemory: 0 143 | enableFrameTimingStats: 0 144 | useHDRDisplay: 0 145 | m_ColorGamuts: 00000000 146 | targetPixelDensity: 30 147 | resolutionScalingMode: 0 148 | androidSupportedAspectRatio: 1 149 | androidMaxAspectRatio: 2.1 150 | applicationIdentifier: 151 | Android: com.Company.ProductName 152 | Standalone: unity.Unity Technologies.Native Rendering Plugin Example 153 | Tizen: com.Company.ProductName 154 | iOS: jp.onacasoft.arkitremote2018 155 | iPhone: jp.onacasoft.arkitremote 156 | tvOS: com.Company.ProductName 157 | buildNumber: 158 | iPhone: 0 159 | AndroidBundleVersionCode: 1 160 | AndroidMinSdkVersion: 16 161 | AndroidTargetSdkVersion: 0 162 | AndroidPreferredInstallLocation: 1 163 | aotOptions: 164 | stripEngineCode: 1 165 | iPhoneStrippingLevel: 0 166 | iPhoneScriptCallOptimization: 0 167 | ForceInternetPermission: 0 168 | ForceSDCardPermission: 0 169 | CreateWallpaper: 0 170 | APKExpansionFiles: 0 171 | keepLoadedShadersAlive: 0 172 | StripUnusedMeshComponents: 0 173 | VertexChannelCompressionMask: 4054 174 | iPhoneSdkVersion: 988 175 | iOSTargetOSVersionString: 11.0 176 | tvOSSdkVersion: 0 177 | tvOSRequireExtendedGameController: 0 178 | tvOSTargetOSVersionString: 9.0 179 | uIPrerenderedIcon: 0 180 | uIRequiresPersistentWiFi: 0 181 | uIRequiresFullScreen: 1 182 | uIStatusBarHidden: 1 183 | uIExitOnSuspend: 0 184 | uIStatusBarStyle: 0 185 | iPhoneSplashScreen: {fileID: 0} 186 | iPhoneHighResSplashScreen: {fileID: 0} 187 | iPhoneTallHighResSplashScreen: {fileID: 0} 188 | iPhone47inSplashScreen: {fileID: 0} 189 | iPhone55inPortraitSplashScreen: {fileID: 0} 190 | iPhone55inLandscapeSplashScreen: {fileID: 0} 191 | iPhone58inPortraitSplashScreen: {fileID: 0} 192 | iPhone58inLandscapeSplashScreen: {fileID: 0} 193 | iPadPortraitSplashScreen: {fileID: 0} 194 | iPadHighResPortraitSplashScreen: {fileID: 0} 195 | iPadLandscapeSplashScreen: {fileID: 0} 196 | iPadHighResLandscapeSplashScreen: {fileID: 0} 197 | appleTVSplashScreen: {fileID: 0} 198 | appleTVSplashScreen2x: {fileID: 0} 199 | tvOSSmallIconLayers: [] 200 | tvOSSmallIconLayers2x: [] 201 | tvOSLargeIconLayers: [] 202 | tvOSLargeIconLayers2x: [] 203 | tvOSTopShelfImageLayers: [] 204 | tvOSTopShelfImageLayers2x: [] 205 | tvOSTopShelfImageWideLayers: [] 206 | tvOSTopShelfImageWideLayers2x: [] 207 | iOSLaunchScreenType: 0 208 | iOSLaunchScreenPortrait: {fileID: 0} 209 | iOSLaunchScreenLandscape: {fileID: 0} 210 | iOSLaunchScreenBackgroundColor: 211 | serializedVersion: 2 212 | rgba: 3452816845 213 | iOSLaunchScreenFillPct: 100 214 | iOSLaunchScreenSize: 100 215 | iOSLaunchScreenCustomXibPath: 216 | iOSLaunchScreeniPadType: 0 217 | iOSLaunchScreeniPadImage: {fileID: 0} 218 | iOSLaunchScreeniPadBackgroundColor: 219 | serializedVersion: 2 220 | rgba: 0 221 | iOSLaunchScreeniPadFillPct: 100 222 | iOSLaunchScreeniPadSize: 100 223 | iOSLaunchScreeniPadCustomXibPath: 224 | iOSUseLaunchScreenStoryboard: 0 225 | iOSLaunchScreenCustomStoryboardPath: 226 | iOSDeviceRequirements: [] 227 | iOSURLSchemes: [] 228 | iOSBackgroundModes: 0 229 | iOSMetalForceHardShadows: 0 230 | metalEditorSupport: 1 231 | metalAPIValidation: 1 232 | iOSRenderExtraFrameOnPause: 0 233 | appleDeveloperTeamID: GC23Z22KE4 234 | iOSManualSigningProvisioningProfileID: 235 | tvOSManualSigningProvisioningProfileID: 236 | iOSManualSigningProvisioningProfileType: 0 237 | tvOSManualSigningProvisioningProfileType: 0 238 | appleEnableAutomaticSigning: 1 239 | iOSRequireARKit: 1 240 | appleEnableProMotion: 0 241 | clonedFromGUID: 00000000000000000000000000000000 242 | templatePackageId: 243 | templateDefaultScene: 244 | AndroidTargetArchitectures: 5 245 | AndroidSplashScreenScale: 0 246 | androidSplashScreen: {fileID: 0} 247 | AndroidKeystoreName: '{inproject}: ' 248 | AndroidKeyaliasName: 249 | AndroidBuildApkPerCpuArchitecture: 0 250 | AndroidTVCompatibility: 1 251 | AndroidIsGame: 1 252 | AndroidEnableTango: 0 253 | androidEnableBanner: 1 254 | androidUseLowAccuracyLocation: 0 255 | m_AndroidBanners: 256 | - width: 320 257 | height: 180 258 | banner: {fileID: 0} 259 | androidGamepadSupportLevel: 0 260 | resolutionDialogBanner: {fileID: 0} 261 | m_BuildTargetIcons: 262 | - m_BuildTarget: 263 | m_Icons: 264 | - serializedVersion: 2 265 | m_Icon: {fileID: 0} 266 | m_Width: 128 267 | m_Height: 128 268 | m_Kind: 0 269 | m_BuildTargetPlatformIcons: 270 | - m_BuildTarget: iPhone 271 | m_Icons: 272 | - m_Textures: [] 273 | m_Width: 180 274 | m_Height: 180 275 | m_Kind: 0 276 | m_SubKind: iPhone 277 | - m_Textures: [] 278 | m_Width: 120 279 | m_Height: 120 280 | m_Kind: 0 281 | m_SubKind: iPhone 282 | - m_Textures: [] 283 | m_Width: 167 284 | m_Height: 167 285 | m_Kind: 0 286 | m_SubKind: iPad 287 | - m_Textures: [] 288 | m_Width: 152 289 | m_Height: 152 290 | m_Kind: 0 291 | m_SubKind: iPad 292 | - m_Textures: [] 293 | m_Width: 76 294 | m_Height: 76 295 | m_Kind: 0 296 | m_SubKind: iPad 297 | - m_Textures: [] 298 | m_Width: 120 299 | m_Height: 120 300 | m_Kind: 3 301 | m_SubKind: iPhone 302 | - m_Textures: [] 303 | m_Width: 80 304 | m_Height: 80 305 | m_Kind: 3 306 | m_SubKind: iPhone 307 | - m_Textures: [] 308 | m_Width: 80 309 | m_Height: 80 310 | m_Kind: 3 311 | m_SubKind: iPad 312 | - m_Textures: [] 313 | m_Width: 40 314 | m_Height: 40 315 | m_Kind: 3 316 | m_SubKind: iPad 317 | - m_Textures: [] 318 | m_Width: 87 319 | m_Height: 87 320 | m_Kind: 1 321 | m_SubKind: iPhone 322 | - m_Textures: [] 323 | m_Width: 58 324 | m_Height: 58 325 | m_Kind: 1 326 | m_SubKind: iPhone 327 | - m_Textures: [] 328 | m_Width: 29 329 | m_Height: 29 330 | m_Kind: 1 331 | m_SubKind: iPhone 332 | - m_Textures: [] 333 | m_Width: 58 334 | m_Height: 58 335 | m_Kind: 1 336 | m_SubKind: iPad 337 | - m_Textures: [] 338 | m_Width: 29 339 | m_Height: 29 340 | m_Kind: 1 341 | m_SubKind: iPad 342 | - m_Textures: [] 343 | m_Width: 60 344 | m_Height: 60 345 | m_Kind: 2 346 | m_SubKind: iPhone 347 | - m_Textures: [] 348 | m_Width: 40 349 | m_Height: 40 350 | m_Kind: 2 351 | m_SubKind: iPhone 352 | - m_Textures: [] 353 | m_Width: 40 354 | m_Height: 40 355 | m_Kind: 2 356 | m_SubKind: iPad 357 | - m_Textures: [] 358 | m_Width: 20 359 | m_Height: 20 360 | m_Kind: 2 361 | m_SubKind: iPad 362 | - m_Textures: [] 363 | m_Width: 1024 364 | m_Height: 1024 365 | m_Kind: 4 366 | m_SubKind: App Store 367 | m_BuildTargetBatching: 368 | - m_BuildTarget: iPhone 369 | m_StaticBatching: 1 370 | m_DynamicBatching: 0 371 | m_BuildTargetGraphicsAPIs: 372 | - m_BuildTarget: AndroidPlayer 373 | m_APIs: 08000000 374 | m_Automatic: 0 375 | - m_BuildTarget: WindowsStandaloneSupport 376 | m_APIs: 020000001200000011000000 377 | m_Automatic: 0 378 | - m_BuildTarget: MacStandaloneSupport 379 | m_APIs: 1000000011000000 380 | m_Automatic: 0 381 | - m_BuildTarget: LinuxStandaloneSupport 382 | m_APIs: 11000000 383 | m_Automatic: 1 384 | - m_BuildTarget: MetroSupport 385 | m_APIs: 02000000 386 | m_Automatic: 1 387 | - m_BuildTarget: iOSSupport 388 | m_APIs: 10000000 389 | m_Automatic: 0 390 | m_BuildTargetVRSettings: 391 | - m_BuildTarget: Android 392 | m_Enabled: 0 393 | m_Devices: 394 | - Oculus 395 | - m_BuildTarget: Windows Store Apps 396 | m_Enabled: 0 397 | m_Devices: [] 398 | - m_BuildTarget: N3DS 399 | m_Enabled: 0 400 | m_Devices: [] 401 | - m_BuildTarget: PS3 402 | m_Enabled: 0 403 | m_Devices: [] 404 | - m_BuildTarget: PS4 405 | m_Enabled: 0 406 | m_Devices: 407 | - PlayStationVR 408 | - m_BuildTarget: PSM 409 | m_Enabled: 0 410 | m_Devices: [] 411 | - m_BuildTarget: PSP2 412 | m_Enabled: 0 413 | m_Devices: [] 414 | - m_BuildTarget: SamsungTV 415 | m_Enabled: 0 416 | m_Devices: [] 417 | - m_BuildTarget: Standalone 418 | m_Enabled: 0 419 | m_Devices: 420 | - Oculus 421 | - m_BuildTarget: Tizen 422 | m_Enabled: 0 423 | m_Devices: [] 424 | - m_BuildTarget: WebGL 425 | m_Enabled: 0 426 | m_Devices: [] 427 | - m_BuildTarget: WebPlayer 428 | m_Enabled: 0 429 | m_Devices: [] 430 | - m_BuildTarget: WiiU 431 | m_Enabled: 0 432 | m_Devices: [] 433 | - m_BuildTarget: Xbox360 434 | m_Enabled: 0 435 | m_Devices: [] 436 | - m_BuildTarget: XboxOne 437 | m_Enabled: 0 438 | m_Devices: [] 439 | - m_BuildTarget: iPhone 440 | m_Enabled: 0 441 | m_Devices: [] 442 | - m_BuildTarget: tvOS 443 | m_Enabled: 0 444 | m_Devices: [] 445 | m_BuildTargetEnableVuforiaSettings: [] 446 | openGLRequireES31: 0 447 | openGLRequireES31AEP: 0 448 | m_TemplateCustomTags: {} 449 | mobileMTRendering: 450 | Android: 1 451 | iPhone: 1 452 | tvOS: 1 453 | m_BuildTargetGroupLightmapEncodingQuality: 454 | - m_BuildTarget: Standalone 455 | m_EncodingQuality: 1 456 | - m_BuildTarget: XboxOne 457 | m_EncodingQuality: 1 458 | - m_BuildTarget: PS4 459 | m_EncodingQuality: 1 460 | m_BuildTargetGroupLightmapSettings: [] 461 | playModeTestRunnerEnabled: 0 462 | runPlayModeTestAsEditModeTest: 0 463 | actionOnDotNetUnhandledException: 1 464 | enableInternalProfiler: 0 465 | logObjCUncaughtExceptions: 1 466 | enableCrashReportAPI: 0 467 | cameraUsageDescription: AR BABY 468 | locationUsageDescription: 469 | microphoneUsageDescription: 470 | switchNetLibKey: 471 | switchSocketMemoryPoolSize: 6144 472 | switchSocketAllocatorPoolSize: 128 473 | switchSocketConcurrencyLimit: 14 474 | switchScreenResolutionBehavior: 2 475 | switchUseCPUProfiler: 0 476 | switchApplicationID: 0x0005000C10000001 477 | switchNSODependencies: 478 | switchTitleNames_0: 479 | switchTitleNames_1: 480 | switchTitleNames_2: 481 | switchTitleNames_3: 482 | switchTitleNames_4: 483 | switchTitleNames_5: 484 | switchTitleNames_6: 485 | switchTitleNames_7: 486 | switchTitleNames_8: 487 | switchTitleNames_9: 488 | switchTitleNames_10: 489 | switchTitleNames_11: 490 | switchTitleNames_12: 491 | switchTitleNames_13: 492 | switchTitleNames_14: 493 | switchPublisherNames_0: 494 | switchPublisherNames_1: 495 | switchPublisherNames_2: 496 | switchPublisherNames_3: 497 | switchPublisherNames_4: 498 | switchPublisherNames_5: 499 | switchPublisherNames_6: 500 | switchPublisherNames_7: 501 | switchPublisherNames_8: 502 | switchPublisherNames_9: 503 | switchPublisherNames_10: 504 | switchPublisherNames_11: 505 | switchPublisherNames_12: 506 | switchPublisherNames_13: 507 | switchPublisherNames_14: 508 | switchIcons_0: {fileID: 0} 509 | switchIcons_1: {fileID: 0} 510 | switchIcons_2: {fileID: 0} 511 | switchIcons_3: {fileID: 0} 512 | switchIcons_4: {fileID: 0} 513 | switchIcons_5: {fileID: 0} 514 | switchIcons_6: {fileID: 0} 515 | switchIcons_7: {fileID: 0} 516 | switchIcons_8: {fileID: 0} 517 | switchIcons_9: {fileID: 0} 518 | switchIcons_10: {fileID: 0} 519 | switchIcons_11: {fileID: 0} 520 | switchIcons_12: {fileID: 0} 521 | switchIcons_13: {fileID: 0} 522 | switchIcons_14: {fileID: 0} 523 | switchSmallIcons_0: {fileID: 0} 524 | switchSmallIcons_1: {fileID: 0} 525 | switchSmallIcons_2: {fileID: 0} 526 | switchSmallIcons_3: {fileID: 0} 527 | switchSmallIcons_4: {fileID: 0} 528 | switchSmallIcons_5: {fileID: 0} 529 | switchSmallIcons_6: {fileID: 0} 530 | switchSmallIcons_7: {fileID: 0} 531 | switchSmallIcons_8: {fileID: 0} 532 | switchSmallIcons_9: {fileID: 0} 533 | switchSmallIcons_10: {fileID: 0} 534 | switchSmallIcons_11: {fileID: 0} 535 | switchSmallIcons_12: {fileID: 0} 536 | switchSmallIcons_13: {fileID: 0} 537 | switchSmallIcons_14: {fileID: 0} 538 | switchManualHTML: 539 | switchAccessibleURLs: 540 | switchLegalInformation: 541 | switchMainThreadStackSize: 1048576 542 | switchPresenceGroupId: 0x0005000C10000001 543 | switchLogoHandling: 0 544 | switchReleaseVersion: 0 545 | switchDisplayVersion: 1.0.0 546 | switchStartupUserAccount: 0 547 | switchTouchScreenUsage: 0 548 | switchSupportedLanguagesMask: 0 549 | switchLogoType: 0 550 | switchApplicationErrorCodeCategory: 551 | switchUserAccountSaveDataSize: 0 552 | switchUserAccountSaveDataJournalSize: 0 553 | switchApplicationAttribute: 0 554 | switchCardSpecSize: 4 555 | switchCardSpecClock: 25 556 | switchRatingsMask: 0 557 | switchRatingsInt_0: 0 558 | switchRatingsInt_1: 0 559 | switchRatingsInt_2: 0 560 | switchRatingsInt_3: 0 561 | switchRatingsInt_4: 0 562 | switchRatingsInt_5: 0 563 | switchRatingsInt_6: 0 564 | switchRatingsInt_7: 0 565 | switchRatingsInt_8: 0 566 | switchRatingsInt_9: 0 567 | switchRatingsInt_10: 0 568 | switchRatingsInt_11: 0 569 | switchLocalCommunicationIds_0: 0x0005000C10000001 570 | switchLocalCommunicationIds_1: 571 | switchLocalCommunicationIds_2: 572 | switchLocalCommunicationIds_3: 573 | switchLocalCommunicationIds_4: 574 | switchLocalCommunicationIds_5: 575 | switchLocalCommunicationIds_6: 576 | switchLocalCommunicationIds_7: 577 | switchParentalControl: 0 578 | switchAllowsScreenshot: 1 579 | switchAllowsVideoCapturing: 1 580 | switchAllowsRuntimeAddOnContentInstall: 0 581 | switchDataLossConfirmation: 0 582 | switchUserAccountLockEnabled: 0 583 | switchSupportedNpadStyles: 3 584 | switchNativeFsCacheSize: 32 585 | switchIsHoldTypeHorizontal: 0 586 | switchSupportedNpadCount: 8 587 | switchSocketConfigEnabled: 0 588 | switchTcpInitialSendBufferSize: 32 589 | switchTcpInitialReceiveBufferSize: 64 590 | switchTcpAutoSendBufferSizeMax: 256 591 | switchTcpAutoReceiveBufferSizeMax: 256 592 | switchUdpSendBufferSize: 9 593 | switchUdpReceiveBufferSize: 42 594 | switchSocketBufferEfficiency: 4 595 | switchSocketInitializeEnabled: 1 596 | switchNetworkInterfaceManagerInitializeEnabled: 1 597 | switchPlayerConnectionEnabled: 1 598 | ps4NPAgeRating: 12 599 | ps4NPTitleSecret: 600 | ps4NPTrophyPackPath: 601 | ps4ParentalLevel: 1 602 | ps4ContentID: ED1633-NPXX51362_00-0000000000000000 603 | ps4Category: 0 604 | ps4MasterVersion: 01.00 605 | ps4AppVersion: 01.00 606 | ps4AppType: 0 607 | ps4ParamSfxPath: 608 | ps4VideoOutPixelFormat: 0 609 | ps4VideoOutInitialWidth: 1920 610 | ps4VideoOutBaseModeInitialWidth: 1920 611 | ps4VideoOutReprojectionRate: 120 612 | ps4PronunciationXMLPath: 613 | ps4PronunciationSIGPath: 614 | ps4BackgroundImagePath: 615 | ps4StartupImagePath: 616 | ps4StartupImagesFolder: 617 | ps4IconImagesFolder: 618 | ps4SaveDataImagePath: 619 | ps4SdkOverride: 620 | ps4BGMPath: 621 | ps4ShareFilePath: 622 | ps4ShareOverlayImagePath: 623 | ps4PrivacyGuardImagePath: 624 | ps4NPtitleDatPath: 625 | ps4RemotePlayKeyAssignment: -1 626 | ps4RemotePlayKeyMappingDir: 627 | ps4PlayTogetherPlayerCount: 0 628 | ps4EnterButtonAssignment: 1 629 | ps4ApplicationParam1: 0 630 | ps4ApplicationParam2: 0 631 | ps4ApplicationParam3: 0 632 | ps4ApplicationParam4: 0 633 | ps4DownloadDataSize: 0 634 | ps4GarlicHeapSize: 2048 635 | ps4ProGarlicHeapSize: 2560 636 | ps4Passcode: eaoEiIgxIX4a2dREbbSqWy6yhKIDCdJO 637 | ps4pnSessions: 1 638 | ps4pnPresence: 1 639 | ps4pnFriends: 1 640 | ps4pnGameCustomData: 1 641 | playerPrefsSupport: 0 642 | enableApplicationExit: 0 643 | resetTempFolder: 1 644 | restrictedAudioUsageRights: 0 645 | ps4UseResolutionFallback: 0 646 | ps4ReprojectionSupport: 0 647 | ps4UseAudio3dBackend: 0 648 | ps4SocialScreenEnabled: 0 649 | ps4ScriptOptimizationLevel: 0 650 | ps4Audio3dVirtualSpeakerCount: 14 651 | ps4attribCpuUsage: 0 652 | ps4PatchPkgPath: 653 | ps4PatchLatestPkgPath: 654 | ps4PatchChangeinfoPath: 655 | ps4PatchDayOne: 0 656 | ps4attribUserManagement: 0 657 | ps4attribMoveSupport: 0 658 | ps4attrib3DSupport: 0 659 | ps4attribShareSupport: 0 660 | ps4attribExclusiveVR: 0 661 | ps4disableAutoHideSplash: 0 662 | ps4videoRecordingFeaturesUsed: 0 663 | ps4contentSearchFeaturesUsed: 0 664 | ps4attribEyeToEyeDistanceSettingVR: 0 665 | ps4IncludedModules: [] 666 | monoEnv: 667 | splashScreenBackgroundSourceLandscape: {fileID: 0} 668 | splashScreenBackgroundSourcePortrait: {fileID: 0} 669 | spritePackerPolicy: 670 | webGLMemorySize: 256 671 | webGLExceptionSupport: 1 672 | webGLNameFilesAsHashes: 0 673 | webGLDataCaching: 0 674 | webGLDebugSymbols: 0 675 | webGLEmscriptenArgs: 676 | webGLModulesDirectory: 677 | webGLTemplate: APPLICATION:Default 678 | webGLAnalyzeBuildSize: 0 679 | webGLUseEmbeddedResources: 0 680 | webGLCompressionFormat: 1 681 | webGLLinkerTarget: 1 682 | webGLThreadsSupport: 0 683 | scriptingDefineSymbols: {} 684 | platformArchitecture: 685 | iPhone: 2 686 | scriptingBackend: 687 | Android: 0 688 | Standalone: 0 689 | WP8: 2 690 | WebGL: 1 691 | Windows Store Apps: 2 692 | iPhone: 1 693 | il2cppCompilerConfiguration: {} 694 | managedStrippingLevel: {} 695 | incrementalIl2cppBuild: {} 696 | allowUnsafeCode: 0 697 | additionalIl2CppArgs: 698 | scriptingRuntimeVersion: 1 699 | apiCompatibilityLevelPerPlatform: {} 700 | m_RenderingPath: 1 701 | m_MobileRenderingPath: 1 702 | metroPackageName: UnityProject 703 | metroPackageVersion: 1.0.0.0 704 | metroCertificatePath: Assets\WSATestCertificate.pfx 705 | metroCertificatePassword: 706 | metroCertificateSubject: Unity Technologies 707 | metroCertificateIssuer: Unity Technologies 708 | metroCertificateNotAfter: 806f443d01d7d201 709 | metroApplicationDescription: UnityProject 710 | wsaImages: {} 711 | metroTileShortName: Native Rendering Plugin Example 712 | metroTileShowName: 0 713 | metroMediumTileShowName: 0 714 | metroLargeTileShowName: 0 715 | metroWideTileShowName: 0 716 | metroSupportStreamingInstall: 0 717 | metroLastRequiredScene: 0 718 | metroDefaultTileSize: 1 719 | metroTileForegroundText: 1 720 | metroTileBackgroundColor: {r: 0, g: 0, b: 0, a: 1} 721 | metroSplashScreenBackgroundColor: {r: 0, g: 0, b: 0, a: 1} 722 | metroSplashScreenUseBackgroundColor: 0 723 | platformCapabilities: 724 | WindowsStoreApps: 725 | AllJoyn: False 726 | BlockedChatMessages: False 727 | Bluetooth: False 728 | Chat: False 729 | CodeGeneration: False 730 | EnterpriseAuthentication: False 731 | HumanInterfaceDevice: False 732 | InternetClient: False 733 | InternetClientServer: False 734 | Location: False 735 | Microphone: False 736 | MusicLibrary: False 737 | Objects3D: False 738 | PhoneCall: False 739 | PicturesLibrary: False 740 | PrivateNetworkClientServer: False 741 | Proximity: False 742 | RemovableStorage: False 743 | SharedUserCertificates: False 744 | UserAccountInformation: False 745 | VideosLibrary: False 746 | VoipCall: False 747 | WebCam: False 748 | metroTargetDeviceFamilies: {} 749 | metroFTAName: 750 | metroFTAFileTypes: [] 751 | metroProtocolName: 752 | metroCompilationOverrides: 1 753 | XboxOneProductId: 754 | XboxOneUpdateKey: 755 | XboxOneSandboxId: 756 | XboxOneContentId: 757 | XboxOneTitleId: 758 | XboxOneSCId: 759 | XboxOneGameOsOverridePath: 760 | XboxOnePackagingOverridePath: 761 | XboxOneAppManifestOverridePath: 762 | XboxOneVersion: 1.0.0.0 763 | XboxOnePackageEncryption: 0 764 | XboxOnePackageUpdateGranularity: 2 765 | XboxOneDescription: 766 | XboxOneLanguage: 767 | - enus 768 | XboxOneCapability: [] 769 | XboxOneGameRating: {} 770 | XboxOneIsContentPackage: 0 771 | XboxOneEnableGPUVariability: 0 772 | XboxOneSockets: {} 773 | XboxOneSplashScreen: {fileID: 0} 774 | XboxOneAllowedProductIds: [] 775 | XboxOnePersistentLocalStorageSize: 0 776 | XboxOneXTitleMemory: 8 777 | xboxOneScriptCompiler: 1 778 | XboxOneOverrideIdentityName: 779 | vrEditorSettings: 780 | daydream: 781 | daydreamIconForeground: {fileID: 0} 782 | daydreamIconBackground: {fileID: 0} 783 | cloudServicesEnabled: 784 | Analytics: 0 785 | Build: 0 786 | Collab: 0 787 | ErrorHub: 0 788 | Game_Performance: 0 789 | Hub: 0 790 | Purchasing: 0 791 | UNet: 0 792 | Unity_Ads: 0 793 | luminIcon: 794 | m_Name: 795 | m_ModelFolderPath: 796 | m_PortalFolderPath: 797 | luminCert: 798 | m_CertPath: 799 | m_PrivateKeyPath: 800 | luminIsChannelApp: 0 801 | luminVersion: 802 | m_VersionCode: 1 803 | m_VersionName: 804 | facebookSdkVersion: 7.9.4 805 | facebookAppId: 806 | facebookCookies: 1 807 | facebookLogging: 1 808 | facebookStatus: 1 809 | facebookXfbml: 0 810 | facebookFrictionlessRequests: 1 811 | apiCompatibilityLevel: 6 812 | cloudProjectId: 813 | framebufferDepthMemorylessMode: 0 814 | projectName: 815 | organizationId: 816 | cloudEnabled: 0 817 | enableNativePlatformBackendsForNewInputSystem: 0 818 | disableOldInputManagerSupport: 0 819 | legacyClampBlendShapeWeights: 1 820 | -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.0f2 2 | -------------------------------------------------------------------------------- /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: 0 8 | m_QualitySettings: 9 | - serializedVersion: 2 10 | name: Good 11 | pixelLightCount: 2 12 | shadows: 1 13 | shadowResolution: 1 14 | shadowProjection: 0 15 | shadowCascades: 2 16 | shadowDistance: 20 17 | shadowNearPlaneOffset: 2 18 | shadowCascade2Split: 0.33333334 19 | shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} 20 | blendWeights: 2 21 | textureQuality: 0 22 | anisotropicTextures: 1 23 | antiAliasing: 0 24 | softParticles: 0 25 | softVegetation: 1 26 | realtimeReflectionProbes: 1 27 | billboardsFaceCameraPosition: 1 28 | vSyncCount: 1 29 | lodBias: 1 30 | maximumLODLevel: 0 31 | particleRaycastBudget: 256 32 | asyncUploadTimeSlice: 2 33 | asyncUploadBufferSize: 4 34 | excludedTargetPlatforms: [] 35 | m_PerPlatformDefaultQuality: 36 | Android: 0 37 | FlashPlayer: 0 38 | GLES Emulation: 0 39 | PS3: 0 40 | Standalone: 0 41 | Web: 0 42 | Wii: 0 43 | XBOX360: 0 44 | iPhone: 0 45 | -------------------------------------------------------------------------------- /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 | - ARKitPlane 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: .0199999996 7 | Maximum Allowed Timestep: .333333343 8 | m_TimeScale: 1 9 | -------------------------------------------------------------------------------- /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: 1 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/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 | # UnityARKitRecorder 2 | You can record the face tracking data with ARKit remote. 3 | 4 | ## Install 5 | 6 | 1. Clone or download [Unity-ARKit-Plugin](https://bitbucket.org/Unity-Technologies/unity-arkit-plugin/) UnityARKitRecorder_01 7 | 1. Put UnityARKitPlugin folder in it to this Assets folder. 8 | 1. Need ARKitRemote. If you don't have it yet, you should build UnityARKitPlugin/ARKitRemote/UnityARKitRemote and install into your iPhone. 9 | 10 | ## How to use 11 | 12 | ### 1. Record 13 | 14 | 1. Open ARKitRecorder scene in ARKitRecorder/Scenes/ Unity_2018_3_0f2_-_ARKitRecorder_unity_-_UnityARKitRecorder_-_iPhone__iPod_Touch_and_iPad__Metal_ 15 | 1. Click UnityARKitRecorder game object and see inspector. 16 | 1. Change recording mode to 'RECORDING'. 17 | 1. Connect iPhoneX/XS to your Mac with USB. 18 | 1. Start ARKitRemote on your iPhoneX/XS. 19 | 1. Select 'iPhonePlayer' on Console window Editor tab. スクリーンショット_2019-04-28_16_27_51-2 20 | 1. Play on the Unity scene. 21 | 1. Click 'Start Remote ARKit FaceTracking Session' Button. 22 | 1. Record for your face tracking. then stop it. 23 | 1. You can see the file 'faceTrackingData.bytes' on the top of the project folder. 24 | 25 | ### 2. Play 26 | 27 | 1. Change recording mode to 'PLAYING' of UnityARKitRecorder game object.Image from Gyazo 28 | 1. Play on the Unity scene. 29 | 1. You can see the recorded video and tracking data. 30 | --------------------------------------------------------------------------------