↧
How do I get characters to interact with each other?
I am trying to make a classic top-down rpg. I want to make it so that when the player character faces an NPC and presses A, a dialog box pops up. How do I get the player character to interact with a...
View ArticleUnity does not update fast enough
I have the following code in C#: transform.position = newMarblePos; Collider[] marbles = Physics.OverlapSphere(newMarblePos, 0.1f); Debug.Log (marbles.Length ) ; This prints out 0. This does not make...
View Article