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
5be33402
Commit
5be33402
authored
Oct 06, 2019
by
15박보승
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
피격이펙트 추가
parent
22da2ee7
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4777 additions
and
13 deletions
+4777
-13
SampleScene.unity
Grapplers/Assets/Scenes/SampleScene.unity
+4767
-12
CameraController.cs
Grapplers/Assets/Scripts/CameraController.cs
+8
-0
PlayerController.cs
Grapplers/Assets/Scripts/PlayerController.cs
+1
-0
WeaponBehaviour.cs
Grapplers/Assets/Scripts/WeaponBehaviour.cs
+1
-1
No files found.
Grapplers/Assets/Scenes/SampleScene.unity
View file @
5be33402
This source diff could not be displayed because it is too large. You can
view the blob
instead.
Grapplers/Assets/Scripts/CameraController.cs
View file @
5be33402
...
...
@@ -20,6 +20,9 @@ public class CameraController : MonoBehaviour
[
SerializeField
]
private
LayerMask
blockMask
;
[
SerializeField
]
private
ParticleSystem
hitEffect
;
private
void
Start
()
{
cam
=
GetComponent
<
Camera
>();
...
...
@@ -51,6 +54,11 @@ public class CameraController : MonoBehaviour
*/
}
public
void
PlayHitEffect
()
{
hitEffect
.
Play
();
}
private
void
LateUpdate
()
{
...
...
Grapplers/Assets/Scripts/PlayerController.cs
View file @
5be33402
...
...
@@ -147,5 +147,6 @@ public class PlayerController : MonoBehaviour
public
void
GetDamaged
(
int
damage
)
{
Health
=
Mathf
.
Max
(
0
,
Health
-
damage
);
Camera
.
main
.
GetComponent
<
CameraController
>().
PlayHitEffect
();
}
}
\ No newline at end of file
Grapplers/Assets/Scripts/WeaponBehaviour.cs
View file @
5be33402
...
...
@@ -29,7 +29,7 @@ public class WeaponBehaviour : MonoBehaviour
private
void
Start
()
{
weapon
=
new
Gun
(
gunDamage
,
gunRange
,
bulletEffect
);
weapon
=
new
Knife
(
knifeDamage
,
knifeRange
,
bulletEffect
,
transform
);
IngameUIManager
.
inst
.
UpdateWeaponTypeUI
(
WeaponType
.
GUN
);
}
private
void
Update
()
...
...
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