I have a few questions pertaining to config.editorConfiguration.additionalEffectsButtons.
As per the changes mentioned on the community forums and the documentation it is my understanding that these buttons in the editor view can be enabled/disabled in 2 ways:
cfg.editorConfiguration.additionalEffectsButtons.removeAll(where: { $0.identifier == .colorEffects })
config.recorderConfiguration.additionalEffectsButtons = config.recorderConfiguration.additionalEffectsButtons.filter{$0.identifier != .colorEffects}
Now I've tried out both methods and they only seem to apply the changes to the Editor UI and not Editor UI V2. We want to use Editor UI V2 for our platform.
I have a few questions pertaining to config.editorConfiguration.additionalEffectsButtons.
As per the changes mentioned on the community forums and the documentation it is my understanding that these buttons in the editor view can be enabled/disabled in 2 ways:
Now I've tried out both methods and they only seem to apply the changes to the Editor UI and not Editor UI V2. We want to use Editor UI V2 for our platform.