I am using Transformable
node and able to set minimum and maximum scale values. But I am using a model whose default size is much bigger so I have to use gestures to make it small.
How is it possible to set default scale value of a model / Transformable node?
ScaleController
of theTransformableNode
. You can change it withtransformableNode.getScaleController().setMaxScale(maxScale)
andtransformableNode.getScaleController().setMinScale(minScale)
. – Whiles