Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

Need litle help

Discussion in 'Scripting' started by korbljud, Apr 14, 2012.

  1. korbljud

    korbljud

    Joined:
    Oct 22, 2011
    Posts:
    11
    THIS WORK
    var tochka =Vector3(0,0.03,0);

    if (transform.position==tochka){
    audio.Play();}
    else {audio.Stop();}
    BUT I NEED THIS
    if (transform.position>=tochka){

    HOW TO DO IT?
     
    Last edited: Apr 14, 2012
  2. AlteredReality

    AlteredReality

    Joined:
    Aug 15, 2011
    Posts:
    397
    Well, first off, the reason that the existing line works is because it makes sense to check if two vectors are equal. However, it doesn't make complete sense to check it a vector is greater than or equal to another vector. What exactly are you trying to test for here? Are you trying to play a sound when this object is close to "tochka"?

    If so, you need to get the distance between the vectors and check that distance. Hopefully that helps some!