Initialization

Initializing Skill Tree.

Use the Esper.SkillTree namespace when scripting with Skill Tree.

Skill Tree's manager is simply called SkillTree. This is the main class you'll be working with when using Skill Tree.

Initialization

To do anything will Skill Tree, it must be initialized first. Initializing Skill Tree will simply load all enabled skill graphs. Here's how it can be done:

SkillTree.Initialize()

Clearing Data

When Skill Tree is not required to be used anymore, you can clear its data. Skill Tree must be reinitialized if you'd like it to be used again.

SkillTree.ClearData();

Last updated