Skip to main content

ItemContainer.totalItemWeight

public float totalItemWeight { get; }

Description#

Gets the total weight of items in this container

Usage#

Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
    public void ExampleMethod(ItemContainer target)    {        float result = target.totalItemWeight;    }   }