Skip to content

Commit

Permalink
1.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sugijotaro committed Nov 29, 2021
1 parent 3f32095 commit f8226e3
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions BurachiribuARQuizApp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1005,7 +1005,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.3.5;
MARKETING_VERSION = 1.4;
PRODUCT_BUNDLE_IDENTIFIER = sugijo.BurachiribuQuiz;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
Expand All @@ -1029,7 +1029,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.3.5;
MARKETING_VERSION = 1.4;
PRODUCT_BUNDLE_IDENTIFIER = sugijo.BurachiribuQuiz;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 5.0;
Expand Down
Binary file not shown.
30 changes: 15 additions & 15 deletions BurachiribuARQuizApp/TutorialViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -77,21 +77,21 @@ class TutorialViewController: UIViewController, ARSCNViewDelegate, UIGestureReco
alert.addAction(toTutorial)

//デバッグ用
let skipTutorial = UIAlertAction(title: "チュートリアルスキップ", style: .default, handler: { _ in
print("チュートリアルスキップ")
GameService.resetScore()
self.performSegue(withIdentifier: "toQuizView", sender: nil)
self.freeMemory()
})
alert.addAction(skipTutorial)

let toResult = UIAlertAction(title: "結果発表へ", style: .default, handler: { _ in
print("結果発表へ")
GameService.resetScore()
self.performSegue(withIdentifier: "toResult", sender: nil)
self.freeMemory()
})
alert.addAction(toResult)
// let skipTutorial = UIAlertAction(title: "チュートリアルスキップ", style: .default, handler: { _ in
// print("チュートリアルスキップ")
// GameService.resetScore()
// self.performSegue(withIdentifier: "toQuizView", sender: nil)
// self.freeMemory()
// })
// alert.addAction(skipTutorial)
//
// let toResult = UIAlertAction(title: "結果発表へ", style: .default, handler: { _ in
// print("結果発表へ")
// GameService.resetScore()
// self.performSegue(withIdentifier: "toResult", sender: nil)
// self.freeMemory()
// })
// alert.addAction(toResult)

if UIDevice.current.userInterfaceIdiom == .phone {
alert.addAction(UIAlertAction(title: "キャンセル", style: .cancel) { (action: UIAlertAction) in
Expand Down

0 comments on commit f8226e3

Please sign in to comment.