Class HelpPanelHandler
A Window that display the FAQ from the given tutorial and current page
Inherited Members
Namespace: Unity.Tutorials.Core.Editor
Assembly: Unity.Tutorials.Core.Editor.dll
Syntax
public class HelpPanelHandler
Properties
IsOpened
Is the Help Panel opened or hidden
Declaration
public bool IsOpened { get; }
Property Value
Type | Description |
---|---|
bool |
Methods
Close()
Close the Help Panel(roll back up)
Declaration
public void Close()
Initialize(VisualElement)
Initialize the Help panel, storing all references to UIElements it will need for its functionalities
Declaration
public void Initialize(VisualElement root)
Parameters
Type | Name | Description |
---|---|---|
VisualElement | root | The VisualElement of which the panel is a child |
Open(Tutorial)
Open the Help Panel using the given tutorial. Will listen to tutorial events like page initiated and quit to update the displayed question
Declaration
public void Open(Tutorial tutorial)
Parameters
Type | Name | Description |
---|---|---|
Tutorial | tutorial | The tutorial from which to display the FAQ entries |