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 /
avatar image
0
Question by legowill6 · Aug 12, 2017 at 03:33 PM · javascripterrorraycast

Javascript Object reference not set to instance of an object - Raycasting

Hi all,

I am a begginer at Unity so sorry if this seems like a repeat of other questions or if it's unclear but I have been staring at my code for about an hour now and looking all over the place for answers, this will be my last resort.

So...

I have created the start of an FPS as a test following some basic tutorials online. This is my Javascript raycast script I have attached to an empty and grouped to the gun in the hierarchy.

 var DamageAmount : int = 5;
 var TargetDistance : float;
 var AllowedRange : float = 15;
 
 function Update () {
     if(Input.GetButtonDown("Fire1")) {
 
         var Shot : RaycastHit;
             if (Physics.Raycast (transform.position, transform.TransformDirection(Vector3.forward), Shot)) {
                 TargetDistance = Shot.distance;
                     if (TargetDistance < AllowedRange) {
                         Shot.transform.SendMessage("DeductPoints", DamageAmount, SendMessageOptions.DontRequireReciever);
                     }
                 }
             }
         }

alt text (The empty is named "GunMechanics")

This is the enemy's script:

 var EnemyHealth : int = 10;
 
 function DeductPoints (DamageAmount : int) {
     EnemyHealth -= DamageAmount;
 }
 
 function Update () {
     if (EnemyHealth <= 0) {
         Destroy(gameObject);
     }
 }

and this is the the gun firing script:

 function Update () {
     if(Input.GetButtonDown("Fire1")) {
         var gunsound : AudioSource = GetComponent.<AudioSource>();
         gunsound.Play();
         GetComponent.<Animation>().Play("GunShoot");
     }
 }


These are all the scripts in the game so far.

Now this all works fine except the enemy's health doesn't go down at all. The empty is rotated correctly and is positioned at the barrel of the gun.

I know the raycast collides with objects because the target distance changes everytime I fire.

I'm unsure if I have two problems here or if they are connected but as well as the enemy not taking any damage, the console throws this error: alt text

This has completely dumbstruck me.

Again I would be very appreciative to anyone that helps me, it's a constant learning process (starting last week)

Apologies once more.

help2.png (10.7 kB)
help4.png (30.3 kB)
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

0 Replies

· Add your reply
  • Sort: 

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

153 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 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 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 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

Raycasting in script suddenly stopped working 1 Answer

im having trouble with raycast shooting script 0 Answers

I need help with Javascript 1 Answer

Problem with hitInfo in Raycast. 2 Answers

Placing buildings 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