Skip to main content

GDTKItem.weight

public float weight { get; }

Description#

Get the weight of this item

Usage#

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