โญIcon

The center piece of a Rank

Preview

10 icons can animate from any state to anything else. You can also create your own icon.

Most of them use 1 material, but the last one uses two materials.

Inspector

In the Customization Tab, you can edit the icon and apply materials with an animated preview in play mode.

Icon Inspector in Customization Tab

In the ranks tab, for each rank, you can quickly modify the icon and material, too. You can also adjust animation delays and add sound effects for that rank here, too.

Quick Icon Inspector in Ranks List

Script Reference

You can use the SetIcon method to modify the icon via code or buttons.

ranksAnimationController.SetIcon(i);
Method
Description
ApplyRank(int index);

Retrieves the rank from the ranks list at the specified index and applies it.

If an invalid index is passed, it logs a warning message and returns. Doesn't print an error.

ApplyRank(string rankName);

Applies a rank from the ranks list by its exact name. If the rank is not found or the name is invalid, a warning is logged.

ApplyRank(Rank targetRank);

Applies the rank passed as parameter.

Last updated