Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
tetra-tower
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Oenos
tetra-tower
Commits
2984e326
Commit
2984e326
authored
Feb 27, 2019
by
15김민규
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
고쳐지지 않은 오탈자 고침
parent
328a22f5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
JiJoo.cs
Assets/Scripts/Characters/Enemy/Boss/JiJoo.cs
+2
-2
EnemyAir.cs
Assets/Scripts/Characters/Enemy/EnemyAir.cs
+1
-1
JiJooRoom.cs
Assets/Scripts/TetrisMap/Rooms/BossRoom/JiJooRoom.cs
+2
-2
No files found.
Assets/Scripts/Characters/Enemy/Boss/JiJoo.cs
View file @
2984e326
...
...
@@ -64,11 +64,11 @@ public abstract class JiJoo : Boss {
public
IEnumerator
Heal
(
float
hp
,
float
time
)
{
float
delta
=
hp
-
c
urrHealth
;
float
delta
=
hp
-
C
urrHealth
;
for
(
float
t
=
0
;
t
<=
time
;
t
+=
Time
.
deltaTime
)
{
yield
return
null
;
c
urrHealth
+=
(
delta
*
t
/
time
);
C
urrHealth
+=
(
delta
*
t
/
time
);
}
}
...
...
Assets/Scripts/Characters/Enemy/EnemyAir.cs
View file @
2984e326
...
...
@@ -58,7 +58,7 @@ public class EnemyAir : Enemy {
// - Knockback coroutine
protected
override
IEnumerator
Knockback
(
float
knockbackDist
,
float
knockbackTime
)
{
Vector2
knockbackDir
=
(
transform
.
parent
.
position
-
enemyManager
.
P
layer
.
transform
.
position
).
normalized
;
Vector2
knockbackDir
=
(
transform
.
parent
.
position
-
GameManager
.
Instance
.
p
layer
.
transform
.
position
).
normalized
;
Vector2
knockbackVelocity
=
(
knockbackDist
/
knockbackTime
)
*
knockbackDir
;
ChangeAngleZ
(
90
+
Mathf
.
Rad2Deg
*
Mathf
.
Atan2
(
knockbackDir
.
y
,
knockbackDir
.
x
));
...
...
Assets/Scripts/TetrisMap/Rooms/BossRoom/JiJooRoom.cs
View file @
2984e326
...
...
@@ -36,14 +36,14 @@ public class JiJooRoom : BossRoomInGame {
}
protected
void
Phase1
()
{
if
(
bosses
[
0
].
currHealth
<=
0
&&
bosses
[
1
].
c
urrHealth
<=
0
)
if
(
bosses
[
0
].
CurrHealth
<=
0
&&
bosses
[
1
].
C
urrHealth
<=
0
)
{
CurPhase
++;
}
}
protected
void
Phase2
()
{
if
(
bosses
[
0
].
currHealth
<=
0
&&
bosses
[
1
].
c
urrHealth
<=
0
)
if
(
bosses
[
0
].
CurrHealth
<=
0
&&
bosses
[
1
].
C
urrHealth
<=
0
)
{
CurPhase
++;
}
...
...
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