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 MonkeyAssassin8 · Dec 14, 2010 at 09:46 AM · raycastintersect

Raycast intersection

i'm trying to create my own raycast AI and I want the enemy to stop following the player when something gets between them. here is my code so far; it moves by its self and it follows the player when they get into range:

var speed : float = 6; var rotateSpeed : float = 10; private var direction : float; var forwardRay : float = 5; var leftRay : float = 5; var rightRay : float = 5; var player : Transform; var MaxDistance : int = 30; var MinDistance : int = 5; var hidden : boolean = true;

function Update () {

Patrol();

var distance : Vector3 = player.position - transform.position; //if player is in range, enemy will follow if(distance.magnitude < MaxDistance){ Debug.DrawLine(transform.position, player.position); //if something is 4 units away from the enemy, the player becomes hidden if(Physics.Raycast(transform.position, player.position, 4)){ hidden = true; }else{ hidden = false; } }else{ hidden = true; } }

function Patrol(){ //if the player is hidden, the enemy will patrol if(hidden){ //if there is nothing within range, then move forward if(!Physics.Raycast(transform.position, transform.forward, forwardRay)){ transform.Translate(Vector3.forward speed Time.smoothDeltaTime); }else{ //if there is something to the left, then direction = 1 if(Physics.Raycast(transform.position, -transform.right, leftRay)){ direction = 1; //if there is something to the right, the direction = -1 }else if(Physics.Raycast(transform.position, transform.right, rightRay)){ direction = -1; //if there is nothing to the left or right, then direction = 1 }else{ direction = 1; } //rotate 90 degrees in the direction (1 = right, -1 = left) transform.Rotate(Vector3.up, 90 rotateSpeed direction); } //if the player is not hidden... }else if(!hidden){ var distance : Vector3 = player.position - transform.position;

     //move towards player
     velocity = distance.normalized * speed;
     rigidbody.velocity = velocity;
 }

}

Comment
Add comment · Show 2
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 Jesse Anders · Dec 14, 2010 at 10:45 AM 0
Share

What was your question exactly?

avatar image MonkeyAssassin8 · Dec 14, 2010 at 12:50 PM 0
Share

it's ok, i figured it out, i used a LineCast ins$$anonymous$$d of a Raycast to see if anything got in the way.

1 Reply

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

Answer by PaulUsul · Dec 14, 2010 at 12:58 PM

you need to ask a question, but does this answer what you meant to ask?

When the player is not hidden, raycast towards the player from the enemy. only if the player is hit move toward him. The trick is to use RaycastHit to see what the raycast hit.

else if(!hidden) { // distance is also the direction of our player from us in this case. var distance: Vector3 = player.position - transform.position;

 var hit : RaycastHit;

 if(Physics.Raycast(transform.position, playerDir, hit))
 {
     // look for what makes you player unique, ie: tag, layer, name
     if(hit.transform.tag == "someRandomPlayerQualifier")
     {
         //move towards player
         velocity = distance.normalized * speed;
         rigidbody.velocity = velocity;
     }
 }

}

Hope's this help

Links:Physics.Raycast RaycastHit

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 MonkeyAssassin8 · Dec 15, 2010 at 05:17 AM 0
Share

I'd already figured it out, but thanks a lot anyway.

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

No one has followed this question yet.

Related Questions

Raycasting is not working! 2 Answers

[SOLVED] Raycast for custom button JS 1 Answer

How to get information from raycast? 2 Answers

Does anyone know how to make an AI that dodges obstacles when chasing the player? 2 Answers

How to get a Vector3 from a RaycastHit variable? 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