Skip to content

Commit

Permalink
Add some doc-comments
Browse files Browse the repository at this point in the history
  • Loading branch information
bdunderscore committed Sep 10, 2023
1 parent 0c258eb commit ec31c94
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Editor/Samples/SetViewpointPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,17 @@ namespace nadena.dev.ndmf.sample
{
public class SetViewpointPlugin : Plugin<SetViewpointPlugin>
{
/// <summary>
/// This name is used to identify the plugin internally, and can be used to declare BeforePlugin/AfterPlugin
/// dependencies. If not set, the full type name will be used.
/// </summary>
public override string QualifiedName => "nadena.dev.av3-build-framework.sample.set-viewpoint";

/// <summary>
/// The plugin name shown in debug UIs. If not set, the qualified name will be shown.
/// </summary>
public override string DisplayName => "Set viewpoint using object";

protected override void Configure()
{
InPhase(BuildPhase.Transforming).Run("Set viewpoint", ctx =>
Expand Down

0 comments on commit ec31c94

Please sign in to comment.