Interface IModularShaderDebuggerTab
Interface indicating a tab for the Modular Shader Debugger.
Namespace: VRLabs.ModularShaderSystem.Debug
Syntax
public interface IModularShaderDebuggerTab
Remarks
By implementing this interface in a custom class you can add a tab on the ModularShaderDebugger with your own debug tools.
This can be useful in cases where you have specific implementations you want to track in your modular shader.
Properties
Name | Description |
---|---|
TabContainer | VisualElement that will be visualized in the tab. Your ui goes here. Remember to initialize it in your constructor. |
TabName | Name of the tab. |
Methods
Name | Description |
---|---|
UpdateTab(ModularShader) | Function called when updating the shader field (or refreshing). Changes in the data of your ui should go here |