Skip to content

Commit 6d983ba

Browse files
author
Louise P
committed
[Update]: Change touch to key
1 parent 5284503 commit 6d983ba

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Meep/Meep.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@
395395
CODE_SIGN_IDENTITY = "Apple Development";
396396
CODE_SIGN_STYLE = Automatic;
397397
COMBINE_HIDPI_IMAGES = YES;
398-
CURRENT_PROJECT_VERSION = 1;
398+
CURRENT_PROJECT_VERSION = 1.0.4;
399399
DEVELOPMENT_ASSET_PATHS = "\"Meep/Preview Content\"";
400400
DEVELOPMENT_TEAM = EV49Z586CH;
401401
ENABLE_HARDENED_RUNTIME = YES;
@@ -421,7 +421,7 @@
421421
CODE_SIGN_IDENTITY = "Apple Development";
422422
CODE_SIGN_STYLE = Automatic;
423423
COMBINE_HIDPI_IMAGES = YES;
424-
CURRENT_PROJECT_VERSION = 1;
424+
CURRENT_PROJECT_VERSION = 1.0.4;
425425
DEVELOPMENT_ASSET_PATHS = "\"Meep/Preview Content\"";
426426
DEVELOPMENT_TEAM = EV49Z586CH;
427427
ENABLE_HARDENED_RUNTIME = YES;

Meep/Meep/Class/MenuClass.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ class MenuClass: ObservableObject {
117117
Touch(id: 1, name: "Crouch :", slug: touchSlug.crouch.rawValue, touch: En.downArrow.rawValue),
118118
Touch(id: 2, name: "Run Right :", slug: touchSlug.runRight.rawValue, touch: En.rightArrow.rawValue),
119119
Touch(id: 3, name: "Run Left :", slug: touchSlug.runLeft.rawValue, touch: En.leftArrow.rawValue),
120-
Touch(id: 4, name: "Diagonal jump left :", slug: "diag-jump-left", touch: "Touch Z"),
121-
Touch(id: 5, name: "Diagonal jump right :", slug: "diag-jump-right", touch: "Touch X")
120+
Touch(id: 4, name: "Diagonal jump left :", slug: "diag-jump-left", touch: "Key Z"),
121+
Touch(id: 5, name: "Diagonal jump right :", slug: "diag-jump-right", touch: "Key X")
122122
] { didSet { didChange.send() } }
123123

124124
var volume: Double = 0.6 { didSet { didChange.send() } }
@@ -165,7 +165,7 @@ class MenuClass: ObservableObject {
165165
touchsEn[i].touch = En.rightArrow.rawValue
166166
default:
167167
touchsFr[i].touch = "Touche " + char.uppercased()
168-
touchsEn[i].touch = "Touch " + char.uppercased()
168+
touchsEn[i].touch = "Key " + char.uppercased()
169169
}
170170
}
171171
return

0 commit comments

Comments
 (0)