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 rinix · Jun 12, 2011 at 08:02 PM · scenechangewaypointscene-change

Waypoint help.

This is the waypoint code i use: // SeekSteer.cs // Written by Matthew Hughes // 19 April 2009 // Uploaded to Unify Community Wiki on 19 April 2009 // URL: http://www.unifycommunity.com/wiki/index.php?title=SeekSteer using UnityEngine; using System.Collections; public class SeekSteer : MonoBehaviour { public Transform[] waypoints; public float waypointRadius = 1.5f; public float damping = 0.1f; public bool loop = false; public float speed = 2.0f; public bool faceHeading = true; private Vector3 currentHeading,targetHeading; private int targetwaypoint; private Transform xform; private bool useRigidbody; private Rigidbody rigidmember; // Use this for initialization protected void Start () { xform = transform; currentHeading = xform.forward; if(waypoints.Length<=0) { Debug.Log("No waypoints on "+name); enabled = false; } targetwaypoint = 0; if(rigidbody!=null) { useRigidbody = true; rigidmember = rigidbody; } else { useRigidbody = false; } } // calculates a new heading protected void FixedUpdate () { targetHeading = waypoints[targetwaypoint].position - xform.position; currentHeading = Vector3.Lerp(currentHeading,targetHeading,damping*Time.deltaTime); } // moves us along current heading protected void Update() { if(useRigidbody) rigidmember.velocity = currentHeading * speed; else xform.position +=currentHeading * Time.deltaTime * speed; if(faceHeading) xform.LookAt(xform.position+currentHeading); if(Vector3.Distance(xform.position,waypoints[targetwaypoint].position)<=waypointRadius) { targetwaypoint++; if(targetwaypoint>=waypoints.Length) { targetwaypoint = 0; if(!loop) enabled = false; } } } // draws red line from waypoint to waypoint public void OnDrawGizmos() { Gizmos.color = Color.red; if(waypoints==null) return; for(int i=0;i< waypoints.Length;i++) { Vector3 pos = waypoints[i].position; if(i>0) { Vector3 prev = waypoints[i-1].position; Gizmos.DrawLine(prev,pos); } } } } Now i have a helicopter with the player in it. The helicopter has a waypoint: the ground. It will crash. It works and all, but how would i make it so that when it hits the ground it goes to a different scene?

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 rinix · Jun 12, 2011 at 08:05 PM 0
Share

The code kinda messed up.

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by Oliver Eberlei · Jun 12, 2011 at 10:34 PM

If your helicopter and the ground have colliders attached to them, you can use

http://unity3d.com/support/documentation/ScriptReference/MonoBehaviour.OnCollisionEnter.html

This function will be called whenever a collision appears and you can then check if the collision is in fact with the ground (by checking the name or tag of the other collider).

Once you have the collision, you can use this function to load another scene

http://unity3d.com/support/documentation/ScriptReference/Application.LoadLevel.html

Sth like this

 void OnCollisionEnter(Collision collision) 
 {
     if( collision.gameObject.name == "Ground" )
     {
         Application.LoadLevel( "youAreDeadLevel" );
     }
 }
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

2 People are following this question.

avatar image avatar image

Related Questions

Updating main menu using PlayerPrefs when collecting an object in different scene (level) 1 Answer

Scene change for a fixed amount of players 0 Answers

Multiple Scenes: Are previous scenes still active after you call a new scene? 1 Answer

Unity seems to be taking a long time destroying a scene? 0 Answers

Scene Change Event 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