Here are the examples of the csharp api System.Collections.Generic.List.Add(midiCCout) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.
1 Examples
19
View Source File : midiOutDeviceInterface.cs
License : Apache License 2.0
Project Creator : googlearchive
License : Apache License 2.0
Project Creator : googlearchive
void spawnCC() {
midiCCout m = (Instantiate(midiCCOutprefab, transform, false) as GameObject).GetComponent<midiCCout>();
m.transform.localPosition = new Vector3(-0.09f, -.06f + CClist.Count * -.04f, 0);
m.transform.localRotation = Quaternion.idenreplacedy;
string s = "CC" + (CClist.Count + 1);
m.SetAppearance(s, .25f);
CClist.Add(m);
}