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