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:18:05 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f02b79f18ebeebddc38805952af4d01b0d991256
f02b79f1
1 parent
07c2a7ab
final follow 위치 수정 및 화면 전환
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
6 deletions
sourcecode/capstone/Assets/Scenes/Final.unity
sourcecode/capstone/Assets/Script/Final.cs
sourcecode/capstone/Assets/Script/Result.cs
sourcecode/capstone/Assets/Scenes/Final.unity
View file @
f02b79f
...
...
@@ -454,7 +454,7 @@ RectTransform:
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
200
}
m_Children
:
[]
m_Father
:
{
fileID
:
571036441
}
m_RootOrder
:
2
m_RootOrder
:
3
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_AnchorMin
:
{
x
:
0.5
,
y
:
0.5
}
m_AnchorMax
:
{
x
:
0.5
,
y
:
0.5
}
...
...
@@ -845,8 +845,8 @@ RectTransform:
m_Children
:
-
{
fileID
:
75648109
}
-
{
fileID
:
551735912
}
-
{
fileID
:
340360182
}
-
{
fileID
:
751222031
}
-
{
fileID
:
340360182
}
m_Father
:
{
fileID
:
0
}
m_RootOrder
:
2
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
...
...
@@ -979,7 +979,7 @@ RectTransform:
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_Children
:
[]
m_Father
:
{
fileID
:
571036441
}
m_RootOrder
:
3
m_RootOrder
:
2
m_LocalEulerAnglesHint
:
{
x
:
0
,
y
:
0
,
z
:
0
}
m_AnchorMin
:
{
x
:
0.5
,
y
:
0.5
}
m_AnchorMax
:
{
x
:
0.5
,
y
:
0.5
}
...
...
@@ -1247,6 +1247,7 @@ MonoBehaviour:
m_Script
:
{
fileID
:
11500000
,
guid
:
3af9c1c60f4b821408457bded93ec384
,
type
:
3
}
m_Name
:
m_EditorClassIdentifier
:
SceneToLoad
:
---
!u!4
&1816730612
Transform
:
m_ObjectHideFlags
:
0
...
...
sourcecode/capstone/Assets/Script/Final.cs
View file @
f02b79f
...
...
@@ -38,7 +38,7 @@ public class Final : MonoBehaviour
if
(
timer1
>
2.5
)
{
Debug
.
Log
(
"Clicked"
);
SceneManager
.
LoadScene
(
SceneToLoad
);
SceneManager
.
LoadScene
(
"Start"
);
}
}
...
...
@@ -51,7 +51,7 @@ public class Final : MonoBehaviour
if
(
timer2
>
2.5
)
{
Debug
.
Log
(
"Clicked"
);
SceneManager
.
LoadScene
(
SceneToLoad
);
SceneManager
.
LoadScene
(
"Intro"
);
}
}
...
...
sourcecode/capstone/Assets/Script/Result.cs
View file @
f02b79f
...
...
@@ -16,7 +16,7 @@ public class Result : MonoBehaviour
{
timer
=
0
;
num
=
Move
.
traineecnt
;
NumOfGreat
.
text
=
""
;
Debug
.
Log
(
num
)
;
}
// Update is called once per frame
...
...
Please
register
or
login
to post a comment