Page cover

Set User Name

Like what your seeing?

Introduction

A simple component meant to be attached to a UnityEngine.UI.RawImage

This can update the text with the indicated user's name and can optionally pull the local user's data on start up.

This will update as the linked user changes there name ... that is if the tracked user edits there name this will update accordingly.

Definition

This componenet has 2 variations one for each of Unity's text lables ... additonal variants will be added as Unity contentinues to add more UI frameworks.

[RequireComponenet(typeof(TMPro.TextMeshProUGUI)]
public class TMProSetUserName : MonoBehaviour;
[RequireComponent(typeof(UnityEngine.UI.Text))]
public class UGUISetUserName : MonoBehaviour

Fields and Attributes

useLocalUser

public bool useLocalUser

This causes the componenet to grab the local user's ID on startup.

ShowNickname

public bool ShowNickname { get; set; }

Should the tool show the user's nickname if any or should it always show the Steam User Name.

UserData

public UserData UserData { get; set; }

This returns the UserData that this componenet is currently tracking. Setting this will cause this componenet to track the user you set to it and is the same as calling LoadAvatar;

Methods

Set Name

public void SetName(UserData user);
public void SetName(CSteamID user);
public void SetName(ulong user);

Set the indicated user's name.

Last updated