InWorldContainer.totalItemWeight
public float totalItemWeight { get; }Description#
Gets the total weight of all items in the container
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(InWorldContainer target) { float result = target.totalItemWeight; } }