Skill.GetSkillName C# (CSharp) Method

GetSkillName() public method

public GetSkillName ( ) : string
return string
    public string GetSkillName()
    {
        return skillName;
    }

Usage Example

示例#1
0
    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