From ae94b4b9fc5b4443f6d9eb6bb450de1def108cdb Mon Sep 17 00:00:00 2001 From: Fox Caminiti Date: Wed, 24 Aug 2022 20:40:39 -0400 Subject: fixes for gl core; create/delete developing --- main.h | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'main.h') diff --git a/main.h b/main.h index b0d1a1c..967354f 100644 --- a/main.h +++ b/main.h @@ -53,6 +53,14 @@ struct cached_bitmap { uint32 Frame; // What frame it is. }; +struct action_shift_data { + void *StartingAddress; + uint32 Size; + uint16 NumberOf; + uint16 Index; + int16 Direction; +}; + enum action_type { action_type_change_u16, action_type_change_i16, @@ -62,7 +70,10 @@ enum action_type { action_type_change_u64, action_type_change_ptr, action_type_change_string, - action_type_shift_keyframe + action_type_shift_keyframe, + action_type_shift_bezier, + action_type_shift, + action_type_storedata }; enum action_entry_type { @@ -493,6 +504,7 @@ struct ui real32 DraggingKeyframeThreshold; real32 DraggingLayerThreshold; real32 DraggingTimelineThreshold; + real32 DraggingEffectThreshold; real32 KeyframeSpacing = 6; ImVec2 BoxStart = ImVec2(0,0); -- cgit v1.2.3