I believe what you are looking for are called operators. more than likely you are interested in the "Or" and the "And" operators. If you would like to make sure conditions 1 and condition 2 are true you would use &&
if you wanted to check if condition 1 or condition 2 is true you would use ||
You can look at some basic examples [here][1]
Or using you code as an example:
if (collision.gameObject.tag == Tagas && Hitpoints < 10) //can i use MULTIPLE? Tags?
{
var contact : ContactPoint = collision.contacts[0];
var rot : Quaternion = Quaternion.FromToRotation(Vector3.up, contact.normal);
var pos : Vector3 = contact.point;
Instantiate(Sprogimas, pos, rot);
Destroy (gameObject);
}
Note: the character | is shift backslash
[1]: http://answers.unity3d.com/questions/53164/how-do-i-use-and-and-or-in-unityscript.html
↧