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 TheChosenWong · Mar 01, 2017 at 03:50 AM · raycastlinecast

My Raycast is returning True all the Time

I set up a scene where a Bear is trying to seek a Raccoon and then chase after it. I created a cone for the bear's 'eyes' and whenever it finds any object with the tag "Prey" it will chase after it.

For some reason when I start the scene the Bear automatically detects the Raccoon and runs after it even if the ray-cast is clearly not colliding. What am I doing wrong?

 using UnityEngine;
 using System.Collections;
 
 public class Animal : MonoBehaviour {
 
     public bool alive = true;
 
     void OnTriggerEnter(Collider other)
     {
         if(other.gameObject.name == "Eyes")
         {
             other.transform.parent.GetComponent<PredatorAI>().checkSight();
         }
     }
 }

In a separate PredatorAI class:

 public void checkSight()
 {
     if(alive)
     {
         RaycastHit rayHit;
         if(Physics.Linecast(eyes.position, prey.transform.position, out rayHit))
         {
             Debug.Log ("hit "+rayHit.collider.gameObject.tag);
             if(rayHit.collider.gameObject.tag == "Prey")
             {
                 if(state != "kill")
                 {
                     state = "chase";
                     Debug.Log ("PredatorAI: " + state);
                     nav.speed = 3.5f;
                     anim.speed = 3.5f;
                 }
             }
         }
     }
 }


Imgur Link to what is happening with the console messages:

Only the raccoon has the tag has "Prey" and from my debug message it looks like the raycast instantly hits it and runs the chase state where it moves the Bear towards the Raccoon. I've been searching for hours to no luck.

I also checked by using Debug.Log ("hit "+rayHit.collider.gameObject.name); and it returns the Raccoon_03. I also made the eyes object ignore Raycasting.

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
2

Answer by abdullahsyyd · Mar 01, 2017 at 06:23 AM

The problem is that you should use Physics.Raycast rather than Physics.Linecast, In case of line cast you are drawing a line from eyes.position to prey.transform.position so this line is always hitting the prey object. The purpose of line cast is to detect any object which is coming between these two objects and hitting line. I guess you want to detect prey with a fixed length of raycast, I suggest you to use Physics.Raycast

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

117 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

Related Questions

Add only one Raycast/Linecast hit to a list 0 Answers

Raycast not consistently detecting collision. 1 Answer

Using Linecast with collider bounds 0 Answers

Find all locations where a ray/ raycast insects an object 0 Answers

Raycast2D 360 Rotation 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