Advertisement
Frank84

2 Dimensional Arrays in Inspector

Nov 7th, 2012
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.20 KB | None | 0 0
  1. public class MyClass : MonoBehaviour
  2. {
  3.     [System.Serializable]
  4.     public class AudioClipSet
  5.     {
  6.         public string setName;
  7.         public AudioClip[] audioClips;
  8.     }
  9.  
  10.     public AudioClipSet[] AudioClipSets;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement