Skill.GetSkillName C# (CSharp) Méthode

GetSkillName() public méthode

public GetSkillName ( ) : string
Résultat string
    public string GetSkillName()
    {
        return skillName;
    }

Usage Example

    public void DisplayToolTip()
    {
        skillName.text        = associatedSkill.GetSkillName().ToString();
        tierNumber.text       = "Tier " + associatedSkill.GetCurrentTier().ToString();
        skillDescription.text = associatedSkill.GetSkillDescription();
        tierValue.text        = associatedSkill.GetTierDescriptiveString();

        toolTipGroup.gameObject.SetActive(true);
    }
All Usage Examples Of Skill::GetSkillName