I am developing an Apple Motion effect's plugin using the FxPlug v4.3 SDK. Everything compiles and works great, however, there's one unpleasant problem. When I apply a filter, in the Motion inspector I see that the button parameter's name is duplicated, i.e. the name is written on the button body and duplicated on the left side. I didn't find anything on this topic in the documentation.
In this regard, I have two questions:
Is it possible to get rid of the param name on the left while still having it on the button body?
Is it possible to move the push button to the center of the parameter's field?
Here's a code.
#import <FxPlug/FxPlugSDK.h>
@objc private func buttonTapped() { ... }
creationAPI.addPushButton(
withName: "Generate",
parameterID: 42,
selector: #selector(buttonTapped),
parameterFlags: .init(kFxParameterFlag_DEFAULT)
)
