Skip to content
This repository was archived by the owner on Dec 13, 2024. It is now read-only.

Commit 7169786

Browse files
committed
[SceneKit] tvOS SceneKit template
1 parent 1d46d95 commit 7169786

File tree

29 files changed

+1182
-0
lines changed

29 files changed

+1182
-0
lines changed

SceneKitGame/SceneKitGame.sln

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2012
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SceneKitGame", "SceneKitGame\SceneKitGame.csproj", "{6F610831-EB8B-4500-B529-2453A36B508F}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Debug|iPhoneSimulator = Debug|iPhoneSimulator
9+
Release|iPhone = Release|iPhone
10+
Release|iPhoneSimulator = Release|iPhoneSimulator
11+
Debug|iPhone = Debug|iPhone
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{6F610831-EB8B-4500-B529-2453A36B508F}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
15+
{6F610831-EB8B-4500-B529-2453A36B508F}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
16+
{6F610831-EB8B-4500-B529-2453A36B508F}.Release|iPhone.ActiveCfg = Release|iPhone
17+
{6F610831-EB8B-4500-B529-2453A36B508F}.Release|iPhone.Build.0 = Release|iPhone
18+
{6F610831-EB8B-4500-B529-2453A36B508F}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
19+
{6F610831-EB8B-4500-B529-2453A36B508F}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
20+
{6F610831-EB8B-4500-B529-2453A36B508F}.Debug|iPhone.ActiveCfg = Debug|iPhone
21+
{6F610831-EB8B-4500-B529-2453A36B508F}.Debug|iPhone.Build.0 = Debug|iPhone
22+
EndGlobalSection
23+
EndGlobal
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
using Foundation;
2+
using UIKit;
3+
4+
namespace SceneKitGame {
5+
[Register("AppDelegate")]
6+
public class AppDelegate : UIApplicationDelegate {
7+
public override UIWindow Window { get; set; }
8+
9+
public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions) {
10+
return true;
11+
}
12+
}
13+
}
14+
15+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"images": [
3+
{
4+
"idiom": "universal"
5+
},
6+
{
7+
"scale": "1x",
8+
"idiom": "universal"
9+
},
10+
{
11+
"scale": "2x",
12+
"idiom": "universal"
13+
},
14+
{
15+
"scale": "3x",
16+
"idiom": "universal"
17+
},
18+
{
19+
"idiom": "iphone"
20+
},
21+
{
22+
"scale": "1x",
23+
"idiom": "iphone"
24+
},
25+
{
26+
"scale": "2x",
27+
"idiom": "iphone"
28+
},
29+
{
30+
"subtype": "retina4",
31+
"scale": "2x",
32+
"idiom": "iphone"
33+
},
34+
{
35+
"scale": "3x",
36+
"idiom": "iphone"
37+
},
38+
{
39+
"idiom": "ipad"
40+
},
41+
{
42+
"scale": "1x",
43+
"idiom": "ipad"
44+
},
45+
{
46+
"scale": "2x",
47+
"idiom": "ipad"
48+
}
49+
],
50+
"info": {
51+
"version": 1,
52+
"author": "xcode"
53+
}
54+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"info" : {
3+
"version" : 1,
4+
"author" : "xcode"
5+
}
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"layers" : [
3+
{
4+
"filename" : "Front.imagestacklayer"
5+
},
6+
{
7+
"filename" : "Middle.imagestacklayer"
8+
},
9+
{
10+
"filename" : "Back.imagestacklayer"
11+
}
12+
],
13+
"info" : {
14+
"version" : 1,
15+
"author" : "xcode"
16+
}
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"images": [
3+
{
4+
"idiom": "universal"
5+
},
6+
{
7+
"scale": "1x",
8+
"idiom": "universal"
9+
},
10+
{
11+
"scale": "2x",
12+
"idiom": "universal"
13+
},
14+
{
15+
"scale": "3x",
16+
"idiom": "universal"
17+
},
18+
{
19+
"idiom": "iphone"
20+
},
21+
{
22+
"scale": "1x",
23+
"idiom": "iphone"
24+
},
25+
{
26+
"scale": "2x",
27+
"idiom": "iphone"
28+
},
29+
{
30+
"subtype": "retina4",
31+
"scale": "2x",
32+
"idiom": "iphone"
33+
},
34+
{
35+
"scale": "3x",
36+
"idiom": "iphone"
37+
},
38+
{
39+
"idiom": "ipad"
40+
},
41+
{
42+
"scale": "1x",
43+
"idiom": "ipad"
44+
},
45+
{
46+
"scale": "2x",
47+
"idiom": "ipad"
48+
}
49+
],
50+
"info": {
51+
"version": 1,
52+
"author": "xcode"
53+
}
54+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"info" : {
3+
"version" : 1,
4+
"author" : "xcode"
5+
}
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"images": [
3+
{
4+
"idiom": "universal"
5+
},
6+
{
7+
"scale": "1x",
8+
"idiom": "universal"
9+
},
10+
{
11+
"scale": "2x",
12+
"idiom": "universal"
13+
},
14+
{
15+
"scale": "3x",
16+
"idiom": "universal"
17+
},
18+
{
19+
"idiom": "iphone"
20+
},
21+
{
22+
"scale": "1x",
23+
"idiom": "iphone"
24+
},
25+
{
26+
"scale": "2x",
27+
"idiom": "iphone"
28+
},
29+
{
30+
"subtype": "retina4",
31+
"scale": "2x",
32+
"idiom": "iphone"
33+
},
34+
{
35+
"scale": "3x",
36+
"idiom": "iphone"
37+
},
38+
{
39+
"idiom": "ipad"
40+
},
41+
{
42+
"scale": "1x",
43+
"idiom": "ipad"
44+
},
45+
{
46+
"scale": "2x",
47+
"idiom": "ipad"
48+
}
49+
],
50+
"info": {
51+
"version": 1,
52+
"author": "xcode"
53+
}
54+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"info" : {
3+
"version" : 1,
4+
"author" : "xcode"
5+
}
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"images": [
3+
{
4+
"idiom": "universal"
5+
},
6+
{
7+
"scale": "1x",
8+
"idiom": "universal"
9+
},
10+
{
11+
"scale": "2x",
12+
"idiom": "universal"
13+
},
14+
{
15+
"scale": "3x",
16+
"idiom": "universal"
17+
},
18+
{
19+
"idiom": "iphone"
20+
},
21+
{
22+
"scale": "1x",
23+
"idiom": "iphone"
24+
},
25+
{
26+
"scale": "2x",
27+
"idiom": "iphone"
28+
},
29+
{
30+
"subtype": "retina4",
31+
"scale": "2x",
32+
"idiom": "iphone"
33+
},
34+
{
35+
"scale": "3x",
36+
"idiom": "iphone"
37+
},
38+
{
39+
"idiom": "ipad"
40+
},
41+
{
42+
"scale": "1x",
43+
"idiom": "ipad"
44+
},
45+
{
46+
"scale": "2x",
47+
"idiom": "ipad"
48+
}
49+
],
50+
"info": {
51+
"version": 1,
52+
"author": "xcode"
53+
}
54+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"info" : {
3+
"version" : 1,
4+
"author" : "xcode"
5+
}
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"layers" : [
3+
{
4+
"filename" : "Front.imagestacklayer"
5+
},
6+
{
7+
"filename" : "Middle.imagestacklayer"
8+
},
9+
{
10+
"filename" : "Back.imagestacklayer"
11+
}
12+
],
13+
"info" : {
14+
"version" : 1,
15+
"author" : "xcode"
16+
}
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"images": [
3+
{
4+
"idiom": "universal"
5+
},
6+
{
7+
"scale": "1x",
8+
"idiom": "universal"
9+
},
10+
{
11+
"scale": "2x",
12+
"idiom": "universal"
13+
},
14+
{
15+
"scale": "3x",
16+
"idiom": "universal"
17+
},
18+
{
19+
"idiom": "iphone"
20+
},
21+
{
22+
"scale": "1x",
23+
"idiom": "iphone"
24+
},
25+
{
26+
"scale": "2x",
27+
"idiom": "iphone"
28+
},
29+
{
30+
"subtype": "retina4",
31+
"scale": "2x",
32+
"idiom": "iphone"
33+
},
34+
{
35+
"scale": "3x",
36+
"idiom": "iphone"
37+
},
38+
{
39+
"idiom": "ipad"
40+
},
41+
{
42+
"scale": "1x",
43+
"idiom": "ipad"
44+
},
45+
{
46+
"scale": "2x",
47+
"idiom": "ipad"
48+
}
49+
],
50+
"info": {
51+
"version": 1,
52+
"author": "xcode"
53+
}
54+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"info" : {
3+
"version" : 1,
4+
"author" : "xcode"
5+
}
6+
}

0 commit comments

Comments
 (0)