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
a077febe
Commit
a077febe
authored
Aug 12, 2019
by
18신대성
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
더블클릭 구현 완료
parent
af445032
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
9 deletions
+29
-9
CameraController.cs
Assets/Scripts/CameraController.cs
+4
-4
Player.cs
Assets/Scripts/Player.cs
+22
-4
PlayerController.cs
Assets/Scripts/PlayerController.cs
+3
-1
No files found.
Assets/Scripts/CameraController.cs
View file @
a077febe
...
...
@@ -79,10 +79,10 @@ public class CameraController : MonoBehaviour
/// <returns></returns>
public
IEnumerator
ZoomInAtPlayer
(
Player
player
)
{
GameManager
.
inst
.
isZooming
=
true
;
float
startTime
=
Time
.
time
;
Vector3
posDiff
=
(
player
.
head
.
transform
.
position
-
transform
.
position
)
/
cameraMoveDuration
;
float
angleDiff
=
-
30f
/
cameraMoveDuration
;
GameManager
.
inst
.
isZooming
=
true
;
previousPos
=
transform
.
position
;
previousAngle
=
new
Vector3
(
transform
.
eulerAngles
.
x
>
180
?
transform
.
eulerAngles
.
x
-
360
:
transform
.
eulerAngles
.
x
,
transform
.
eulerAngles
.
y
>
180
?
transform
.
eulerAngles
.
y
-
360
:
transform
.
eulerAngles
.
y
,
...
...
@@ -121,11 +121,11 @@ public class CameraController : MonoBehaviour
/// <returns></returns>
public
IEnumerator
ZoomOutFromPlayer
(
Player
player
)
{
GameManager
.
inst
.
isZooming
=
true
;
float
startTime
=
Time
.
time
;
Vector3
posDiff
=
(
previousPos
-
transform
.
position
)
/
cameraMoveDuration
;
player
.
laser
.
SetActive
(
false
);
helpUI
.
SetActive
(
false
);
GameManager
.
inst
.
isZooming
=
true
;
player
.
anim
.
SetBool
(
"isShooting"
,
false
);
player
.
head
.
transform
.
Find
(
"Head 19"
).
gameObject
.
layer
=
LayerMask
.
NameToLayer
(
"Player"
);
player
.
head
.
SetActive
(
true
);
...
...
@@ -171,14 +171,14 @@ public class CameraController : MonoBehaviour
// Update is called once per frame
void
Update
()
{
if
(!
GameManager
.
inst
.
is
GameOver
&&
!
GameManager
.
inst
.
is
Zooming
)
if
(!
GameManager
.
inst
.
isZooming
)
{
if
(!
GameManager
.
inst
.
isPlayerShooting
)
{
CameraMove
();
CameraDrag
();
}
else
else
if
(!
GameManager
.
inst
.
isGameOver
)
{
float
mouseMoveValueX
=
Input
.
GetAxis
(
"Mouse X"
);
float
mouseMoveValueY
=
Input
.
GetAxis
(
"Mouse Y"
);
...
...
Assets/Scripts/Player.cs
View file @
a077febe
...
...
@@ -103,7 +103,10 @@ public class Player : MonoBehaviour
public
IEnumerator
CountPlayerClick
(
float
startTime
)
{
float
time
=
Time
.
time
;
float
doubleClickDelay
=
0.2f
;
float
endTime
=
startTime
+
1f
;
bool
doubleClicked
=
false
;
bool
isHoldExit
=
false
;
aimLight
.
gameObject
.
SetActive
(
true
);
while
(
time
<=
endTime
)
{
...
...
@@ -113,13 +116,27 @@ public class Player : MonoBehaviour
time
=
Time
.
time
;
if
(!
Input
.
GetMouseButton
(
0
))
{
aimLight
.
lightMultiplier
=
0
;
aimLight
.
spotAngle
=
60
;
aimLight
.
gameObject
.
SetActive
(
false
);
isHoldExit
=
true
;
break
;
}
}
if
(
time
>
endTime
)
if
(
isHoldExit
)
{
while
(
time
+
doubleClickDelay
>
Time
.
time
)
{
yield
return
null
;
aimLight
.
lightMultiplier
*=
0.8f
;
if
(
Input
.
GetMouseButtonDown
(
0
))
{
doubleClicked
=
true
;
break
;
}
}
aimLight
.
lightMultiplier
=
0
;
aimLight
.
spotAngle
=
60
;
aimLight
.
gameObject
.
SetActive
(
false
);
}
if
((!
isHoldExit
&&
time
>
endTime
)
||
doubleClicked
)
{
aimLight
.
lightMultiplier
=
0
;
aimLight
.
spotAngle
=
60
;
...
...
@@ -127,6 +144,7 @@ public class Player : MonoBehaviour
GameManager
.
inst
.
isPlayerShooting
=
true
;
StartCoroutine
(
Camera
.
main
.
GetComponent
<
CameraController
>().
ZoomInAtPlayer
(
this
));
}
PlayerController
.
inst
.
zoomReady
=
null
;
}
public
void
Shoot
(
BulletCode
bulletCode
)
...
...
Assets/Scripts/PlayerController.cs
View file @
a077febe
...
...
@@ -25,6 +25,8 @@ public class PlayerController : SingletonBehaviour<PlayerController>
public
event
Action
<
Vector2Int
>
OnPlayerMove
;
public
Coroutine
zoomReady
=
null
;
public
GameObject
CreatePlayer
(
Floor
floor
)
{
foreach
(
var
obj
in
MapManager
.
inst
.
players
)
...
...
@@ -178,7 +180,7 @@ public class PlayerController : SingletonBehaviour<PlayerController>
currentPlayer
.
ResetCurrentPlayer
();
currentPlayer
=
hit
.
transform
.
gameObject
.
GetComponent
<
Player
>();
StartCoroutine
(
currentPlayer
.
SetCurrentPlayer
());
StartCoroutine
(
currentPlayer
.
CountPlayerClick
(
Time
.
time
));
if
(
zoomReady
==
null
)
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