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