From b4700a13c6aba992539af9d31c5f2c23d95b23fb Mon Sep 17 00:00:00 2001 From: Richard Antalik Date: Wed, 9 Feb 2022 13:42:58 +0100 Subject: VSE: Use float for transformation offset When image position is animated, float makes movement look smoother. --- source/blender/makesdna/DNA_sequence_types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/makesdna') diff --git a/source/blender/makesdna/DNA_sequence_types.h b/source/blender/makesdna/DNA_sequence_types.h index 70f0dc3f5de..622175a8429 100644 --- a/source/blender/makesdna/DNA_sequence_types.h +++ b/source/blender/makesdna/DNA_sequence_types.h @@ -73,8 +73,8 @@ typedef struct StripCrop { } StripCrop; typedef struct StripTransform { - int xofs; - int yofs; + float xofs; + float yofs; float scale_x; float scale_y; float rotation; -- cgit v1.2.3