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 shock2provide · Aug 01, 2014 at 10:36 AM · gameobjectgetcomponent

Problem accessing script

I have problems accessing function of another script... Where have I made a mistake?

     if(Input.GetMouseButtonDown(0) && isEquiped)    {
         if(name == "Hackmesser")    {
             print("Hack mit Messer");
             
             var target:RaycastHit;
             
             Debug.DrawRay(Camera.main.transform.position, Camera.main.transform.forward * attackRange,Color.red);
             if(Physics.Raycast (Camera.main.transform.position, Camera.main.transform.forward, target, attackRange)) {
                 if(target.collider.tag == "wache")    {
                     print("Hit Wächter");
                     var guard = target.transform.gameObject.GetComponent(Guard);
                     //var guard = FindObjectOfType(Guard);
                     
                     guard.BeDamaged(DamageAmount);
                 }
             }
         }
     }
 


And here is the Guard.js:

 #pragma strict
 
 var health:int = 100;
 
 function Start () {
 
 }
 
 function Update () {
     if(health<0)    {
         Destroy(gameObject);
     }
 }
 
 function BeDamaged(damage:int)    {
     health = health - damage;
 }


Regards Marc

EDIT: This is the error I get: NullReferenceException: Object reference not set to an instance of an object Item.Update () (at Assets/Scripts/Objects/Item.js:35)

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

2 Replies

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

Answer by Ekta-Mehta-D · Aug 01, 2014 at 11:12 AM

u can try something like :

 Private var guardObj : Guard;

for getting component :

 guardObj = target.transform.gameObject.GetComponent("Guard");

for accessing function :

 guardObj.BeDamaged(DamageAmount);
 


Comment
Add comment · Show 2 · 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 shock2provide · Aug 01, 2014 at 12:19 PM 0
Share

@ekta-mehta-d I get this error: NullReferenceException: Object reference not set to an instance of an object Item.Update () (at Assets/Scripts/Objects/Item.js:35)

This is the same error I get with my code.

avatar image shock2provide · Aug 01, 2014 at 07:14 PM 0
Share

Got my version working! But your version also works.

avatar image
0

Answer by Danisuper · Aug 01, 2014 at 11:40 AM

Try GameObject.Find("Guard").GetComponent().guard's_health_variable-=damage

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 shock2provide · Aug 01, 2014 at 12:23 PM 0
Share

@Danisuper Assets/Scripts/Objects/Item.js(37,78): BCE0164: Cannot infer generic arguments for method 'UnityEngine.GameObject.GetComponent.()'. Provide stronger type information through arguments, or explicitly state the generic arguments.

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

GetComponent not Returning 1 Answer

C# GetComponent Issue 2 Answers

Accessing script variables of instantiaded prefab 1 Answer

gameObject.GetComponent("Script").enabled = true not working 5 Answers

script GetComponent, nullReference error 1 Answer


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