private static EffectIdentifierResponse RemoveEffect(ChromaApi api, string effectId) { if (api == null) { Debug.LogError("RemoveEffect: Parameter api is null!"); return(null); } if (string.IsNullOrEmpty(effectId)) { Debug.LogError("RemoveEffect: Parameter effectId cannot be null or empty!"); return(null); } EffectIdentifierInput data = new EffectIdentifierInput(effectId, null); try { return(api.RemoveEffect(data)); } catch (Exception) { } return(null); }