Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
Tomb_of_Khaudghur
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
jc4283
Tomb_of_Khaudghur
Commits
6ca49956
Commit
6ca49956
authored
6 years ago
by
Jacky Chen
Browse files
Options
Downloads
Patches
Plain Diff
Added Player Attack - Code
parent
7697d2e9
Branches
master
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
The Tomb of Khaud'ghur/Angel_Attack.cs
+29
-0
29 additions, 0 deletions
The Tomb of Khaud'ghur/Angel_Attack.cs
with
29 additions
and
0 deletions
The Tomb of Khaud'ghur/Angel_Attack.cs
0 → 100644
+
29
−
0
View file @
6ca49956
using
System.Collections
;
using
System.Collections.Generic
;
using
UnityEngine
;
public
class
Angel_Attack
:
MonoBehaviour
{
// Start is called before the first frame update
void
Start
()
{
}
// Update is called once per frame
void
Update
()
{
if
(
Input
.
GetKeyDown
(
"1"
))
{
GetComponent
<
Animator
>
().
SetTrigger
(
"Smack"
);
GetComponent
<
Transform
>().
position
=
new
Vector2
(
2.85f
,
0.77f
);
}
}
void
returnBack
()
{
GetComponent
<
Transform
>().
position
=
new
Vector2
(-
5.74f
,
0.74f
);
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment