Is there any way to prevent flip while scaling group of objects?
I tried 'lockScalingFlip' attribute. But it is only supported while scaling a single object.
Is there any way to prevent flip while scaling group of objects?
I tried 'lockScalingFlip' attribute. But it is only supported while scaling a single object.
You can check with
object:scaling
if flipX or flipY are true ... If they are then the object has been flipped so you will have to set it again to false.canvas.on('object:scaling', onObjectScaled);
Here is a jsFiddle to see it in action