├── .github └── FUNDING.yml ├── .gitignore ├── ImmersiveMoveAndRotate.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── ImmersiveMoveAndRotate ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── 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 ├── EntityMovementViewModifier.swift ├── ImmersiveMoveAndRotateApp.swift ├── ImmersiveView.swift ├── Info.plist └── arcade_machine.usdz ├── README.md └── video.gif /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: simonbs 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | xcuserdata 3 | -------------------------------------------------------------------------------- /ImmersiveMoveAndRotate.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/ImmersiveMoveAndRotate/HEAD/ImmersiveMoveAndRotate.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ImmersiveMoveAndRotate.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/ImmersiveMoveAndRotate/HEAD/ImmersiveMoveAndRotate.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ImmersiveMoveAndRotate.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/ImmersiveMoveAndRotate/HEAD/ImmersiveMoveAndRotate.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ImmersiveMoveAndRotate/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/ImmersiveMoveAndRotate/HEAD/ImmersiveMoveAndRotate/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /ImmersiveMoveAndRotate/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/ImmersiveMoveAndRotate/HEAD/ImmersiveMoveAndRotate/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /ImmersiveMoveAndRotate/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/ImmersiveMoveAndRotate/HEAD/ImmersiveMoveAndRotate/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /ImmersiveMoveAndRotate/Assets.xcassets/AppIcon.solidimagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/ImmersiveMoveAndRotate/HEAD/ImmersiveMoveAndRotate/Assets.xcassets/AppIcon.solidimagestack/Contents.json -------------------------------------------------------------------------------- /ImmersiveMoveAndRotate/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/ImmersiveMoveAndRotate/HEAD/ImmersiveMoveAndRotate/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /ImmersiveMoveAndRotate/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/ImmersiveMoveAndRotate/HEAD/ImmersiveMoveAndRotate/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /ImmersiveMoveAndRotate/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/ImmersiveMoveAndRotate/HEAD/ImmersiveMoveAndRotate/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /ImmersiveMoveAndRotate/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/ImmersiveMoveAndRotate/HEAD/ImmersiveMoveAndRotate/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /ImmersiveMoveAndRotate/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/ImmersiveMoveAndRotate/HEAD/ImmersiveMoveAndRotate/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ImmersiveMoveAndRotate/EntityMovementViewModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/ImmersiveMoveAndRotate/HEAD/ImmersiveMoveAndRotate/EntityMovementViewModifier.swift -------------------------------------------------------------------------------- /ImmersiveMoveAndRotate/ImmersiveMoveAndRotateApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/ImmersiveMoveAndRotate/HEAD/ImmersiveMoveAndRotate/ImmersiveMoveAndRotateApp.swift -------------------------------------------------------------------------------- /ImmersiveMoveAndRotate/ImmersiveView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/ImmersiveMoveAndRotate/HEAD/ImmersiveMoveAndRotate/ImmersiveView.swift -------------------------------------------------------------------------------- /ImmersiveMoveAndRotate/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/ImmersiveMoveAndRotate/HEAD/ImmersiveMoveAndRotate/Info.plist -------------------------------------------------------------------------------- /ImmersiveMoveAndRotate/arcade_machine.usdz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/ImmersiveMoveAndRotate/HEAD/ImmersiveMoveAndRotate/arcade_machine.usdz -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/ImmersiveMoveAndRotate/HEAD/README.md -------------------------------------------------------------------------------- /video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simonbs/ImmersiveMoveAndRotate/HEAD/video.gif --------------------------------------------------------------------------------