Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
WidowmakerSimulator
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
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
15박보승
WidowmakerSimulator
Commits
2314940d
Commit
2314940d
authored
Sep 26, 2019
by
15박보승
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
훅의 최대거리 제한 구현
parent
df67be5d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
2 deletions
+21
-2
SampleScene.unity
Grapplers/Assets/Scenes/SampleScene.unity
+1
-0
HookBehaviour.cs
Grapplers/Assets/Scripts/HookBehaviour.cs
+18
-1
PlayerController.cs
Grapplers/Assets/Scripts/PlayerController.cs
+2
-1
No files found.
Grapplers/Assets/Scenes/SampleScene.unity
View file @
2314940d
...
...
@@ -342,6 +342,7 @@ MonoBehaviour:
lr
:
{
fileID
:
48712148
}
player
:
{
fileID
:
1171556388
}
rb
:
{
fileID
:
0
}
maxDistance
:
200
---
!u!1
&60348332
GameObject
:
m_ObjectHideFlags
:
0
...
...
Grapplers/Assets/Scripts/HookBehaviour.cs
View file @
2314940d
...
...
@@ -12,7 +12,12 @@ public class HookBehaviour : MonoBehaviour
[
SerializeField
]
private
Rigidbody
rb
;
private
void
OnDrawGizmos
()
[
SerializeField
]
private
float
maxDistance
;
private
float
curDistance
;
private
void
OnDrawGizmos
()
{
}
...
...
@@ -29,6 +34,17 @@ public class HookBehaviour : MonoBehaviour
lr
.
SetPosition
(
1
,
player
.
position
);
}
private
void
FixedUpdate
()
{
Debug
.
Log
(
curDistance
);
if
(
curDistance
<=
maxDistance
)
{
curDistance
+=
rb
.
velocity
.
magnitude
*
Time
.
fixedDeltaTime
;
if
(
curDistance
>
maxDistance
)
player
.
GetComponent
<
PlayerController
>().
ReturnHook
();
}
}
private
void
OnCollisionEnter
(
Collision
collision
)
{
rb
.
velocity
=
Vector3
.
zero
;
...
...
@@ -43,6 +59,7 @@ public class HookBehaviour : MonoBehaviour
lr
.
SetPosition
(
1
,
player
.
position
);
rb
.
isKinematic
=
false
;
rb
.
velocity
=
velocity
;
curDistance
=
0
;
}
public
void
DisableHook
()
...
...
Grapplers/Assets/Scripts/PlayerController.cs
View file @
2314940d
...
...
@@ -36,6 +36,7 @@ public class PlayerController : MonoBehaviour
[
SerializeField
]
private
LayerMask
enemyMask
;
#if UNITY_EDITOR
private
void
OnDrawGizmos
()
{
...
...
@@ -120,7 +121,7 @@ public class PlayerController : MonoBehaviour
hook
.
EnableHook
(
Camera
.
main
.
transform
.
forward
.
normalized
*
200
);
}
p
rivate
void
ReturnHook
()
p
ublic
void
ReturnHook
()
{
joint
.
enabled
=
false
;
hook
.
DisableHook
();
...
...
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