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
c46a4135
Commit
c46a4135
authored
Feb 27, 2019
by
16도재형
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
페이즈 1에서 2로 넘어가는거 만들어야하는데 거미가 안살아남, enemy 브랜치 머지하고 다시작업함
parent
7d77c1cd
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
1733 additions
and
272 deletions
+1733
-272
JiJoo.controller
Assets/Animation/Enemy/JiJoo.controller
+733
-2
JiJooIdle.controller
Assets/Animation/Enemy/JiJooIdle.controller
+419
-1
Room Boss 1-3.prefab
Assets/Prefabs/Rooms/SpecialRoom/Room Boss 1-3.prefab
+515
-258
JiJooMove.cs
Assets/Scripts/Characters/Enemy/Animator State/JiJooMove.cs
+17
-7
JiJooMove.cs.meta
...Scripts/Characters/Enemy/Animator State/JiJooMove.cs.meta
+0
-0
JiJoo.cs
Assets/Scripts/Characters/Enemy/Boss/JiJoo.cs
+47
-2
JiJooRoom.cs
Assets/Scripts/TetrisMap/Rooms/BossRoom/JiJooRoom.cs
+1
-1
BossRoomInGame.cs
Assets/Scripts/TetrisMap/Rooms/BossRoomInGame.cs
+1
-1
No files found.
Assets/Animation/Enemy/JiJoo.controller
View file @
c46a4135
This diff is collapsed.
Click to expand it.
Assets/Animation/Enemy/JiJooIdle.controller
View file @
c46a4135
This diff is collapsed.
Click to expand it.
Assets/Prefabs/Rooms/SpecialRoom/Room Boss 1-3.prefab
View file @
c46a4135
This diff is collapsed.
Click to expand it.
Assets/JiJooMove.cs
→
Assets/
Scripts/Characters/Enemy/Animator State/
JiJooMove.cs
View file @
c46a4135
...
...
@@ -7,9 +7,11 @@ public class JiJooMove : StateMachineBehaviour {
float
verticalSpeed
;
GameObject
player
;
Transform
animatorRoot
;
Rigidbody2D
rb2D
;
JiJoo
enemy
;
Vector2Int
dir
;
Vector2Int
destination
;
Vector2
velocity
;
float
time
;
float
timer
=
0
;
...
...
@@ -19,29 +21,37 @@ public class JiJooMove : StateMachineBehaviour {
animatorRoot
=
animator
.
transform
.
parent
;
enemy
=
animator
.
GetComponent
<
JiJoo
>();
player
=
GameManager
.
Instance
.
player
;
rb2D
=
enemy
.
transform
.
parent
.
GetComponent
<
Rigidbody2D
>();
horizontalSpeed
=
enemy
.
horizontalSpeed
;
verticalSpeed
=
enemy
.
verticalSpeed
;
dir
=
enemy
.
MoveDirection
();
enemy
.
transform
.
eulerAngles
=
new
Vector3
(
0
,
0
,
JiJoo
.
Vector2ToZAngle
(
dir
));
enemy
.
transform
.
parent
.
GetComponent
<
Rigidbody2D
>().
velocity
=
dir
*
new
Vector2
(
horizontalSpeed
,
verticalSpeed
);
destination
=
enemy
.
gridPosition
+
dir
;
if
(
destination
.
x
<
0
||
destination
.
x
>=
6
||
destination
.
y
<
0
||
destination
.
y
>=
6
)
{
animator
.
SetTrigger
(
"IdleTrigger"
);
return
;
}
enemy
.
transform
.
eulerAngles
=
new
Vector3
(
0
,
0
,
JiJoo
.
Vector2ToZAngle
(
dir
));
velocity
=
dir
*
new
Vector2
(
horizontalSpeed
,
verticalSpeed
);
Vector2
realVector
=
JiJoo
.
RealPosition
(
destination
)
-
JiJoo
.
RealPosition
(
enemy
.
gridPosition
);
time
=
realVector
.
x
/
horizontalSpeed
+
realVector
.
y
/
verticalSpeed
;
time
=
Mathf
.
Abs
(
realVector
.
x
)
/
horizontalSpeed
+
Mathf
.
Abs
(
realVector
.
y
)
/
verticalSpeed
;
timer
=
0
;
}
// OnStateUpdate is called on each Update frame between OnStateEnter and OnStateExit callbacks
override
public
void
OnStateUpdate
(
Animator
animator
,
AnimatorStateInfo
stateInfo
,
int
layerIndex
)
{
if
(
timer
>
time
)
rb2D
.
MovePosition
(
rb2D
.
position
+
velocity
*
Time
.
deltaTime
);
if
(
timer
>
time
)
{
enemy
.
transform
.
parent
.
GetComponent
<
Rigidbody2D
>().
velocity
=
Vector2
.
zero
;
Debug
.
Log
(
"end"
)
;
enemy
.
gridPosition
=
destination
;
enemy
.
transform
.
position
=
JiJoo
.
RealPosition
(
destination
);
enemy
.
transform
.
p
arent
.
transform
.
localP
osition
=
JiJoo
.
RealPosition
(
destination
);
animator
.
SetTrigger
(
"IdleTrigger"
);
}
timer
+=
Time
.
deltaTime
;
}
// OnStateExit is called when a transition ends and the state machine finishes evaluating this state
...
...
Assets/JiJooMove.cs.meta
→
Assets/
Scripts/Characters/Enemy/Animator State/
JiJooMove.cs.meta
View file @
c46a4135
File moved
Assets/Scripts/Characters/Enemy/Boss/JiJoo.cs
View file @
c46a4135
...
...
@@ -25,7 +25,7 @@ public abstract class JiJoo : Boss {
playerDirection
=
GameManager
.
Instance
.
player
.
transform
.
position
-
transform
.
position
;
bossRoom
.
transitionUpdate
[
0
]
+=
Phase1Transition
;
//
transitionUpdate[1] += Phase2Transition;
bossRoom
.
transitionUpdate
[
1
]
+=
Phase2Transition
;
bossRoom
.
phaseUpdate
[
0
]
+=
Phase1
;
//phaseUpdate[1] += Phase2;
}
...
...
@@ -44,8 +44,8 @@ public abstract class JiJoo : Boss {
protected
void
Phase1Transition
()
{
Debug
.
Log
(
"aaa"
);
animator
.
runtimeAnimatorController
=
animators
[
bossRoom
.
CurPhase
];
bossRoom
.
isTransitionFinished
=
true
;
}
protected
void
Phase2Transition
()
{
...
...
@@ -60,6 +60,50 @@ public abstract class JiJoo : Boss {
}
public
override
void
GetDamaged
(
PlayerAttackInfo
attack
)
{
if
(
Invisible
)
{
return
;
}
float
prevHealth
=
currHealth
;
currHealth
-=
attack
.
damage
;
if
(
currHealth
<=
0
)
{
Invisible
=
true
;
animator
.
SetTrigger
(
"DeadTrigger"
);
StopCoroutine
(
"OnFire"
);
GetComponent
<
SpriteRenderer
>().
color
=
Color
.
white
;
if
(
bossRoom
.
CurPhase
==
bossRoom
.
totalPhase
-
1
)
{
currHealth
=
1
;
}
}
DebuffApply
(
attack
.
debuffTime
);
float
knockbackDist
=
attack
.
damage
*
attack
.
knockBackMultiplier
/
weight
;
float
knockbackTime
=
(
knockbackDist
>=
0.5f
)
?
0.5f
:
knockbackDist
;
if
(
MovementLock
)
// 넉백이 진행 중
{
StopCoroutine
(
"Knockback"
);
}
StartCoroutine
(
Knockback
(
knockbackDist
,
knockbackTime
));
float
currHealthPercentage
=
currHealth
/
maxHealth
;
float
prevHealthPercentage
=
prevHealth
/
maxHealth
;
foreach
(
float
percentage
in
knockbackPercentage
)
{
if
(
currHealthPercentage
>
percentage
)
{
break
;
}
if
(
prevHealthPercentage
>
percentage
)
{
animator
.
SetTrigger
(
"DamagedTrigger"
);
break
;
}
}
animator
.
SetTrigger
(
"TrackTrigger"
);
}
public
abstract
Vector2Int
MoveDirection
();
public
IEnumerator
Heal
(
float
hp
,
float
time
)
...
...
@@ -70,6 +114,7 @@ public abstract class JiJoo : Boss {
yield
return
null
;
currHealth
+=
(
delta
*
t
/
time
);
}
currHealth
=
hp
;
}
public
static
float
Vector2ToZAngle
(
Vector2Int
dir
)
...
...
Assets/Scripts/TetrisMap/Rooms/BossRoom/JiJooRoom.cs
View file @
c46a4135
...
...
@@ -28,7 +28,7 @@ public class JiJooRoom : BossRoomInGame {
protected
void
Phase1Transition
()
{
Debug
.
Log
(
"come"
);
}
protected
void
Phase2Transition
()
{
...
...
Assets/Scripts/TetrisMap/Rooms/BossRoomInGame.cs
View file @
c46a4135
...
...
@@ -75,7 +75,7 @@ public class BossRoomInGame : RoomInGame {
IEnumerator
Phase
(
int
phase
)
{
isTransitionFinished
=
false
;
Debug
.
Log
(
transitionUpdate
[
phase
].
GetInvocationList
().
GetLength
(
0
)
);
Debug
.
Log
(
transitionUpdate
[
phase
].
GetInvocationList
().
Length
);
while
(!
isTransitionFinished
)
{
if
(
transitionUpdate
[
phase
]
!=
null
)
...
...
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