Answers for "how to make text pop up if you walk in a area in unity 2d"

C#
1

how do i remove the brackets around a list in python

l = ['a', 2, 'c']
print str(l)[1:-1]
'a', 2, 'c'
Posted by: Guest on March-14-2020
0

in unity i want to destroy a gameobject when it hits the edge of the screen

// this does take into account EVERY camera, including the editor view one
// but that shouldn't be a big deal once the game is built

void OnBecameInvisible() {
 	Destroy(gameObject);
}
Posted by: Guest on April-09-2020

Code answers related to "how to make text pop up if you walk in a area in unity 2d"

C# Answers by Framework

Browse Popular Code Answers by Language