Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
man-in-the-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
4
Issues
4
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MIM
man-in-the-mirror
Commits
f59ef243
Commit
f59ef243
authored
Aug 12, 2019
by
18신대성
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
더블클릭 안전하게 바꿈
parent
a5c48c59
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
SelectStage.unity
Assets/Scenes/SelectStage.unity
+4
-0
PlayerController.cs
Assets/Scripts/PlayerController.cs
+2
-2
No files found.
Assets/Scenes/SelectStage.unity
View file @
f59ef243
...
...
@@ -558,5 +558,9 @@ PrefabInstance:
propertyPath
:
m_Color.a
value
:
0.8745098
objectReference
:
{
fileID
:
0
}
-
target
:
{
fileID
:
12888245
,
guid
:
8115fd4d1a1025b4fb05e45fc5fa6578
,
type
:
3
}
propertyPath
:
m_IsActive
value
:
1
objectReference
:
{
fileID
:
0
}
m_RemovedComponents
:
[]
m_SourcePrefab
:
{
fileID
:
100100000
,
guid
:
8115fd4d1a1025b4fb05e45fc5fa6578
,
type
:
3
}
Assets/Scripts/PlayerController.cs
View file @
f59ef243
...
...
@@ -166,7 +166,7 @@ public class PlayerController : SingletonBehaviour<PlayerController>
//Control player only if camera is not zooming in to or out from the current player
if
(!
GameManager
.
inst
.
isZooming
&&
!
GameManager
.
inst
.
isBulletFlying
)
{
if
(
Input
.
GetMouseButtonDown
(
0
))
if
(
Input
.
GetMouseButtonDown
(
0
)
&&
zoomReady
==
null
)
{
//Move the current player.
if
(!
GameManager
.
inst
.
isPlayerMoving
&&
!
GameManager
.
inst
.
isPlayerShooting
)
...
...
@@ -180,7 +180,7 @@ public class PlayerController : SingletonBehaviour<PlayerController>
currentPlayer
.
ResetCurrentPlayer
();
currentPlayer
=
hit
.
transform
.
gameObject
.
GetComponent
<
Player
>();
StartCoroutine
(
currentPlayer
.
SetCurrentPlayer
());
if
(
zoomReady
==
null
)
zoomReady
=
StartCoroutine
(
currentPlayer
.
CountPlayerClick
(
Time
.
time
));
zoomReady
=
StartCoroutine
(
currentPlayer
.
CountPlayerClick
(
Time
.
time
));
//Debug.Log(hit.collider.gameObject.tag);
}
else
if
(
Physics
.
Raycast
(
mouseRay
,
out
hit
,
float
.
MaxValue
,
layerMask
)
&&
hit
.
collider
.
gameObject
.
tag
.
Equals
(
"floor"
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment