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
ed5b95ee
Commit
ed5b95ee
authored
Sep 29, 2019
by
15박보승
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
구름의 높이가 최대 높이 기록에 따라 달라지도록 구현/최대 높이 기록을 보여주는 UI 추가/MapManager 작업중
parent
af62aded
Changes
10
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
321 additions
and
84 deletions
+321
-84
Materials.meta
Grapplers/Assets/Materials.meta
+1
-1
SampleScene.unity
Grapplers/Assets/Scenes/SampleScene.unity
+199
-81
CloudBehaviour.cs
Grapplers/Assets/Scripts/CloudBehaviour.cs
+21
-0
CloudBehaviour.cs.meta
Grapplers/Assets/Scripts/CloudBehaviour.cs.meta
+11
-0
GameManager.cs
Grapplers/Assets/Scripts/GameManager.cs
+23
-0
GameManager.cs.meta
Grapplers/Assets/Scripts/GameManager.cs.meta
+11
-0
IngameUIManager.cs
Grapplers/Assets/Scripts/IngameUIManager.cs
+7
-0
MapManager.cs
Grapplers/Assets/Scripts/MapManager.cs
+32
-0
MapManager.cs.meta
Grapplers/Assets/Scripts/MapManager.cs.meta
+11
-0
PlayerController.cs
Grapplers/Assets/Scripts/PlayerController.cs
+5
-2
No files found.
Grapplers/Assets/Materials.meta
View file @
ed5b95ee
fileFormatVersion: 2
guid:
69aef0102c5caac4fb4391e08505dca0
guid:
19ac9e1f5954f44458c34d427b8ce316
folderAsset: yes
DefaultImporter:
externalObjects: {}
...
...
Grapplers/Assets/Scenes/SampleScene.unity
View file @
ed5b95ee
This diff is collapsed.
Click to expand it.
Grapplers/Assets/Scripts/CloudBehaviour.cs
0 → 100644
View file @
ed5b95ee
using
System.Collections
;
using
System.Collections.Generic
;
using
UnityEngine
;
public
class
CloudBehaviour
:
MonoBehaviour
{
private
ParticleSystem
cloud
;
private
void
Start
()
{
cloud
=
GetComponent
<
ParticleSystem
>();
GameManager
.
inst
.
OnMaxHeightChanged
+=
SetHeight
;
}
private
void
SetHeight
(
float
height
)
{
ParticleSystem
.
ColorOverLifetimeModule
module
=
cloud
.
colorOverLifetime
;
module
.
color
=
new
Color
(
1
,
1
,
1
,
height
/
500
);
transform
.
position
=
new
Vector3
(
transform
.
position
.
x
,
height
-
400
,
transform
.
position
.
z
);
}
}
\ No newline at end of file
Grapplers/Assets/Scripts/CloudBehaviour.cs.meta
0 → 100644
View file @
ed5b95ee
fileFormatVersion: 2
guid: 11492ba4fa2cc8f46a9b9e3e1e3796e4
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
Grapplers/Assets/Scripts/GameManager.cs
0 → 100644
View file @
ed5b95ee
using
System
;
using
System.Collections
;
using
System.Collections.Generic
;
using
UnityEngine
;
public
class
GameManager
:
SingletonBehaviour
<
GameManager
>
{
private
float
_maxHeight
=
0
;
public
float
MaxHeight
{
get
{
return
_maxHeight
;
}
set
{
Debug
.
Log
(
value
);
_maxHeight
=
value
;
OnMaxHeightChanged
?.
Invoke
(
value
);
}
}
public
Action
<
float
>
OnMaxHeightChanged
;
}
Grapplers/Assets/Scripts/GameManager.cs.meta
0 → 100644
View file @
ed5b95ee
fileFormatVersion: 2
guid: 4daf81bf030001f49bad8056a5fae1c0
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
Grapplers/Assets/Scripts/IngameUIManager.cs
View file @
ed5b95ee
...
...
@@ -11,6 +11,8 @@ public class IngameUIManager : SingletonBehaviour<IngameUIManager>
[
SerializeField
]
private
Text
heightText
;
[
SerializeField
]
private
Text
maxHeightText
;
[
SerializeField
]
private
GameObject
enemyHealthUIPrefab
;
...
...
@@ -43,6 +45,11 @@ public class IngameUIManager : SingletonBehaviour<IngameUIManager>
}
}
public
void
UpdateMaxHeightText
(
float
maxHeight
)
{
maxHeightText
.
text
=
string
.
Format
(
"{0:F1}"
,
maxHeight
)
+
" M"
;
}
public
void
UpdateHeightText
(
float
height
)
{
heightText
.
text
=
string
.
Format
(
"{0:F1}"
,
height
)
+
" M"
;
...
...
Grapplers/Assets/Scripts/MapManager.cs
0 → 100644
View file @
ed5b95ee
using
System.Collections
;
using
System.Collections.Generic
;
using
UnityEngine
;
public
class
MapManager
:
MonoBehaviour
{
private
float
nextMapBlockGenerateDistance
;
private
float
nextEnemyGenerateDistance
;
[
SerializeField
]
private
Bounds
mapBound
;
private
void
OnDrawGizmos
()
{
Gizmos
.
color
=
Color
.
blue
;
Gizmos
.
DrawWireCube
(
mapBound
.
center
,
mapBound
.
size
);
}
private
void
Start
()
{
GameManager
.
inst
.
OnMaxHeightChanged
+=
OnMaxHeightChanged
;
}
public
void
OnMaxHeightChanged
(
float
height
)
{
mapBound
.
center
=
new
Vector3
(
0
,
height
,
0
);
foreach
(
Transform
child
in
transform
)
{
if
(
child
.
position
.
y
<
height
-
500
)
{
child
.
gameObject
.
SetActive
(
false
);
}
}
}
}
Grapplers/Assets/Scripts/MapManager.cs.meta
0 → 100644
View file @
ed5b95ee
fileFormatVersion: 2
guid: f34fc5c75bd2c124487b69a78f0bbbed
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:
Grapplers/Assets/Scripts/PlayerController.cs
View file @
ed5b95ee
...
...
@@ -121,6 +121,11 @@ public class PlayerController : MonoBehaviour
private
void
LateUpdate
()
{
IngameUIManager
.
inst
.
UpdateHeightText
(
transform
.
position
.
y
);
if
(
GameManager
.
inst
.
MaxHeight
<
transform
.
position
.
y
)
{
IngameUIManager
.
inst
.
UpdateMaxHeightText
(
transform
.
position
.
y
);
GameManager
.
inst
.
MaxHeight
=
transform
.
position
.
y
;
}
}
private
void
FireHook
()
...
...
@@ -137,7 +142,6 @@ public class PlayerController : MonoBehaviour
hook
.
DisableHook
();
isWired
=
false
;
rb
.
useGravity
=
true
;
//cc.enabled = true;
}
public
void
ActiveWire
()
...
...
@@ -146,6 +150,5 @@ public class PlayerController : MonoBehaviour
joint
.
distance
=
Vector3
.
Distance
(
transform
.
position
,
hook
.
transform
.
position
);
isWired
=
true
;
rb
.
useGravity
=
false
;
//cc.enabled = false;
}
}
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