Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-capstone-design1
/
LSK_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
고다경
2020-06-19 04:26:01 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4bd5696a63dc810d3b5a69ad50de5b26f7be0cf0
4bd5696a
1 parent
f02b79f1
RESULT 에서 운동횟수 보여주기
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
sourcecode/capstone/Assets/Script/Move.cs
sourcecode/capstone/Assets/Script/Move.cs
View file @
4bd5696
...
...
@@ -60,7 +60,9 @@ public class Move : MonoBehaviour
public
Text
Great
;
public
Text
Trainner_count
,
Trainee_count
;
public
static
string
trainercnt
,
traineecnt
;
string
trainercnt
;
public
static
string
traineecnt
;
string
hipbal
,
leftkneewarning
,
rightkneewarning
,
leftsidehighkick
,
rightsidehighkick
;
string
spinestraight
,
pullhipback
,
great
;
...
...
@@ -237,11 +239,10 @@ public class Move : MonoBehaviour
workout_flag
=
0
;
total
=
10
;
}
workout_count
++;
workout
=
false
;
Debug
.
Log
(
"트레이니: "
+
workout_count
);
traine
r
cnt
=
workout_count
+
"/"
+
total
;
traine
e
cnt
=
workout_count
+
"/"
+
total
;
Trainee_count
.
text
=
trainercnt
;
}
...
...
Please
register
or
login
to post a comment