StatSourceUI.SetStatSourceColor
Declaration#
public void SetStatSourceColor(Color color)Parameters#
| Name | Description |
|---|---|
| color | Color to set |
Description#
Set the Stat Source's color
Usage#
Example
using NullSave.GDTK;using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{ public void ExampleMethod(StatSourceUI target) { target.SetStatSourceColor(Color.blue); }}Declaration#
public void SetStatSourceColor(string color)Parameters#
| Name | Description |
|---|---|
| color | Color to set |
Description#
Set the Stat Source's color
Usage#
Example
using NullSave.GDTK;using NullSave.GDTK.Stats;using UnityEngine;
public class Example : MonoBehaviour{ public void ExampleMethod(StatSourceUI target) { target.SetStatSourceColor("#ffff00"); }}