@webspatial/platform-visionos 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (64) hide show
  1. package/LICENSE +21 -0
  2. package/Packages/RealityKitContent/.build/workspace-state.json +7 -0
  3. package/Packages/RealityKitContent/.swiftpm/xcode/xcuserdata/bytedance.xcuserdatad/xcschemes/xcschememanagement.plist +14 -0
  4. package/Packages/RealityKitContent/Package.realitycomposerpro/ProjectData/main.json +11 -0
  5. package/Packages/RealityKitContent/Package.realitycomposerpro/WorkspaceData/SceneMetadataList.json +112 -0
  6. package/Packages/RealityKitContent/Package.realitycomposerpro/WorkspaceData/Settings.rcprojectdata +17 -0
  7. package/Packages/RealityKitContent/Package.swift +27 -0
  8. package/Packages/RealityKitContent/README.md +3 -0
  9. package/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/Immersive.usda +50 -0
  10. package/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/Materials/GridMaterial.usda +216 -0
  11. package/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.rkassets/Scene.usda +59 -0
  12. package/Packages/RealityKitContent/Sources/RealityKitContent/RealityKitContent.swift +4 -0
  13. package/package.json +27 -0
  14. package/web-spatial/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Contents.json +12 -0
  15. package/web-spatial/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Contents.json +6 -0
  16. package/web-spatial/Assets.xcassets/AppIcon.solidimagestack/Contents.json +17 -0
  17. package/web-spatial/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Contents.json +12 -0
  18. package/web-spatial/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Contents.json +6 -0
  19. package/web-spatial/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Contents.json +12 -0
  20. package/web-spatial/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Contents.json +6 -0
  21. package/web-spatial/Assets.xcassets/Contents.json +6 -0
  22. package/web-spatial/Info.plist +33 -0
  23. package/web-spatial/Preview Content/Preview Assets.xcassets/Contents.json +6 -0
  24. package/web-spatial/libs/EventEmitter.swift +32 -0
  25. package/web-spatial/libs/SpatialComponent.swift +31 -0
  26. package/web-spatial/libs/SpatialEntity.swift +179 -0
  27. package/web-spatial/libs/SpatialInputComponent.swift +26 -0
  28. package/web-spatial/libs/SpatialMeshResource.swift +19 -0
  29. package/web-spatial/libs/SpatialModel3DComponent.swift +51 -0
  30. package/web-spatial/libs/SpatialModelComponent.swift +32 -0
  31. package/web-spatial/libs/SpatialObject.swift +144 -0
  32. package/web-spatial/libs/SpatialPhysicallyBasedMaterial.swift +19 -0
  33. package/web-spatial/libs/SpatialViewComponent.swift +15 -0
  34. package/web-spatial/libs/SpatialWindowComponent.swift +443 -0
  35. package/web-spatial/libs/SpatialWindowContainer.swift +149 -0
  36. package/web-spatial/libs/Utils/CommandManager.swift +800 -0
  37. package/web-spatial/libs/Utils/Logger.swift +36 -0
  38. package/web-spatial/libs/Utils/SceneManager.swift +108 -0
  39. package/web-spatial/libs/Utils/WindowContainerMgr.swift +117 -0
  40. package/web-spatial/libs/json/JsonParser.swift +52 -0
  41. package/web-spatial/libs/uiKitDelegate/Window.swift +34 -0
  42. package/web-spatial/libs/webView/UpdateSystem.swift +33 -0
  43. package/web-spatial/libs/webView/backend/NativeWebView.swift +319 -0
  44. package/web-spatial/libs/webView/manifest.swift +92 -0
  45. package/web-spatial/static-web/index.html +9 -0
  46. package/web-spatial/views/HideViewModifier.swift +17 -0
  47. package/web-spatial/views/ImmersiveView.swift +24 -0
  48. package/web-spatial/views/LoadingView.swift +29 -0
  49. package/web-spatial/views/MaterialWithBorderCornerModifier.swift +82 -0
  50. package/web-spatial/views/OpenDismissHandlerUI.swift +52 -0
  51. package/web-spatial/views/PlainWindowContainerView.swift +84 -0
  52. package/web-spatial/views/SpatialModel3DView.swift +193 -0
  53. package/web-spatial/views/SpatialViewUI.swift +168 -0
  54. package/web-spatial/views/SpatialWebViewUI.swift +193 -0
  55. package/web-spatial/views/VolumetricWindowContainerView.swift +38 -0
  56. package/web-spatial/views/ui/NavView.swift +125 -0
  57. package/web-spatial/web_spatialApp.swift +158 -0
  58. package/web-spatial.xcodeproj/project.pbxproj +686 -0
  59. package/web-spatial.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  60. package/web-spatial.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  61. package/web-spatial.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings +5 -0
  62. package/web-spatial.xcodeproj/project.xcworkspace/xcuserdata/bytedance.xcuserdatad/WorkspaceSettings.xcsettings +14 -0
  63. package/web-spatial.xcodeproj/xcshareddata/xcschemes/web-spatial.xcscheme +115 -0
  64. package/web-spatialTests/web_spatialTests.swift +34 -0
