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
5ac2d7cd
Commit
5ac2d7cd
authored
Feb 26, 2019
by
18김상언
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
활 조준할때 화살 날아갈 위치 지정하게 바뀌었음.
근데 약간 화살 생성되는 시점이 애니메이션이랑 살짝 안맞는거 같음. 수치는 나중에 다 합치고 조절합시다. ㅇㅈ? ㅇ ㅇㅈ~
parent
517ee9bc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
5 deletions
+13
-5
ArcherTrack.cs
...ts/Scripts/Characters/Enemy/Animator State/ArcherTrack.cs
+4
-1
EnemyArrow.cs
Assets/Scripts/Item/EnemyArrow.cs
+9
-4
No files found.
Assets/Scripts/Characters/Enemy/Animator State/ArcherTrack.cs
View file @
5ac2d7cd
...
...
@@ -79,8 +79,11 @@ public class ArcherTrack : StateMachineBehaviour
IEnumerator
WaitforShot
()
{
yield
return
new
WaitForSeconds
(
0.
7
5f
);
yield
return
new
WaitForSeconds
(
0.
2
5f
);
Vector2
direction
=
enemy
.
transform
.
GetChild
(
0
).
position
-
player
.
transform
.
position
;
yield
return
new
WaitForSeconds
(
0.5f
);
float
angle
=
Mathf
.
Atan2
(
direction
.
y
,
direction
.
x
)
*
Mathf
.
Rad2Deg
;
Quaternion
rotation
=
Quaternion
.
AngleAxis
(
angle
,
Vector3
.
forward
);
Instantiate
(
enemy_arrow
,
enemy
.
transform
.
GetChild
(
0
).
position
,
rotation
);
...
...
Assets/Scripts/Item/EnemyArrow.cs
View file @
5ac2d7cd
...
...
@@ -13,15 +13,19 @@ public class EnemyArrow : MonoBehaviour
public
LayerMask
stopLayer
;
Rigidbody2D
rb
;
Player
target
;
Vector
2
moveDirection
;
Vector2
changeAngle
;
Vector
3
moveDirection
;
void
Start
()
{
rb
=
GetComponent
<
Rigidbody2D
>();
target
=
GameObject
.
FindObjectOfType
<
Player
>();
moveDirection
=
(
target
.
transform
.
position
-
transform
.
position
).
normalized
*
moveSpeed
;
rb
.
velocity
=
new
Vector2
(
moveDirection
.
x
,
moveDirection
.
y
);
moveDirection
=
transform
.
rotation
.
eulerAngles
;
rb
.
velocity
=
-
moveSpeed
*
new
Vector2
(
Mathf
.
Cos
(
Mathf
.
Deg2Rad
*
moveDirection
.
z
),
Mathf
.
Sin
(
Mathf
.
Deg2Rad
*
moveDirection
.
z
));
}
/* void FixedUpdate()
...
...
@@ -59,5 +63,6 @@ public class EnemyArrow : MonoBehaviour
yield
return
new
WaitForSeconds
(
time
);
Destroy
(
gameObject
);
}
}
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