InventoryThemeUI.activeWindows
public IReadOnlyList<ThemeWindowUI> activeWindows { get; }Description#
Returns a list of all open/active windows
Usage#
Example
using NullSave.GDTK.Inventoryusing UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod(InventoryThemeUI target) { System.Collections.Generic.IReadOnlyList<ThemeWindowUI> result = target.activeWindows; } }