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