22 lines
No EOL
462 B
C#
22 lines
No EOL
462 B
C#
using TMPro;
|
|
using UnityEngine;
|
|
|
|
namespace gay.lilyy.AviLabels
|
|
{
|
|
[AddComponentMenu("LillithRosePup/Avatar Label/Config")]
|
|
public class LabelConfig : MonoBehaviour, VRC.SDKBase.IEditorOnly
|
|
{
|
|
public string overrideName;
|
|
public Color color;
|
|
public TMP_FontAsset font;
|
|
|
|
internal static LabelConfig GetDefault()
|
|
{
|
|
return new LabelConfig {
|
|
overrideName = "",
|
|
color = Color.white,
|
|
font = null
|
|
};
|
|
}
|
|
}
|
|
} |