Skip to main content

GDTKItem.rarity

public Int32 rarity { get; }

Description#

Get the rarity value of this item

Usage#

Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(GDTKItem target)    {        System.Int32 result = target.rarity;    }   }