Skill Web
  • Skill Web Documentation
  • đŸ•šī¸Quick Start
    • Installation
  • Start Developing
  • 💡General
    • Running the Demos
  • Menu Options
  • UI Customizations
    • uGUI
      • Skill Node
      • Connection Line
      • Web View
      • Hovercard
  • Datasets
  • 🎓Tutorials
    • Runes Demo Walkthrough
  • âœī¸Editors
    • Skill Bank
  • Web Creator
  • Settings
  • Components
    • Skill Web Initializer
    • uGUI
      • Skill Node UGUI
      • Connection Line
        • Curved Connection Line
      • Web View UGUI
        • Web View Selector UGUI
      • Skill Hovercard UGUI
    • Player Web Link
  • 📄Scripting API
    • Initialization
  • Skills
    • Skill
      • Skill Dataset Attributes
    • Skill Node
  • Webs
    • Web Graph
    • Web
  • UI
    • Loading a Web
    • Web View Input Handling
    • Customize Connection Line
    • Customize Hovercard
  • Player Web Link
  • Custom Logic
  • Saving & Loading
  • Events
  • Skill Web Settings
  • Procedural Generation (Beta)
  • đŸ› ī¸Support
    • Getting Help
  • 📚Changelogs
    • Latest Releases
    • Future Plans
    • ⭐Rate Me?
Powered by GitBook
On this page
  • Create Skills from the Skill Bank
  • Create Webs (Skill Trees) from the Web Creator
  • Add Initializer
  • Add and Load UI

Start Developing

Start developing with Skill Web right away!

Below you can find the key information required when working with Skill Web.

Create Skills from the Skill Bank

Skills can be created from the Skill Bank window, which can be accessed from Window > Skill Web > Skill Bank.

Create Webs (Skill Trees) from the Web Creator

Webs can be created from the Web Creator window, which can be accessed from Window > Skill Web > Web Creator.

Add Initializer

Before you can work with Skill Web at runtime, it may need to be initialized. You can initialize Skill Web whenever through code or use the Skill Web Initializer component. The initializer component can be added to your scene by right-clicking in the hierarchy and navigating to Skill Web > Initializer.

Add and Load UI

  1. The UI is required to view webs. You can add the UI by right-clicking in the hierarchy and navigating to Skill Web > Web View UGUI.

  2. The hovercard is required to view skill information. You can add it by right-clicking in the hierarchy and navigating to Skill Web > Hovercard UGUI.

  3. You can load a web by clicking on the Web View UGUI component, writing the name of the web, and enabling Load On Start. You can also load a web through code:

    // Get the web graph by name
    var web = SkillWeb.GetWebGraph("My Web Graph");
    
    // Load it
    WebViewUGUI.Active.Load(web);
PreviousInstallationNextRunning the Demos

Last updated 11 days ago