InventoryUI.SetInventoryColor
Declaration#
public void SetInventoryColor(Color color)Parameters#
| Name | Description |
|---|---|
| color | Color 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#
| Name | Description |
|---|---|
| color | Color 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"); }}