GDTKItem.countPerStack
public Int32 countPerStack { get; }Description#
Gets the number of items allowed in a single stack
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(GDTKItem target) { System.Int32 result = target.countPerStack; } }