Class CommonTutorialCallbacks
A set of common tutorial callbacks that Tutorial creators can use. Callback functions need to be public instance methods.
Inherited Members
Namespace: Unity.InteractiveTutorials.Authoring.Editor
Syntax
public class CommonTutorialCallbacks : ScriptableObject
Methods
PingFolderOrAsset(String)
Highlights a folder/asset in the Project window.
Declaration
public void PingFolderOrAsset(string folderPath)
Parameters
Type | Name | Description |
---|---|---|
String | folderPath | All paths are relative to the project folder, examples:
|
PingFolderOrFirstAsset(String)
Highlights a folder or the first asset in it, in the Project window.
Declaration
public void PingFolderOrFirstAsset(string folderPath)
Parameters
Type | Name | Description |
---|---|---|
String | folderPath | All paths are relative to the project folder, examples:
|
SetAudioMasterMute(Boolean)
Mutes or unmutes the editor audio.
Declaration
public void SetAudioMasterMute(bool mute)
Parameters
Type | Name | Description |
---|---|---|
Boolean | mute | Will the editor audio be muted? |