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
9a03787d
Commit
9a03787d
authored
Feb 27, 2019
by
18김상언
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
활쟁이가 활 쏠 떄 플레이어 있는 쪽으로 방향 전환함.
parent
45ddd7ba
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
38 additions
and
3 deletions
+38
-3
GoblinArcher_Attack.anim
Assets/Animation/Enemy/GoblinArcher/GoblinArcher_Attack.anim
+28
-0
ArcherTrack.cs
...ts/Scripts/Characters/Enemy/Animator State/ArcherTrack.cs
+2
-3
EnemyGround.cs
Assets/Scripts/Characters/Enemy/EnemyGround.cs
+8
-0
No files found.
Assets/Animation/Enemy/GoblinArcher/GoblinArcher_Attack.anim
View file @
9a03787d
...
...
@@ -81,6 +81,27 @@ AnimationClip:
m_HasMotionFloatCurves
:
0
m_GenerateMotionCurves
:
0
m_Events
:
-
time
:
0.05
functionName
:
Flip
data
:
objectReferenceParameter
:
{
fileID
:
0
}
floatParameter
:
0
intParameter
:
0
messageOptions
:
0
-
time
:
0.13333334
functionName
:
Flip
data
:
objectReferenceParameter
:
{
fileID
:
0
}
floatParameter
:
0
intParameter
:
0
messageOptions
:
0
-
time
:
0.21666667
functionName
:
Flip
data
:
objectReferenceParameter
:
{
fileID
:
0
}
floatParameter
:
0
intParameter
:
0
messageOptions
:
0
-
time
:
0.25
functionName
:
SetTarget
data
:
...
...
@@ -88,6 +109,13 @@ AnimationClip:
floatParameter
:
0
intParameter
:
0
messageOptions
:
0
-
time
:
0.56666666
functionName
:
Flip
data
:
objectReferenceParameter
:
{
fileID
:
0
}
floatParameter
:
0
intParameter
:
0
messageOptions
:
0
-
time
:
0.8333333
functionName
:
ArrowShot
data
:
...
...
Assets/Scripts/Characters/Enemy/Animator State/ArcherTrack.cs
View file @
9a03787d
...
...
@@ -30,7 +30,6 @@ public class ArcherTrack : StateMachineBehaviour
enemy
=
animator
.
GetComponent
<
EnemyGround
>();
player
=
GameManager
.
Instance
.
player
;
trackSpeed
=
enemy
.
trackSpeed
;
attackRange
=
enemy
.
attackRange
;
...
...
@@ -52,8 +51,8 @@ public class ArcherTrack : StateMachineBehaviour
//shotCounter -= Time.deltaTime;
if
(
animator
.
GetComponent
<
Enemy
>().
PlayerDistance
<
attackRange
/* && shotCounter < 0*/
)
{
animator
.
SetTrigger
(
"AttackTrigger"
);
// GameManager.Instance.StartCoroutine(WaitforShot());
animator
.
SetTrigger
(
"AttackTrigger"
);
// GameManager.Instance.StartCoroutine(WaitforShot());
return
;
}
...
...
Assets/Scripts/Characters/Enemy/EnemyGround.cs
View file @
9a03787d
...
...
@@ -147,11 +147,13 @@ public class EnemyGround : Enemy {
public
void
SetTarget
()
{
target
=
GameManager
.
Instance
.
player
;
Vector2
direction
=
transform
.
GetChild
(
0
).
position
-
target
.
transform
.
position
;
float
angle
=
Mathf
.
Atan2
(
direction
.
y
,
direction
.
x
)
*
Mathf
.
Rad2Deg
;
Quaternion
rotation
=
Quaternion
.
AngleAxis
(
angle
,
Vector3
.
forward
);
_rotation
=
rotation
;
Flip
();
}
public
void
ArrowShot
()
...
...
@@ -159,4 +161,10 @@ public class EnemyGround : Enemy {
GameObject
enemy_arrow
=
Resources
.
Load
<
GameObject
>(
"Prefabs/Projectiles/enemy_arrow"
);
Instantiate
(
enemy_arrow
,
transform
.
GetChild
(
0
).
position
,
_rotation
);
}
public
void
Flip
()
{
NumeratedDir
trackDir
=
(
transform
.
GetChild
(
0
).
position
.
x
-
target
.
transform
.
position
.
x
>
0
)
?
NumeratedDir
.
Left
:
NumeratedDir
.
Right
;
ChangeDir_noOption
(
trackDir
);
}
}
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