CraftingQueueUIGridDisplay.DrawItems
Declaration#
public virtual void DrawItems(List<T> items, Object[] args)Parameters#
| Name | Description |
|---|---|
| items | Items to display |
| args | Array of parameters |
Description#
Draw all items to display
Usage#
using NullSave.GDTK.Inventory;using System.Collections.Generic;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(CraftingQueueUIGridDisplay target, List<GDTKCraftingQueueItem> other) { target.DrawItems(other, new object[] { false }); }
}