Swift/tvOS/GameViewController.swift
/* |
Copyright (C) 2018 Apple Inc. All Rights Reserved. |
See LICENSE.txt for this sample’s licensing information |
Abstract: |
The app's main view controller. |
*/ |
import SceneKit |
import UIKit |
class GameViewControllerTVOS: UIViewController { |
var gameView: SCNView! { |
return view as! SCNView |
} |
var gameController: GameController? |
override func viewDidLoad() { |
super.viewDidLoad() |
gameController = GameController(scnView: gameView) |
// Configure the view |
gameView!.backgroundColor = UIColor.black |
} |
override func didReceiveMemoryWarning() { |
super.didReceiveMemoryWarning() |
// Release any cached data, images, etc that aren't in use. |
} |
} |
Copyright © 2018 Apple Inc. All Rights Reserved. Terms of Use | Privacy Policy | Updated: 2018-04-05