-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Custom dependency check and tool for Playground sample for unity…
… Input System
- Loading branch information
Showing
10 changed files
with
411 additions
and
22 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using System; | ||
using UnityEngine; | ||
|
||
namespace NFTPort.Editor | ||
{ | ||
public class Readme : ScriptableObject { | ||
public Texture2D icon; | ||
public float iconMaxWidth = 128f; | ||
public string title; | ||
public Section[] sections; | ||
public bool loadedLayout; | ||
public bool notFirstload; | ||
|
||
[Serializable] | ||
public class Section { | ||
public string heading, text, linkText, url; | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.