Clan Chat Member Counter
Last updated

Support us as a GitHub Sponsor and get instant access to all our assets, exclusive tools and assets, escalated support and issue tracking and our gratitude. These articles are made possible by our GitHub Sponsors ... become a sponsor today!
Maintains a display of the number of users in a clan chat.
namespace HeathenEngineering.SteamworksIntegration.UIpublic class ClanChatMemberCounter : MonoBehaviourCan only be set in the Unity Editor
The ID of the clan to monitor
[SerializeField]
private ulong clanId;Can only be set in the Unity Editor
The prefix to assign to the text label before the number of users
Can only be set in the Unity Editor
The suffix to assign to the text label after the number of users
Exposes the ClanData that this object is linked to and can be assigned to update which clan is monitored
Apply the clan, this is done for you when you assign the Clan field
Refresh the value, this updates the text label, this is in general called for you
Last updated
[SerializeField]
internal string prefix;[SerializeField]
internal string suffix;public ClanData Clan { get; set; }public void Apply(ClanData clan)public void Refresh()