Exemplo n.º 1
0
        private static void GenerateChannelConstant(KLCodeWriter cw, KLChannelDefinition channel)
        {
            string variableName = GetTagConstantName(channel.name);

            cw.WriteLine(string.Format("public const string {0} = \"{1}\";", variableName, channel.name));
        }
Exemplo n.º 2
0
 public static void DrawChannel(KLChannelDefinition channel)
 {
     EditorGUILayout.LabelField(channel.name, EditorStyles.miniLabel);
 }