Hello i hav some questions.
1.How I can make an simple inventory system, to collect items, and use them later(In my game player need to take gas can and use it to refuel Car)
2. How to make cash display like that in Crash bandicoot but with another font and Money Icon?
3. How to make my character ask in spech
A lot of questions for one thread.
- If you only need a limited amount of items, just create a class called Inventory that keeps track of them, something like:
public class Inventory
{
static public int gasCans = 0;
static public int bullets = 40;
}
-
Use the new Unity UI. Learn more here.
-
You can use the Unity UI for that too.