public void ToggleFeature(string feature, bool enable)
    {
        if (string.IsNullOrEmpty(feature))
        {
            return;
        }

        TCP2_ShaderGeneratorUtils.ToggleEntry(this.Features, feature, enable);
    }
 public void ToggleFlag(string flag, bool enable)
 {
     TCP2_ShaderGeneratorUtils.ToggleEntry(this.Flags, flag, enable);
 }
Esempio n. 3
0
 public void ToggleFeature(string feature, bool enable)
 {
     TCP2_ShaderGeneratorUtils.ToggleEntry(this.Features, feature, enable);
 }