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
9eea22ef
Commit
9eea22ef
authored
Feb 26, 2019
by
15김민규
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
거미가 이제 관성을 가짐
parent
9580cf3a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
6 deletions
+9
-6
Goblin.prefab
Assets/Prefabs/Characters/Enemy/Goblin.prefab
+4
-2
EnemyAirTrack.cs
.../Scripts/Characters/Enemy/Animator State/EnemyAirTrack.cs
+5
-4
No files found.
Assets/Prefabs/Characters/Enemy/Goblin.prefab
View file @
9eea22ef
...
...
@@ -61,7 +61,7 @@ GameObject:
m_Icon
:
{
fileID
:
0
}
m_NavMeshLayer
:
0
m_StaticEditorFlags
:
0
m_IsActive
:
1
m_IsActive
:
0
---
!u!1
&1734061800721222
GameObject
:
m_ObjectHideFlags
:
1
...
...
@@ -157,7 +157,7 @@ Transform:
m_PrefabInternal
:
{
fileID
:
100100000
}
m_GameObject
:
{
fileID
:
1636491341446076
}
m_LocalRotation
:
{
x
:
-0
,
y
:
-0
,
z
:
-0
,
w
:
1
}
m_LocalPosition
:
{
x
:
-6.88
,
y
:
1.405
,
z
:
0
}
m_LocalPosition
:
{
x
:
11.29
,
y
:
-17.94
,
z
:
0
}
m_LocalScale
:
{
x
:
1
,
y
:
1
,
z
:
1
}
m_Children
:
-
{
fileID
:
4015301101001556
}
...
...
@@ -301,6 +301,8 @@ MonoBehaviour:
-
0.5
MovementLock
:
0
attackRange
:
1.2
WallTest
:
CliffTest
:
---
!u!114
&114173716467154830
MonoBehaviour
:
m_ObjectHideFlags
:
1
...
...
Assets/Scripts/Characters/Enemy/Animator State/EnemyAirTrack.cs
View file @
9eea22ef
...
...
@@ -4,12 +4,12 @@ using UnityEngine;
public
class
EnemyAirTrack
:
StateMachineBehaviour
{
float
trackSpeed
;
float
trackRange
;
float
angle
;
GameObject
player
;
Transform
animatorRoot
;
EnemyAir
enemy
;
Vector2
direction
;
private
readonly
float
interpolateCoeff
=
0.05f
;
int
maxFrame
=
10
;
int
frameCount
;
...
...
@@ -17,10 +17,10 @@ public class EnemyAirTrack : StateMachineBehaviour {
override
public
void
OnStateEnter
(
Animator
animator
,
AnimatorStateInfo
stateInfo
,
int
layerIndex
)
{
animatorRoot
=
animator
.
transform
.
parent
;
enemy
=
animator
.
GetComponent
<
EnemyAir
>();
player
=
EnemyManager
.
Instance
.
P
layer
;
player
=
GameManager
.
Instance
.
p
layer
;
trackSpeed
=
enemy
.
trackSpeed
;
frameCount
=
0
;
direction
=
Vector2
.
up
;
SetDirection
();
}
...
...
@@ -57,7 +57,8 @@ public class EnemyAirTrack : StateMachineBehaviour {
private
void
SetDirection
()
{
direction
=
player
.
transform
.
position
-
animatorRoot
.
position
;
Vector2
directionToPlayer
=
(
player
.
transform
.
position
-
animatorRoot
.
position
).
normalized
;
direction
=
(
directionToPlayer
*
interpolateCoeff
+
direction
*
(
1
-
interpolateCoeff
)).
normalized
;
angle
=
Mathf
.
Atan2
(
direction
.
y
,
direction
.
x
)
*
Mathf
.
Rad2Deg
;
enemy
.
ChangeAngleZ_noOption
(
angle
-
90.0f
);
}
...
...
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