@@ -0,0 +1,686 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 56;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 2B0B1C102C494E5400E644F9 /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B0B1C0F2C494E5400E644F9 /* Logger.swift */; };
11
+ 2B0B430A2CBE21580003CEF3 /* CommandManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B0B43092CBE21540003CEF3 /* CommandManager.swift */; };
12
+ 2B23CB3F2D0BEE6900E70D95 /* WindowContainerMgr.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B23CB3E2D0BEE6900E70D95 /* WindowContainerMgr.swift */; };
13
+ 2B2F1D692BEBFAAA006897EE /* RealityKitContent in Frameworks */ = {isa = PBXBuildFile; productRef = 2B2F1D682BEBFAAA006897EE /* RealityKitContent */; };
14
+ 2B2F1D6B2BEBFAAA006897EE /* web_spatialApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B2F1D6A2BEBFAAA006897EE /* web_spatialApp.swift */; };
15
+ 2B2F1D6F2BEBFAAA006897EE /* ImmersiveView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B2F1D6E2BEBFAAA006897EE /* ImmersiveView.swift */; };
16
+ 2B2F1D712BEBFAAC006897EE /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2B2F1D702BEBFAAC006897EE /* Assets.xcassets */; };
17
+ 2B2F1D742BEBFAAC006897EE /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 2B2F1D732BEBFAAC006897EE /* Preview Assets.xcassets */; };
18
+ 2B2F1D7F2BEBFAAD006897EE /* web_spatialTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B2F1D7E2BEBFAAD006897EE /* web_spatialTests.swift */; };
19
+ 2B2F1D8F2BED4D7A006897EE /* JsonParser.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B2F1D8E2BED4D7A006897EE /* JsonParser.swift */; };
20
+ 2B2F1D912BED61A8006897EE /* NativeWebView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B2F1D902BED61A8006897EE /* NativeWebView.swift */; };
21
+ 2B2F1D992BEDA8EF006897EE /* VolumetricWindowContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B2F1D982BEDA8EF006897EE /* VolumetricWindowContainerView.swift */; };
22
+ 2B2F1D9B2BEDA975006897EE /* PlainWindowContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B2F1D9A2BEDA975006897EE /* PlainWindowContainerView.swift */; };
23
+ 2B37E8E12D002C4D0096749A /* MaterialWithBorderCornerModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B37E8E02D002C2B0096749A /* MaterialWithBorderCornerModifier.swift */; };
24
+ 2B67BBAC2D151C1A00BBC689 /* manifest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B67BBAB2D151C1500BBC689 /* manifest.swift */; };
25
+ 2B85209C2BFD5FDB0038FE29 /* UpdateSystem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B85209B2BFD5FDB0038FE29 /* UpdateSystem.swift */; };
26
+ 2B9909932C3605A9004826D1 /* Window.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B9909922C3605A9004826D1 /* Window.swift */; };
27
+ 2BA06D712D4380C60020B505 /* LoadingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BA06D702D4380C30020B505 /* LoadingView.swift */; };
28
+ 2BAC1BE02CDC34500022E29B /* SpatialViewComponent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BAC1BDF2CDC34410022E29B /* SpatialViewComponent.swift */; };
29
+ 2BAC1BE22CDC49040022E29B /* SpatialViewUI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BAC1BE12CDC49000022E29B /* SpatialViewUI.swift */; };
30
+ 2BB28CCC2C747DB0007F4BDC /* OpenDismissHandlerUI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BB28CCB2C747DB0007F4BDC /* OpenDismissHandlerUI.swift */; };
31
+ 2BC261222D38F1DA00BCA977 /* NavView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BC261202D38F1DA00BCA977 /* NavView.swift */; };
32
+ 2BC9A2212D1E829B00912170 /* HideViewModifier.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BC9A2202D1E829B00912170 /* HideViewModifier.swift */; };
33
+ 2BD510562D54A30D0001E5E6 /* SceneManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BD510552D54A2FF0001E5E6 /* SceneManager.swift */; };
34
+ 2BDBED5F2D3F885A0065443F /* SpatialModel3DComponent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BDBED5E2D3F885A0065443F /* SpatialModel3DComponent.swift */; };
35
+ 2BDBED632D3FE8EC0065443F /* SpatialModel3DView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BDBED622D3FE8EA0065443F /* SpatialModel3DView.swift */; };
36
+ 2BDBF9B62C4ED9F600D269D7 /* static-web in Resources */ = {isa = PBXBuildFile; fileRef = 2BDBF9B52C4ED9F600D269D7 /* static-web */; };
37
+ 2BE1E8FA2C90332400EAE76A /* SpatialObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BE1E8F92C90331C00EAE76A /* SpatialObject.swift */; };
38
+ 2BE1E8FF2C90359400EAE76A /* SpatialEntity.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BE1E8FE2C90359400EAE76A /* SpatialEntity.swift */; };
39
+ 2BE1E9012C9035AB00EAE76A /* SpatialComponent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BE1E9002C9035AB00EAE76A /* SpatialComponent.swift */; };
40
+ 2BE1E9032C9035DB00EAE76A /* SpatialInputComponent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BE1E9022C9035DB00EAE76A /* SpatialInputComponent.swift */; };
41
+ 2BE1E9052C90375F00EAE76A /* SpatialWindowContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BE1E9042C90375F00EAE76A /* SpatialWindowContainer.swift */; };
42
+ 2BE1E9072C903E2C00EAE76A /* EventEmitter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BE1E9062C903E2C00EAE76A /* EventEmitter.swift */; };
43
+ 2BE1E9092C90497C00EAE76A /* SpatialWindowComponent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BE1E9082C90497C00EAE76A /* SpatialWindowComponent.swift */; };
44
+ 2BE1E90B2C905DA300EAE76A /* SpatialMeshResource.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BE1E90A2C905DA300EAE76A /* SpatialMeshResource.swift */; };
45
+ 2BE1E90D2C905FB800EAE76A /* SpatialPhysicallyBasedMaterial.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BE1E90C2C905FB800EAE76A /* SpatialPhysicallyBasedMaterial.swift */; };
46
+ 2BE1E9112C90795D00EAE76A /* SpatialModelComponent.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BE1E9102C90795D00EAE76A /* SpatialModelComponent.swift */; };
47
+ 2BE1E9152C9194DC00EAE76A /* SpatialWebViewUI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2BE1E9142C9194DC00EAE76A /* SpatialWebViewUI.swift */; };
48
+ /* End PBXBuildFile section */
49
+
50
+ /* Begin PBXContainerItemProxy section */
51
+ 2B2F1D7B2BEBFAAD006897EE /* PBXContainerItemProxy */ = {
52
+ isa = PBXContainerItemProxy;
53
+ containerPortal = 2B2F1D5B2BEBFAAA006897EE /* Project object */;
54
+ proxyType = 1;
55
+ remoteGlobalIDString = 2B2F1D622BEBFAAA006897EE;
56
+ remoteInfo = "web-spatial";
57
+ };
58
+ /* End PBXContainerItemProxy section */
59
+
60
+ /* Begin PBXFileReference section */
61
+ 2B0B1C0F2C494E5400E644F9 /* Logger.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Logger.swift; sourceTree = "<group>"; };
62
+ 2B0B43092CBE21540003CEF3 /* CommandManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommandManager.swift; sourceTree = "<group>"; };
63
+ 2B23CB3E2D0BEE6900E70D95 /* WindowContainerMgr.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WindowContainerMgr.swift; sourceTree = "<group>"; };
64
+ 2B2F1D632BEBFAAA006897EE /* web-spatial.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "web-spatial.app"; sourceTree = BUILT_PRODUCTS_DIR; };
65
+ 2B2F1D672BEBFAAA006897EE /* RealityKitContent */ = {isa = PBXFileReference; lastKnownFileType = wrapper; path = RealityKitContent; sourceTree = "<group>"; };
66
+ 2B2F1D6A2BEBFAAA006897EE /* web_spatialApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = web_spatialApp.swift; sourceTree = "<group>"; };
67
+ 2B2F1D6E2BEBFAAA006897EE /* ImmersiveView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ImmersiveView.swift; sourceTree = "<group>"; };
68
+ 2B2F1D702BEBFAAC006897EE /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
69
+ 2B2F1D732BEBFAAC006897EE /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = "<group>"; };
70
+ 2B2F1D752BEBFAAC006897EE /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
71
+ 2B2F1D7A2BEBFAAD006897EE /* web-spatialTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "web-spatialTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
72
+ 2B2F1D7E2BEBFAAD006897EE /* web_spatialTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = web_spatialTests.swift; sourceTree = "<group>"; };
73
+ 2B2F1D8E2BED4D7A006897EE /* JsonParser.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = JsonParser.swift; sourceTree = "<group>"; };
74
+ 2B2F1D902BED61A8006897EE /* NativeWebView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NativeWebView.swift; sourceTree = "<group>"; };
75
+ 2B2F1D982BEDA8EF006897EE /* VolumetricWindowContainerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = VolumetricWindowContainerView.swift; sourceTree = "<group>"; };
76
+ 2B2F1D9A2BEDA975006897EE /* PlainWindowContainerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PlainWindowContainerView.swift; sourceTree = "<group>"; };
77
+ 2B37E8E02D002C2B0096749A /* MaterialWithBorderCornerModifier.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MaterialWithBorderCornerModifier.swift; sourceTree = "<group>"; };
78
+ 2B67BBAB2D151C1500BBC689 /* manifest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = manifest.swift; sourceTree = "<group>"; };
79
+ 2B85209B2BFD5FDB0038FE29 /* UpdateSystem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UpdateSystem.swift; sourceTree = "<group>"; };
80
+ 2B9909922C3605A9004826D1 /* Window.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Window.swift; sourceTree = "<group>"; };
81
+ 2BA06D702D4380C30020B505 /* LoadingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoadingView.swift; sourceTree = "<group>"; };
82
+ 2BAC1BDF2CDC34410022E29B /* SpatialViewComponent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpatialViewComponent.swift; sourceTree = "<group>"; };
83
+ 2BAC1BE12CDC49000022E29B /* SpatialViewUI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpatialViewUI.swift; sourceTree = "<group>"; };
84
+ 2BB28CCB2C747DB0007F4BDC /* OpenDismissHandlerUI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OpenDismissHandlerUI.swift; sourceTree = "<group>"; };
85
+ 2BC261202D38F1DA00BCA977 /* NavView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NavView.swift; sourceTree = "<group>"; };
86
+ 2BC9A2202D1E829B00912170 /* HideViewModifier.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HideViewModifier.swift; sourceTree = "<group>"; };
87
+ 2BD510552D54A2FF0001E5E6 /* SceneManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneManager.swift; sourceTree = "<group>"; };
88
+ 2BDBED5E2D3F885A0065443F /* SpatialModel3DComponent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpatialModel3DComponent.swift; sourceTree = "<group>"; };
89
+ 2BDBED622D3FE8EA0065443F /* SpatialModel3DView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpatialModel3DView.swift; sourceTree = "<group>"; };
90
+ 2BDBF9B52C4ED9F600D269D7 /* static-web */ = {isa = PBXFileReference; lastKnownFileType = folder; path = "static-web"; sourceTree = "<group>"; };
91
+ 2BE1E8F92C90331C00EAE76A /* SpatialObject.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpatialObject.swift; sourceTree = "<group>"; };
92
+ 2BE1E8FE2C90359400EAE76A /* SpatialEntity.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpatialEntity.swift; sourceTree = "<group>"; };
93
+ 2BE1E9002C9035AB00EAE76A /* SpatialComponent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpatialComponent.swift; sourceTree = "<group>"; };
94
+ 2BE1E9022C9035DB00EAE76A /* SpatialInputComponent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpatialInputComponent.swift; sourceTree = "<group>"; };
95
+ 2BE1E9042C90375F00EAE76A /* SpatialWindowContainer.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpatialWindowContainer.swift; sourceTree = "<group>"; };
96
+ 2BE1E9062C903E2C00EAE76A /* EventEmitter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EventEmitter.swift; sourceTree = "<group>"; };
97
+ 2BE1E9082C90497C00EAE76A /* SpatialWindowComponent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpatialWindowComponent.swift; sourceTree = "<group>"; };
98
+ 2BE1E90A2C905DA300EAE76A /* SpatialMeshResource.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpatialMeshResource.swift; sourceTree = "<group>"; };
99
+ 2BE1E90C2C905FB800EAE76A /* SpatialPhysicallyBasedMaterial.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpatialPhysicallyBasedMaterial.swift; sourceTree = "<group>"; };
100
+ 2BE1E9102C90795D00EAE76A /* SpatialModelComponent.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpatialModelComponent.swift; sourceTree = "<group>"; };
101
+ 2BE1E9142C9194DC00EAE76A /* SpatialWebViewUI.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpatialWebViewUI.swift; sourceTree = "<group>"; };
102
+ /* End PBXFileReference section */
103
+
104
+ /* Begin PBXFrameworksBuildPhase section */
105
+ 2B2F1D602BEBFAAA006897EE /* Frameworks */ = {
106
+ isa = PBXFrameworksBuildPhase;
107
+ buildActionMask = 2147483647;
108
+ files = (
109
+ 2B2F1D692BEBFAAA006897EE /* RealityKitContent in Frameworks */,
110
+ );
111
+ runOnlyForDeploymentPostprocessing = 0;
112
+ };
113
+ 2B2F1D772BEBFAAD006897EE /* Frameworks */ = {
114
+ isa = PBXFrameworksBuildPhase;
115
+ buildActionMask = 2147483647;
116
+ files = (
117
+ );
118
+ runOnlyForDeploymentPostprocessing = 0;
119
+ };
120
+ /* End PBXFrameworksBuildPhase section */
121
+
122
+ /* Begin PBXGroup section */
123
+ 2B0B1C0E2C494E4100E644F9 /* Utils */ = {
124
+ isa = PBXGroup;
125
+ children = (
126
+ 2BD510552D54A2FF0001E5E6 /* SceneManager.swift */,
127
+ 2B0B43092CBE21540003CEF3 /* CommandManager.swift */,
128
+ 2B0B1C0F2C494E5400E644F9 /* Logger.swift */,
129
+ 2B23CB3E2D0BEE6900E70D95 /* WindowContainerMgr.swift */,
130
+ );
131
+ path = Utils;
132
+ sourceTree = "<group>";
133
+ };
134
+ 2B2F1D5A2BEBFAAA006897EE = {
135
+ isa = PBXGroup;
136
+ children = (
137
+ 2B2F1D652BEBFAAA006897EE /* web-spatial */,
138
+ 2B2F1D662BEBFAAA006897EE /* Packages */,
139
+ 2B2F1D7D2BEBFAAD006897EE /* web-spatialTests */,
140
+ 2B2F1D642BEBFAAA006897EE /* Products */,
141
+ );
142
+ sourceTree = "<group>";
143
+ };
144
+ 2B2F1D642BEBFAAA006897EE /* Products */ = {
145
+ isa = PBXGroup;
146
+ children = (
147
+ 2B2F1D632BEBFAAA006897EE /* web-spatial.app */,
148
+ 2B2F1D7A2BEBFAAD006897EE /* web-spatialTests.xctest */,
149
+ );
150
+ name = Products;
151
+ sourceTree = "<group>";
152
+ };
153
+ 2B2F1D652BEBFAAA006897EE /* web-spatial */ = {
154
+ isa = PBXGroup;
155
+ children = (
156
+ 2BDBF9B52C4ED9F600D269D7 /* static-web */,
157
+ 2B2F1D972BEDA8BD006897EE /* views */,
158
+ 2B2F1D8A2BED4CD0006897EE /* libs */,
159
+ 2B2F1D6A2BEBFAAA006897EE /* web_spatialApp.swift */,
160
+ 2B2F1D702BEBFAAC006897EE /* Assets.xcassets */,
161
+ 2B2F1D752BEBFAAC006897EE /* Info.plist */,
162
+ 2B2F1D722BEBFAAC006897EE /* Preview Content */,
163
+ );
164
+ path = "web-spatial";
165
+ sourceTree = "<group>";
166
+ };
167
+ 2B2F1D662BEBFAAA006897EE /* Packages */ = {
168
+ isa = PBXGroup;
169
+ children = (
170
+ 2B2F1D672BEBFAAA006897EE /* RealityKitContent */,
171
+ );
172
+ path = Packages;
173
+ sourceTree = "<group>";
174
+ };
175
+ 2B2F1D722BEBFAAC006897EE /* Preview Content */ = {
176
+ isa = PBXGroup;
177
+ children = (
178
+ 2B2F1D732BEBFAAC006897EE /* Preview Assets.xcassets */,
179
+ );
180
+ path = "Preview Content";
181
+ sourceTree = "<group>";
182
+ };
183
+ 2B2F1D7D2BEBFAAD006897EE /* web-spatialTests */ = {
184
+ isa = PBXGroup;
185
+ children = (
186
+ 2B2F1D7E2BEBFAAD006897EE /* web_spatialTests.swift */,
187
+ );
188
+ path = "web-spatialTests";
189
+ sourceTree = "<group>";
190
+ };
191
+ 2B2F1D8A2BED4CD0006897EE /* libs */ = {
192
+ isa = PBXGroup;
193
+ children = (
194
+ 2BAC1BDF2CDC34410022E29B /* SpatialViewComponent.swift */,
195
+ 2BDBED5E2D3F885A0065443F /* SpatialModel3DComponent.swift */,
196
+ 2BE1E8F92C90331C00EAE76A /* SpatialObject.swift */,
197
+ 2BE1E90A2C905DA300EAE76A /* SpatialMeshResource.swift */,
198
+ 2BE1E9102C90795D00EAE76A /* SpatialModelComponent.swift */,
199
+ 2BE1E90C2C905FB800EAE76A /* SpatialPhysicallyBasedMaterial.swift */,
200
+ 2BE1E9062C903E2C00EAE76A /* EventEmitter.swift */,
201
+ 2BE1E8FE2C90359400EAE76A /* SpatialEntity.swift */,
202
+ 2BE1E9082C90497C00EAE76A /* SpatialWindowComponent.swift */,
203
+ 2BE1E9042C90375F00EAE76A /* SpatialWindowContainer.swift */,
204
+ 2BE1E9002C9035AB00EAE76A /* SpatialComponent.swift */,
205
+ 2BE1E9022C9035DB00EAE76A /* SpatialInputComponent.swift */,
206
+ 2B0B1C0E2C494E4100E644F9 /* Utils */,
207
+ 2B9909912C360594004826D1 /* uiKitDelegate */,
208
+ 2B2F1D8C2BED4CE7006897EE /* json */,
209
+ 2B2F1D8B2BED4CDA006897EE /* webView */,
210
+ );
211
+ path = libs;
212
+ sourceTree = "<group>";
213
+ };
214
+ 2B2F1D8B2BED4CDA006897EE /* webView */ = {
215
+ isa = PBXGroup;
216
+ children = (
217
+ 2B67BBAB2D151C1500BBC689 /* manifest.swift */,
218
+ 2B85209B2BFD5FDB0038FE29 /* UpdateSystem.swift */,
219
+ 2B2F1D8D2BED4CFA006897EE /* backend */,
220
+ );
221
+ path = webView;
222
+ sourceTree = "<group>";
223
+ };
224
+ 2B2F1D8C2BED4CE7006897EE /* json */ = {
225
+ isa = PBXGroup;
226
+ children = (
227
+ 2B2F1D8E2BED4D7A006897EE /* JsonParser.swift */,
228
+ );
229
+ path = json;
230
+ sourceTree = "<group>";
231
+ };
232
+ 2B2F1D8D2BED4CFA006897EE /* backend */ = {
233
+ isa = PBXGroup;
234
+ children = (
235
+ 2B2F1D902BED61A8006897EE /* NativeWebView.swift */,
236
+ );
237
+ path = backend;
238
+ sourceTree = "<group>";
239
+ };
240
+ 2B2F1D972BEDA8BD006897EE /* views */ = {
241
+ isa = PBXGroup;
242
+ children = (
243
+ 2BC261212D38F1DA00BCA977 /* ui */,
244
+ 2BA06D702D4380C30020B505 /* LoadingView.swift */,
245
+ 2BDBED622D3FE8EA0065443F /* SpatialModel3DView.swift */,
246
+ 2B37E8E02D002C2B0096749A /* MaterialWithBorderCornerModifier.swift */,
247
+ 2BC9A2202D1E829B00912170 /* HideViewModifier.swift */,
248
+ 2BAC1BE12CDC49000022E29B /* SpatialViewUI.swift */,
249
+ 2B2F1D982BEDA8EF006897EE /* VolumetricWindowContainerView.swift */,
250
+ 2B2F1D9A2BEDA975006897EE /* PlainWindowContainerView.swift */,
251
+ 2BE1E9142C9194DC00EAE76A /* SpatialWebViewUI.swift */,
252
+ 2B2F1D6E2BEBFAAA006897EE /* ImmersiveView.swift */,
253
+ 2BB28CCB2C747DB0007F4BDC /* OpenDismissHandlerUI.swift */,
254
+ );
255
+ path = views;
256
+ sourceTree = "<group>";
257
+ };
258
+ 2B9909912C360594004826D1 /* uiKitDelegate */ = {
259
+ isa = PBXGroup;
260
+ children = (
261
+ 2B9909922C3605A9004826D1 /* Window.swift */,
262
+ );
263
+ path = uiKitDelegate;
264
+ sourceTree = "<group>";
265
+ };
266
+ 2BC261212D38F1DA00BCA977 /* ui */ = {
267
+ isa = PBXGroup;
268
+ children = (
269
+ 2BC261202D38F1DA00BCA977 /* NavView.swift */,
270
+ );
271
+ path = ui;
272
+ sourceTree = "<group>";
273
+ };
274
+ /* End PBXGroup section */
275
+
276
+ /* Begin PBXNativeTarget section */
277
+ 2B2F1D622BEBFAAA006897EE /* web-spatial */ = {
278
+ isa = PBXNativeTarget;
279
+ buildConfigurationList = 2B2F1D822BEBFAAD006897EE /* Build configuration list for PBXNativeTarget "web-spatial" */;
280
+ buildPhases = (
281
+ 2B2F1D5F2BEBFAAA006897EE /* Sources */,
282
+ 2B2F1D602BEBFAAA006897EE /* Frameworks */,
283
+ 2B2F1D612BEBFAAA006897EE /* Resources */,
284
+ );
285
+ buildRules = (
286
+ );
287
+ dependencies = (
288
+ );
289
+ name = "web-spatial";
290
+ packageProductDependencies = (
291
+ 2B2F1D682BEBFAAA006897EE /* RealityKitContent */,
292
+ );
293
+ productName = "web-spatial";
294
+ productReference = 2B2F1D632BEBFAAA006897EE /* web-spatial.app */;
295
+ productType = "com.apple.product-type.application";
296
+ };
297
+ 2B2F1D792BEBFAAD006897EE /* web-spatialTests */ = {
298
+ isa = PBXNativeTarget;
299
+ buildConfigurationList = 2B2F1D852BEBFAAD006897EE /* Build configuration list for PBXNativeTarget "web-spatialTests" */;
300
+ buildPhases = (
301
+ 2B2F1D762BEBFAAD006897EE /* Sources */,
302
+ 2B2F1D772BEBFAAD006897EE /* Frameworks */,
303
+ 2B2F1D782BEBFAAD006897EE /* Resources */,
304
+ );
305
+ buildRules = (
306
+ );
307
+ dependencies = (
308
+ 2B2F1D7C2BEBFAAD006897EE /* PBXTargetDependency */,
309
+ );
310
+ name = "web-spatialTests";
311
+ productName = "web-spatialTests";
312
+ productReference = 2B2F1D7A2BEBFAAD006897EE /* web-spatialTests.xctest */;
313
+ productType = "com.apple.product-type.bundle.unit-test";
314
+ };
315
+ /* End PBXNativeTarget section */
316
+
317
+ /* Begin PBXProject section */
318
+ 2B2F1D5B2BEBFAAA006897EE /* Project object */ = {
319
+ isa = PBXProject;
320
+ attributes = {
321
+ BuildIndependentTargetsInParallel = 1;
322
+ LastSwiftUpdateCheck = 1530;
323
+ LastUpgradeCheck = 1600;
324
+ TargetAttributes = {
325
+ 2B2F1D622BEBFAAA006897EE = {
326
+ CreatedOnToolsVersion = 15.3;
327
+ };
328
+ 2B2F1D792BEBFAAD006897EE = {
329
+ CreatedOnToolsVersion = 15.3;
330
+ TestTargetID = 2B2F1D622BEBFAAA006897EE;
331
+ };
332
+ };
333
+ };
334
+ buildConfigurationList = 2B2F1D5E2BEBFAAA006897EE /* Build configuration list for PBXProject "web-spatial" */;
335
+ compatibilityVersion = "Xcode 14.0";
336
+ developmentRegion = en;
337
+ hasScannedForEncodings = 0;
338
+ knownRegions = (
339
+ en,
340
+ Base,
341
+ );
342
+ mainGroup = 2B2F1D5A2BEBFAAA006897EE;
343
+ packageReferences = (
344
+ );
345
+ productRefGroup = 2B2F1D642BEBFAAA006897EE /* Products */;
346
+ projectDirPath = "";
347
+ projectRoot = "";
348
+ targets = (
349
+ 2B2F1D622BEBFAAA006897EE /* web-spatial */,
350
+ 2B2F1D792BEBFAAD006897EE /* web-spatialTests */,
351
+ );
352
+ };
353
+ /* End PBXProject section */
354
+
355
+ /* Begin PBXResourcesBuildPhase section */
356
+ 2B2F1D612BEBFAAA006897EE /* Resources */ = {
357
+ isa = PBXResourcesBuildPhase;
358
+ buildActionMask = 2147483647;
359
+ files = (
360
+ 2BDBF9B62C4ED9F600D269D7 /* static-web in Resources */,
361
+ 2B2F1D742BEBFAAC006897EE /* Preview Assets.xcassets in Resources */,
362
+ 2B2F1D712BEBFAAC006897EE /* Assets.xcassets in Resources */,
363
+ );
364
+ runOnlyForDeploymentPostprocessing = 0;
365
+ };
366
+ 2B2F1D782BEBFAAD006897EE /* Resources */ = {
367
+ isa = PBXResourcesBuildPhase;
368
+ buildActionMask = 2147483647;
369
+ files = (
370
+ );
371
+ runOnlyForDeploymentPostprocessing = 0;
372
+ };
373
+ /* End PBXResourcesBuildPhase section */
374
+
375
+ /* Begin PBXSourcesBuildPhase section */
376
+ 2B2F1D5F2BEBFAAA006897EE /* Sources */ = {
377
+ isa = PBXSourcesBuildPhase;
378
+ buildActionMask = 2147483647;
379
+ files = (
380
+ 2BE1E9092C90497C00EAE76A /* SpatialWindowComponent.swift in Sources */,
381
+ 2BE1E90D2C905FB800EAE76A /* SpatialPhysicallyBasedMaterial.swift in Sources */,
382
+ 2B85209C2BFD5FDB0038FE29 /* UpdateSystem.swift in Sources */,
383
+ 2BE1E9032C9035DB00EAE76A /* SpatialInputComponent.swift in Sources */,
384
+ 2B2F1D9B2BEDA975006897EE /* PlainWindowContainerView.swift in Sources */,
385
+ 2BE1E8FA2C90332400EAE76A /* SpatialObject.swift in Sources */,
386
+ 2BB28CCC2C747DB0007F4BDC /* OpenDismissHandlerUI.swift in Sources */,
387
+ 2BDBED632D3FE8EC0065443F /* SpatialModel3DView.swift in Sources */,
388
+ 2B67BBAC2D151C1A00BBC689 /* manifest.swift in Sources */,
389
+ 2B2F1D8F2BED4D7A006897EE /* JsonParser.swift in Sources */,
390
+ 2BE1E9012C9035AB00EAE76A /* SpatialComponent.swift in Sources */,
391
+ 2BE1E9152C9194DC00EAE76A /* SpatialWebViewUI.swift in Sources */,
392
+ 2B2F1D912BED61A8006897EE /* NativeWebView.swift in Sources */,
393
+ 2B2F1D992BEDA8EF006897EE /* VolumetricWindowContainerView.swift in Sources */,
394
+ 2BE1E9072C903E2C00EAE76A /* EventEmitter.swift in Sources */,
395
+ 2BDBED5F2D3F885A0065443F /* SpatialModel3DComponent.swift in Sources */,
396
+ 2B2F1D6B2BEBFAAA006897EE /* web_spatialApp.swift in Sources */,
397
+ 2B0B1C102C494E5400E644F9 /* Logger.swift in Sources */,
398
+ 2B37E8E12D002C4D0096749A /* MaterialWithBorderCornerModifier.swift in Sources */,
399
+ 2BC261222D38F1DA00BCA977 /* NavView.swift in Sources */,
400
+ 2BAC1BE22CDC49040022E29B /* SpatialViewUI.swift in Sources */,
401
+ 2B0B430A2CBE21580003CEF3 /* CommandManager.swift in Sources */,
402
+ 2B23CB3F2D0BEE6900E70D95 /* WindowContainerMgr.swift in Sources */,
403
+ 2BD510562D54A30D0001E5E6 /* SceneManager.swift in Sources */,
404
+ 2BAC1BE02CDC34500022E29B /* SpatialViewComponent.swift in Sources */,
405
+ 2BE1E9052C90375F00EAE76A /* SpatialWindowContainer.swift in Sources */,
406
+ 2B2F1D6F2BEBFAAA006897EE /* ImmersiveView.swift in Sources */,
407
+ 2BE1E9112C90795D00EAE76A /* SpatialModelComponent.swift in Sources */,
408
+ 2B9909932C3605A9004826D1 /* Window.swift in Sources */,
409
+ 2BC9A2212D1E829B00912170 /* HideViewModifier.swift in Sources */,
410
+ 2BE1E8FF2C90359400EAE76A /* SpatialEntity.swift in Sources */,
411
+ 2BA06D712D4380C60020B505 /* LoadingView.swift in Sources */,
412
+ 2BE1E90B2C905DA300EAE76A /* SpatialMeshResource.swift in Sources */,
413
+ );
414
+ runOnlyForDeploymentPostprocessing = 0;
415
+ };
416
+ 2B2F1D762BEBFAAD006897EE /* Sources */ = {
417
+ isa = PBXSourcesBuildPhase;
418
+ buildActionMask = 2147483647;
419
+ files = (
420
+ 2B2F1D7F2BEBFAAD006897EE /* web_spatialTests.swift in Sources */,
421
+ );
422
+ runOnlyForDeploymentPostprocessing = 0;
423
+ };
424
+ /* End PBXSourcesBuildPhase section */
425
+
426
+ /* Begin PBXTargetDependency section */
427
+ 2B2F1D7C2BEBFAAD006897EE /* PBXTargetDependency */ = {
428
+ isa = PBXTargetDependency;
429
+ target = 2B2F1D622BEBFAAA006897EE /* web-spatial */;
430
+ targetProxy = 2B2F1D7B2BEBFAAD006897EE /* PBXContainerItemProxy */;
431
+ };
432
+ /* End PBXTargetDependency section */
433
+
434
+ /* Begin XCBuildConfiguration section */
435
+ 2B2F1D802BEBFAAD006897EE /* Debug */ = {
436
+ isa = XCBuildConfiguration;
437
+ buildSettings = {
438
+ ALWAYS_SEARCH_USER_PATHS = NO;
439
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
440
+ CLANG_ANALYZER_NONNULL = YES;
441
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
442
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
443
+ CLANG_ENABLE_MODULES = YES;
444
+ CLANG_ENABLE_OBJC_ARC = YES;
445
+ CLANG_ENABLE_OBJC_WEAK = YES;
446
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
447
+ CLANG_WARN_BOOL_CONVERSION = YES;
448
+ CLANG_WARN_COMMA = YES;
449
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
450
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
451
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
452
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
453
+ CLANG_WARN_EMPTY_BODY = YES;
454
+ CLANG_WARN_ENUM_CONVERSION = YES;
455
+ CLANG_WARN_INFINITE_RECURSION = YES;
456
+ CLANG_WARN_INT_CONVERSION = YES;
457
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
458
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
459
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
460
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
461
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
462
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
463
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
464
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
465
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
466
+ CLANG_WARN_UNREACHABLE_CODE = YES;
467
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
468
+ COPY_PHASE_STRIP = NO;
469
+ DEBUG_INFORMATION_FORMAT = dwarf;
470
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
471
+ ENABLE_TESTABILITY = YES;
472
+ ENABLE_USER_SCRIPT_SANDBOXING = YES;
473
+ GCC_C_LANGUAGE_STANDARD = gnu17;
474
+ GCC_DYNAMIC_NO_PIC = NO;
475
+ GCC_NO_COMMON_BLOCKS = YES;
476
+ GCC_OPTIMIZATION_LEVEL = 0;
477
+ GCC_PREPROCESSOR_DEFINITIONS = (
478
+ "DEBUG=1",
479
+ "$(inherited)",
480
+ );
481
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
482
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
483
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
484
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
485
+ GCC_WARN_UNUSED_FUNCTION = YES;
486
+ GCC_WARN_UNUSED_VARIABLE = YES;
487
+ LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
488
+ MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
489
+ MTL_FAST_MATH = YES;
490
+ ONLY_ACTIVE_ARCH = YES;
491
+ SDKROOT = xros;
492
+ SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
493
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
494
+ XROS_DEPLOYMENT_TARGET = 1.0;
495
+ };
496
+ name = Debug;
497
+ };
498
+ 2B2F1D812BEBFAAD006897EE /* Release */ = {
499
+ isa = XCBuildConfiguration;
500
+ buildSettings = {
501
+ ALWAYS_SEARCH_USER_PATHS = NO;
502
+ ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
503
+ CLANG_ANALYZER_NONNULL = YES;
504
+ CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
505
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
506
+ CLANG_ENABLE_MODULES = YES;
507
+ CLANG_ENABLE_OBJC_ARC = YES;
508
+ CLANG_ENABLE_OBJC_WEAK = YES;
509
+ CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
510
+ CLANG_WARN_BOOL_CONVERSION = YES;
511
+ CLANG_WARN_COMMA = YES;
512
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
513
+ CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
514
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
515
+ CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
516
+ CLANG_WARN_EMPTY_BODY = YES;
517
+ CLANG_WARN_ENUM_CONVERSION = YES;
518
+ CLANG_WARN_INFINITE_RECURSION = YES;
519
+ CLANG_WARN_INT_CONVERSION = YES;
520
+ CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
521
+ CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
522
+ CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
523
+ CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
524
+ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
525
+ CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
526
+ CLANG_WARN_STRICT_PROTOTYPES = YES;
527
+ CLANG_WARN_SUSPICIOUS_MOVE = YES;
528
+ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
529
+ CLANG_WARN_UNREACHABLE_CODE = YES;
530
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
531
+ COPY_PHASE_STRIP = NO;
532
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
533
+ ENABLE_NS_ASSERTIONS = NO;
534
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
535
+ ENABLE_USER_SCRIPT_SANDBOXING = YES;
536
+ GCC_C_LANGUAGE_STANDARD = gnu17;
537
+ GCC_NO_COMMON_BLOCKS = YES;
538
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
539
+ GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
540
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
541
+ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
542
+ GCC_WARN_UNUSED_FUNCTION = YES;
543
+ GCC_WARN_UNUSED_VARIABLE = YES;
544
+ LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
545
+ MTL_ENABLE_DEBUG_INFO = NO;
546
+ MTL_FAST_MATH = YES;
547
+ SDKROOT = xros;
548
+ SWIFT_COMPILATION_MODE = wholemodule;
549
+ VALIDATE_PRODUCT = YES;
550
+ XROS_DEPLOYMENT_TARGET = 1.0;
551
+ };
552
+ name = Release;
553
+ };
554
+ 2B2F1D832BEBFAAD006897EE /* Debug */ = {
555
+ isa = XCBuildConfiguration;
556
+ buildSettings = {
557
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
558
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
559
+ CODE_SIGN_STYLE = Automatic;
560
+ CURRENT_PROJECT_VERSION = 1;
561
+ DEVELOPMENT_ASSET_PATHS = "\"web-spatial/Preview Content\"";
562
+ DEVELOPMENT_TEAM = DEVELOPMENT_TEAM;
563
+ ENABLE_PREVIEWS = YES;
564
+ GENERATE_INFOPLIST_FILE = YES;
565
+ INFOPLIST_FILE = "$(TARGET_NAME)/Info.plist";
566
+ LD_RUNPATH_SEARCH_PATHS = (
567
+ "$(inherited)",
568
+ "@executable_path/Frameworks",
569
+ );
570
+ MARKETING_VERSION = 1.0;
571
+ PRODUCT_BUNDLE_IDENTIFIER = "com.webspatial.test";
572
+ PRODUCT_NAME = "WebSpatial";
573
+ SUPPORTED_PLATFORMS = "xros xrsimulator";
574
+ SWIFT_EMIT_LOC_STRINGS = YES;
575
+ SWIFT_VERSION = 5.0;
576
+ TARGETED_DEVICE_FAMILY = "1,2,7";
577
+ XROS_DEPLOYMENT_TARGET = 2.1;
578
+ };
579
+ name = Debug;
580
+ };
581
+ 2B2F1D842BEBFAAD006897EE /* Release */ = {
582
+ isa = XCBuildConfiguration;
583
+ buildSettings = {
584
+ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
585
+ ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
586
+ CODE_SIGN_STYLE = Automatic;
587
+ CURRENT_PROJECT_VERSION = 1;
588
+ DEVELOPMENT_ASSET_PATHS = "\"web-spatial/Preview Content\"";
589
+ DEVELOPMENT_TEAM = DEVELOPMENT_TEAM;
590
+ ENABLE_PREVIEWS = YES;
591
+ GENERATE_INFOPLIST_FILE = YES;
592
+ INFOPLIST_FILE = "$(TARGET_NAME)/Info.plist";
593
+ LD_RUNPATH_SEARCH_PATHS = (
594
+ "$(inherited)",
595
+ "@executable_path/Frameworks",
596
+ );
597
+ MARKETING_VERSION = 1.0;
598
+ PRODUCT_BUNDLE_IDENTIFIER = "com.webspatial.test";
599
+ PRODUCT_NAME = "WebSpatial";
600
+ SUPPORTED_PLATFORMS = "xros xrsimulator";
601
+ SWIFT_EMIT_LOC_STRINGS = YES;
602
+ SWIFT_VERSION = 5.0;
603
+ TARGETED_DEVICE_FAMILY = "1,2,7";
604
+ XROS_DEPLOYMENT_TARGET = 2.1;
605
+ };
606
+ name = Release;
607
+ };
608
+ 2B2F1D862BEBFAAD006897EE /* Debug */ = {
609
+ isa = XCBuildConfiguration;
610
+ buildSettings = {
611
+ BUNDLE_LOADER = "$(TEST_HOST)";
612
+ CODE_SIGN_STYLE = Automatic;
613
+ CURRENT_PROJECT_VERSION = 1;
614
+ GENERATE_INFOPLIST_FILE = YES;
615
+ MARKETING_VERSION = 1.0;
616
+ PRODUCT_BUNDLE_IDENTIFIER = "com.webspatial.test";
617
+ PRODUCT_NAME = "WebSpatial";
618
+ SUPPORTED_PLATFORMS = "xros xrsimulator";
619
+ SWIFT_EMIT_LOC_STRINGS = NO;
620
+ SWIFT_VERSION = 5.0;
621
+ TARGETED_DEVICE_FAMILY = "1,2,7";
622
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/web-spatial.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/web-spatial";
623
+ XROS_DEPLOYMENT_TARGET = 1.1;
624
+ };
625
+ name = Debug;
626
+ };
627
+ 2B2F1D872BEBFAAD006897EE /* Release */ = {
628
+ isa = XCBuildConfiguration;
629
+ buildSettings = {
630
+ BUNDLE_LOADER = "$(TEST_HOST)";
631
+ CODE_SIGN_STYLE = Automatic;
632
+ CURRENT_PROJECT_VERSION = 1;
633
+ GENERATE_INFOPLIST_FILE = YES;
634
+ MARKETING_VERSION = 1.0;
635
+ PRODUCT_BUNDLE_IDENTIFIER = "com.webspatial.test";
636
+ PRODUCT_NAME = "WebSpatial";
637
+ SUPPORTED_PLATFORMS = "xros xrsimulator";
638
+ SWIFT_EMIT_LOC_STRINGS = NO;
639
+ SWIFT_VERSION = 5.0;
640
+ TARGETED_DEVICE_FAMILY = "1,2,7";
641
+ TEST_HOST = "$(BUILT_PRODUCTS_DIR)/web-spatial.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/web-spatial";
642
+ XROS_DEPLOYMENT_TARGET = 1.1;
643
+ };
644
+ name = Release;
645
+ };
646
+ /* End XCBuildConfiguration section */
647
+
648
+ /* Begin XCConfigurationList section */
649
+ 2B2F1D5E2BEBFAAA006897EE /* Build configuration list for PBXProject "web-spatial" */ = {
650
+ isa = XCConfigurationList;
651
+ buildConfigurations = (
652
+ 2B2F1D802BEBFAAD006897EE /* Debug */,
653
+ 2B2F1D812BEBFAAD006897EE /* Release */,
654
+ );
655
+ defaultConfigurationIsVisible = 0;
656
+ defaultConfigurationName = Release;
657
+ };
658
+ 2B2F1D822BEBFAAD006897EE /* Build configuration list for PBXNativeTarget "web-spatial" */ = {
659
+ isa = XCConfigurationList;
660
+ buildConfigurations = (
661
+ 2B2F1D832BEBFAAD006897EE /* Debug */,
662
+ 2B2F1D842BEBFAAD006897EE /* Release */,
663
+ );
664
+ defaultConfigurationIsVisible = 0;
665
+ defaultConfigurationName = Release;
666
+ };
667
+ 2B2F1D852BEBFAAD006897EE /* Build configuration list for PBXNativeTarget "web-spatialTests" */ = {
668
+ isa = XCConfigurationList;
669
+ buildConfigurations = (
670
+ 2B2F1D862BEBFAAD006897EE /* Debug */,
671
+ 2B2F1D872BEBFAAD006897EE /* Release */,
672
+ );
673
+ defaultConfigurationIsVisible = 0;
674
+ defaultConfigurationName = Release;
675
+ };
676
+ /* End XCConfigurationList section */
677
+
678
+ /* Begin XCSwiftPackageProductDependency section */
679
+ 2B2F1D682BEBFAAA006897EE /* RealityKitContent */ = {
680
+ isa = XCSwiftPackageProductDependency;
681
+ productName = RealityKitContent;
682
+ };
683
+ /* End XCSwiftPackageProductDependency section */
684
+ };
685
+ rootObject = 2B2F1D5B2BEBFAAA006897EE /* Project object */;
686
+ }