Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by OwenBay · Jun 17, 2012 at 07:59 PM · tutorialmeleeburgzergarcadeno errors

BurgZergArcade tutorial 5 problem

I have been following the BurgZergArcade tutorials for making a Hack n Slash game. I'm on tutorial number 5, "Unity3d tutorial - Melee 1/3. I have copied all the code he wrote exactly, and there are no errors, but when I click the "F" key nothing happens. After some research I've noticed its a common problem, but i found no answers. Can someone please help me?

PlayerAttack.cs Code:

 using UnityEngine;
 using System.Collections;
 
 public class PlayerAttack : MonoBehaviour {
     public GameObject target;
 
     // Use this for initialization
     void Start () {
     
     }
     
     // Update is called once per frame
     void Update () {
         if(Input.GetKeyUp(KeyCode.F)) {
             Attack();
         }
     
     }
     
     private void Attack() {
         float distance = Vector3.Distance(target.transform.position, transform.position);
         
         Debug.Log (distance);
         
         if(distance < 2.5f) {
             EnemyHealth eh = (EnemyHealth)target.GetComponent("EnemyHealth");
             eh.AddjustCurrentHealth(-10);
         }
     }
 }
Comment
Add comment · Show 11
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image whydoidoit · Jun 17, 2012 at 08:00 PM 0
Share

Code from where you check for the key press would be good. Please edit your question when you post the code and indent it before you paste by 4 spaces or 1 tab

avatar image whydoidoit · Jun 17, 2012 at 08:54 PM 0
Share

So you mean the enemy health doesn't reduce? Because you aren't doing anything else like playing an animation or anything so not much will happen...

avatar image OwenBay · Jun 17, 2012 at 09:01 PM 0
Share

Yeah, his health doesn't reduce upon pressing F

avatar image whydoidoit · Jun 17, 2012 at 09:04 PM 0
Share

Right so you have set target to somethiing? If you open the console it should be printing the distance between that target and your player - can you see that when you press the F key? Is it always more than 2.5 - because maybe you have your scale wrong or something.

Can you see any errors in that console?

avatar image OwenBay · Jun 17, 2012 at 09:06 PM 0
Share

Well I set it to be when u are less than 2.5 away from him, take -10 from his health, which I have a display for at the top of the screen.

Show more comments

1 Reply

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by OwenBay · Jun 17, 2012 at 10:00 PM

Never mind, sorry for the trouble, but after looking back through my scripts I found my blunder. I had written,

if(curHealth < maxHealth) curHealth = maxHealth;

Which of course it would be less, if I'm trying to subtract health! thanks for the help anyway.

Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Unity BurgZergArcade Tutorial 20 errors. 1 Answer

How to Turn 3D Model Into Weapon? 1 Answer

BurgZergArcade Unity tutorial 19-20 errors. 0 Answers

Melee combat help! 1 Answer

BurgZergArcade tutorial 20 errors? 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges