added: label over hover

This commit is contained in:
Chris
2025-09-08 17:17:28 -04:00
parent 6c1cb44d18
commit f4cb569768
10 changed files with 7293 additions and 1 deletions

View File

@@ -4,7 +4,7 @@ using UnityEngine;
namespace Reset.Items{
public abstract class Item : ScriptableObject{
public string itemName{ get; set; }
public string itemName;
public float permanency;
public float essenceRequiredForPermanency;
@@ -20,5 +20,7 @@ namespace Reset.Items{
newItemDrop.item = this;
return newItemDrop;
}
public abstract void DrawItemInfo(Vector3 position);
}
}