diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2022-02-15 08:56:58 -0600 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2022-03-12 13:34:06 -0600 |
commit | 918b09cabc39dbf13bed2406da56035341ac1cf4 (patch) | |
tree | 20989f8c374745f579f88c0dd925b31fa9b1ba55 /editor/animation_track_editor_plugins.h | |
parent | d7019de7e3c416e5492d1508b39c9b25adc2483a (diff) | |
download | redot-engine-918b09cabc39dbf13bed2406da56035341ac1cf4.tar.gz |
Initialize bools in the headers in editor
Diffstat (limited to 'editor/animation_track_editor_plugins.h')
-rw-r--r-- | editor/animation_track_editor_plugins.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/animation_track_editor_plugins.h b/editor/animation_track_editor_plugins.h index 7022f524c5..adfe517356 100644 --- a/editor/animation_track_editor_plugins.h +++ b/editor/animation_track_editor_plugins.h @@ -81,7 +81,7 @@ class AnimationTrackEditSpriteFrame : public AnimationTrackEdit { GDCLASS(AnimationTrackEditSpriteFrame, AnimationTrackEdit); ObjectID id; - bool is_coords; + bool is_coords = false; public: virtual int get_key_height() const override; @@ -92,7 +92,7 @@ public: void set_node(Object *p_object); void set_as_coords(); - AnimationTrackEditSpriteFrame() { is_coords = false; } + AnimationTrackEditSpriteFrame() {} }; class AnimationTrackEditSubAnim : public AnimationTrackEdit { @@ -114,7 +114,7 @@ class AnimationTrackEditTypeAudio : public AnimationTrackEdit { void _preview_changed(ObjectID p_which); - bool len_resizing; + bool len_resizing = false; bool len_resizing_start; int len_resizing_index; float len_resizing_from_px; |