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
81ee5f13
Commit
81ee5f13
authored
5 years ago
by
15박보승
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
마무리 푸쉬
parent
a68fc166
BS
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5874 additions
and
3212 deletions
+5874
-3212
Ingame.unity
Grapplers/Assets/Scenes/Ingame.unity
+5872
-3210
CloudBehaviour.cs
Grapplers/Assets/Scripts/CloudBehaviour.cs
+1
-1
PlayerController.cs
Grapplers/Assets/Scripts/PlayerController.cs
+1
-1
No files found.
Grapplers/Assets/Scenes/Ingame.unity
View file @
81ee5f13
This diff is collapsed.
Click to expand it.
Grapplers/Assets/Scripts/CloudBehaviour.cs
View file @
81ee5f13
...
...
@@ -16,6 +16,6 @@ public class CloudBehaviour : MonoBehaviour
{
ParticleSystem
.
ColorOverLifetimeModule
module
=
cloud
.
colorOverLifetime
;
module
.
color
=
new
Color
(
1
,
1
,
1
,
height
/
500
);
transform
.
position
=
new
Vector3
(
transform
.
position
.
x
,
height
-
4
00
,
transform
.
position
.
z
);
transform
.
position
=
new
Vector3
(
transform
.
position
.
x
,
height
-
1
00
,
transform
.
position
.
z
);
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Grapplers/Assets/Scripts/PlayerController.cs
View file @
81ee5f13
...
...
@@ -119,7 +119,7 @@ public class PlayerController : MonoBehaviour
if
(
joint
.
enabled
)
joint
.
moveDelta
=
(
horizontal
*
transform
.
right
+
vertical
*
transform
.
forward
).
normalized
*
30.0f
;
else
rb
.
AddForce
((
horizontal
*
transform
.
right
+
vertical
*
transform
.
forward
).
normalized
*
10.0f
);
rb
.
AddForce
((
horizontal
*
transform
.
right
+
vertical
*
transform
.
forward
).
normalized
*
10.0f
*
Time
.
deltaTime
);
}
if
(
MapManager
.
inst
.
IsOutOfMapBounds
(
transform
.
position
))
...
...
This diff is collapsed.
Click to expand it.
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