Skip to content

Commit eb4c9b5

Browse files
committed
add csharpier formatting
1 parent ed5c629 commit eb4c9b5

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

Assets/Scripts/AdvancePanel.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,9 @@ void OnEnable()
142142
{
143143
secretText = secretText[..^1];
144144
}
145-
numberGameButtonGO.GetComponent<Button>().onClick.AddListener(() => OnNumberGameButtonClicked());
145+
numberGameButtonGO
146+
.GetComponent<Button>()
147+
.onClick.AddListener(() => OnNumberGameButtonClicked());
146148
ASAButtonGO.GetComponent<Button>().onClick.AddListener(() => OnASAButtonClicked());
147149

148150
acceptButtonGO.GetComponent<Button>().onClick.AddListener(() => AcceptConsent());

Assets/Scripts/FeedbackPanel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ void OnEnable()
186186
// Reset all title animations at enable
187187
ResetTextSizeInTitleAnimation();
188188
StopTitleAnimation();
189-
189+
190190
// Set proper game objects active and establish button behavior
191191
newTaskButtonGO
192192
.GetComponent<Button>()
@@ -294,7 +294,7 @@ void OnEnable()
294294
bool hasUnderstanding = understanding != null;
295295
bool hasCommentAccuracy = !string.IsNullOrEmpty(comment_accuracy);
296296
bool hasCommentUnderstanding = !string.IsNullOrEmpty(comment_understanding);
297-
297+
298298
// Only send proceed if correct fields are filled, error drop-down otherwise
299299
bool isValid =
300300
(hasAccuracy && hasUnderstanding)

0 commit comments

Comments
 (0)