I need to use the following options for my plugin:
disablePitch: true,
minY: 0,
maxY: 90
Background is that I want to disable negative rotation on the Y-Axis for the model.
Is it possible to place these options inside the plugin init code like this?
plugins: [new View3D.RotateControl({
disablePitch: true,
minY: 0,
maxY: 90,
})]