Skip to content

Commit f0229d4

Browse files
committed
Interactive Content with ARKit: Version 1.2, 2018-02-15
Add support for ARKit 1.5 This sample code demonstrates an interactive augmented reality experience using SceneKit and ARKit. Signed-off-by: Liu Lantao <[email protected]>
1 parent 6c1da7d commit f0229d4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+9616
-0
lines changed

InteractiveContent/.gitignore

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
.DS_Store
2+
3+
# Xcode
4+
build/*
5+
*/build/*
6+
*/**/build/*
7+
*.mode1
8+
*.pbxuser
9+
*.perspective
10+
!default.perspectivev3
11+
!default.pbxuser
12+
*.mode1v3
13+
!default.mode1v3
14+
*.mode2v3
15+
!default.mode2v3
16+
*.perspectivev3
17+
!default.perspectivev3
18+
*.xcworkspace
19+
!default.xcworkspace
20+
xcuserdata
21+
profile
22+
*.moved-aside
23+
24+
# Generated files
25+
VersionX-revision.h
26+
27+
# build products
28+
build/
29+
*.[oa]
30+
31+
# version control files
32+
.hg
33+
.svn
34+
CVS
35+
36+
# automatic backup files
37+
*~.nib
38+
*.swp
39+
*~
40+
*(Autosaved).rtfd/
41+
Backup[ ]of[ ]*.pages/
42+
Backup[ ]of[ ]*.key/
43+
Backup[ ]of[ ]*.numbers/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
//
2+
// SampleCode.xcconfig
3+
//
4+
5+
// The `SAMPLE_CODE_DISAMBIGUATOR` configuration is to make it easier to build
6+
// and run a sample code project. Once you set your project's development team,
7+
// you'll have a unique bundle identifier. This is because the bundle identifier
8+
// is derived based on the 'SAMPLE_CODE_DISAMBIGUATOR' value. Do not use this
9+
// approach in your own projects—it's only useful for sample code projects because
10+
// they are frequently downloaded and don't have a development team set.
11+
SAMPLE_CODE_DISAMBIGUATOR=${DEVELOPMENT_TEAM}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/*
2+
Copyright (C) 2018 Apple Inc. All Rights Reserved.
3+
See LICENSE.txt for this sample’s licensing information
4+
5+
Abstract:
6+
App Delegate for the Interactive Content sample app.
7+
*/
8+
9+
10+
import UIKit
11+
12+
@UIApplicationMain
13+
class AppDelegate: UIResponder, UIApplicationDelegate {
14+
15+
var window: UIWindow?
16+
17+
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
18+
// Override point for customization after application launch.
19+
return true
20+
}
21+
}
22+

0 commit comments

Comments
 (0)