You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am implementing Undo Redo feature with this library.
I have a undo/redo list like this. List<StickerPropertyModel> mUndoList = new ArrayList<>(); List<StickerPropertyModel> mRedoList = new ArrayList<>();
i want to set property value of xLocation, yLocation, scaling, degree. So i getting values from StickerView. like this.. model.setxLocation(stickerView.getX()); model.setyLocation(stickerView.getY()); model.setDegree(stickerView.getRotation());
but the values not coming correctly...
The text was updated successfully, but these errors were encountered:
Ramax11
changed the title
Need Undo Redo feature for Sticker moving, scaling, rotating
Need Undo Redo feature for Sticker movement, scale, rotation
Dec 21, 2018
Ramax11
changed the title
Need Undo Redo feature for Sticker movement, scale, rotation
How to implement Undo Redo feature for Sticker movement, scale, rotation
Dec 21, 2018
I am implementing Undo Redo feature with this library.
I have a undo/redo list like this.
List<StickerPropertyModel> mUndoList = new ArrayList<>();
List<StickerPropertyModel> mRedoList = new ArrayList<>();
i want to set property value of
xLocation
,yLocation
,scaling
,degree
. So i getting values fromStickerView
. like this..model.setxLocation(stickerView.getX());
model.setyLocation(stickerView.getY());
model.setDegree(stickerView.getRotation());
but the values not coming correctly...
The text was updated successfully, but these errors were encountered: