gitextract_avqgh8va/ ├── Img/ │ └── .gitignore ├── OpenvisionOS/ │ ├── AirPodsMax/ │ │ ├── AirPodsMaxAnimation.swift │ │ ├── Airpods_Max.usdz │ │ ├── Airpods_Max_Pink.usdz │ │ └── kulaklıksketchfab.usdz │ ├── Assets.xcassets/ │ │ ├── AppIcon.solidimagestack/ │ │ │ ├── Back.solidimagestacklayer/ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.solidimagestacklayer/ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.solidimagestacklayer/ │ │ │ ├── Content.imageset/ │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ └── Contents.json │ ├── NewYearFireworks/ │ │ ├── NewYearFireworksTwentyFour.swift │ │ └── newYear.usdz │ ├── OpenvisionOSApp.swift │ ├── Own3DModel/ │ │ ├── BgSparcle.usdz │ │ ├── Flower-Port.usdz │ │ ├── FlowerPotView.swift │ │ └── pointSparkle.usdz │ └── Preview Content/ │ └── Preview Assets.xcassets/ │ └── Contents.json ├── OpenvisionOS.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata/ │ │ └── amosgyamfi.xcuserdatad/ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata/ │ └── amosgyamfi.xcuserdatad/ │ └── xcschemes/ │ └── xcschememanagement.plist ├── OpenvisionOSTests/ │ └── OpenvisionOSTests.swift ├── Packages/ │ └── RealityKitContent/ │ ├── .swiftpm/ │ │ └── xcode/ │ │ └── xcuserdata/ │ │ └── amosgyamfi.xcuserdatad/ │ │ └── xcschemes/ │ │ └── xcschememanagement.plist │ ├── Package.realitycomposerpro/ │ │ ├── ProjectData/ │ │ │ └── main.json │ │ └── WorkspaceData/ │ │ ├── SceneMetadataList.json │ │ ├── Settings.rcprojectdata │ │ └── amosgyamfi.rcuserdata │ ├── Package.swift │ ├── README.md │ └── Sources/ │ └── RealityKitContent/ │ ├── RealityKitContent.rkassets/ │ │ ├── ParticleEmitterPresetTextures/ │ │ │ ├── flaresheet.exr │ │ │ └── twinkle.exr │ │ ├── Scene.usda │ │ └── _PlainMaterial.usda │ └── RealityKitContent.swift └── README.md