Skip to content

Instantly share code, notes, and snippets.

@ikoan310
Created November 12, 2018 06:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ikoan310/815d993440f9353cc8a17a2d69b5da57 to your computer and use it in GitHub Desktop.
Save ikoan310/815d993440f9353cc8a17a2d69b5da57 to your computer and use it in GitHub Desktop.
Scriptable Object Example
[CreateAssetMenu()]
public class Example : ScriptableObject
{
public int hoge;
public string hoge2;
public ExampleSturct moge;
}
[Serializable]
public struct ExampleSturct
{
public int num;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment