Page cover image

Clan Chat Member List

Like what your seeing?

Introduction

Displays a list of the members that are in a specific clan chat.

namespace HeathenEngineering.SteamworksIntegration.UI
public class ClanChatMemberList : MonoBehaviour

Fields and Attributes

Clan Id

Only assignable in the Unity Editor, this is the ID of the clan you would like to display members for

[SerializeField]
private ulong clanId;

Content

The root where the UI elements representing each user will be spawned

[SerializeField]
private Transform content;

Template

The template that will be spawned for each member found in the list, this should have a component on it that implements the IUserProfile interface

[SerializeField]
private GameObject template;

Clan

The Clan Data object for the linked clan

public ClanData Clan { get; set; )

Methods

Apply

Set the clan this object is tracking

public void Apply(ClanData clan)

Refresh

Refresh the display of records

public void Refresh()

Last updated