Skip to main content

InventoryUI.SetInventoryColor

Declaration#

public void SetInventoryColor(Color color)

Parameters#

NameDescription
colorColor to set

Description#

Set the actor's color

Usage#

Example
using NullSave.GDTK;using NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{    public void ExampleMethod(InventoryUI target)    {        target.SetInventoryColor(Color.blue);    }}

Declaration#

public void SetInventoryColor(string color)

Parameters#

NameDescription
colorColor to set

Description#

Set the Inventory's color

Usage#

Example
using NullSave.GDTK;using NullSave.GDTK.Inventory;using UnityEngine;
public class Example : MonoBehaviour{    public void ExampleMethod(InventoryUI target)    {        target.SetInventoryColor("#ffff00");    }}