Added NPCs to game, fixed explore and collect quest, added quest remove, fixed quest update, v1.4.0

This commit is contained in:
Nicola Sovic
2022-07-14 23:48:37 +02:00
parent 3f8d9c0551
commit 59e34ef728
10 changed files with 199 additions and 62 deletions

View File

@@ -48,6 +48,11 @@ namespace Assets.Scripts
items[currentBag] = null;
}
public void removeItem(int bag)
{
items[bag] = null;
}
public void showTooltip()
{
Item item = getItemForTooltip();