Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 /
  • Help Room /
avatar image
0
Question by micesz229 · Feb 15, 2016 at 04:41 PM · methodextensioncontainsdefinitions

Error CS1061...does not contain a definition for...and no extension method

Unity whene i press "play" error

 Assets/Scripts/EnemyAttack.cs(43,20): error CS1061: Type `PlayerHealth' does not contain a definition for `AddjustCurrentHealth' and no extension method `AddjustCurrentHealth' of type `PlayerHealth' could be found (are you missing a using directive or an assembly reference?)


Line error whene i click 2x on error

 eh.AddjustCurrentHealth(-10);

EnemyAttack.cs

public class EnemyAttack : MonoBehaviour { MonoBehaviour is white

public GameObject target; GameObject is white.. should be green

 using UnityEngine;
 using System.Collections;
 
 public class EnemyAttack : MonoBehaviour {
     public GameObject target;
     public float attackTimer;
     public float coolDown;
 
     // Use this for initialization
     void Start () {
         attackTimer = 0;
         coolDown = 2.0f;
     }
 
     // Update is called once per frame
     void Update() {
         if (attackTimer > 0)
             attackTimer -= Time.deltaTime;
 
         if (attackTimer < 0)
             attackTimer = 0;
 
         if (attackTimer == 0)  {
             Attack();
             attackTimer = coolDown;
             }
 
     }
     private void Attack() {
         float distance = Vector3.Distance(target.transform.position, transform.position);
 
         Vector3 dir = (target.transform.position - transform.position).normalized;
 
         float direction = Vector3.Dot(dir, transform.forward);
 
         Debug.Log(direction);
 
         if (distance < 2.5f)
         {
             if (direction > 0)
             {
                 PlayerHealth eh = (PlayerHealth)target.GetComponent("PlayerHealth");
                 eh.AddjustCurrentHealth(-10);
             }
         }
     }
 }
 

Comment
Add comment
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

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by EmHuynh · Feb 16, 2016 at 02:11 AM

Hello, @micesz229! The problem is that your PlayerHealth script does not contain a function named, AddjustCurrentHealth. It's probably because you misspelled it the name (there are two Ds) of the function you wanted to call.

Comment
Add comment · Show 1 · 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
avatar image Mazthalion · Oct 19, 2016 at 12:11 PM 0
Share

how about GetButton coz I have same error just about GetButton its go red and where can I find Ds? any help?

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

43 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

I have an error and don't know what the cause is, help? 1 Answer

How do I call a method from another script? 1 Answer

Does BroadcastMessage Work on the same Level? 0 Answers

How to use only 1 method for 2 objects which different class type 0 Answers

Unity UI Extensions : Setting the horizontal snap to joystick sticks (How to?) 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