UIkit demo - removed testview embedding

This commit is contained in:
Collin Cunningham 2019-06-26 14:04:35 -04:00
parent fc08c578db
commit 11b1b9c594
2 changed files with 0 additions and 3 deletions

View file

@ -96,7 +96,6 @@ class BoardViewController: UIViewController, ARSCNViewDelegate {
//TEST
let testLabel = UILabel(frame: CGRect(x: 0, y: 0, width: 200, height: 100))
var testLabelView = UIView(frame: CGRect(x: 0, y: 0, width: 200, height: 100))
@IBOutlet weak var visualBoardEffectView: UIVisualEffectView!
var effect: UIVisualEffect!
@ -232,8 +231,6 @@ class BoardViewController: UIViewController, ARSCNViewDelegate {
testLabel.clipsToBounds = true
testLabel.layer.backgroundColor = UIColor.clear.cgColor
testLabel.transform = CGAffineTransform(rotationAngle: CGFloat.pi)
testLabelView.backgroundColor = .black
testLabelView.addSubview(testLabel)
// Set the view's delegate
boardSceneView.delegate = self