-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
73b0cc2
commit 2f1cd4f
Showing
7 changed files
with
65 additions
and
2 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using UnityEngine; | ||
using UnityEditor; | ||
|
||
namespace LWGUI.CustomGUISample | ||
{ | ||
public static class CustomFooter | ||
{ | ||
public static void DoCustomFooter(LWGUI lwgui) | ||
{ | ||
// Draw your custom gui... | ||
|
||
// Debug.Log(lwgui.shader); | ||
} | ||
|
||
[InitializeOnLoadMethod] | ||
private static void RegisterEvent() | ||
{ | ||
LWGUI.onCustomFooter += DoCustomFooter; | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using UnityEngine; | ||
using UnityEditor; | ||
|
||
namespace LWGUI.CustomGUISample | ||
{ | ||
public static class CustomHeader | ||
{ | ||
public static void DoCustomHeader(LWGUI lwgui) | ||
{ | ||
// Draw your custom gui... | ||
|
||
// Debug.Log(lwgui.shader); | ||
} | ||
|
||
[InitializeOnLoadMethod] | ||
private static void RegisterEvent() | ||
{ | ||
LWGUI.onCustomFooter += DoCustomHeader; | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters