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 samz · Jun 09, 2013 at 08:24 AM · raycastplayerenemychase

Enemy raycast chase player

I need help in trying to make an enemy chase the player by using a raycast to see him. The problem is when the player is above the platform the enemy is on. I still want the enemy to be able to see the player

alt text

i took the ignoreCollision bit out becoz the player seems to fall thru the platform??

Here my code:

 function FixedUpdate()
 {
     var hit : RaycastHit;
     var dir = transform.TransformDirection(Vector3.right);
     
     if (Physics.Raycast (transform.position, dir, hit, 600) ) 
     {    
         Debug.DrawLine(transform.position, target.position, Color.red);
         if(hit.collider.tag == "Player")
         {
             print("chase");
             Chase_Player.observed = true;    
         }
         //else if(hit.collider.tag=="Platform")
         //{
             //print("platfrom");
             //Physics.IgnoreCollision(hit.collider, target.collider);
         //}
         else
         {
             print("stop");
             Chase_Player.observed = false;    
         }
     }
     else
     {
         Chase_Player.observed = false;    
     }
 }


screen shot 2013-06-09 at 09.18.09.png (70.2 kB)
Comment
Add comment · Show 1
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 robertbu · Jun 09, 2013 at 04:17 PM 0
Share

The common (and perhaps the best) answer is to place the platforms on a different layer than the rest of your game objects and then use the layer$$anonymous$$ask parameter in the Raycast() so the platforms will not be seen.

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

14 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

Related Questions

How can I check the line of sight to see if the player is visible to the enemy? 1 Answer

Getting the player to retreat a certain distance from the player 1 Answer

can foe hear us? 1 Answer

How to stop the enemy from jumping when chasing the player ? 1 Answer

How to make "enemy" have a frustum(cone) view and not a circle radius 2 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