ItemContainer.maximumWeight
public float maximumWeight { get; }Description#
Gets the maximum weight for this container
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(ItemContainer target) { float result = target.maximumWeight; } }