diff options
author | PouleyKetchoupp <pouleyketchoup@gmail.com> | 2021-10-05 13:09:01 -0700 |
---|---|---|
committer | PouleyKetchoupp <pouleyketchoup@gmail.com> | 2021-10-05 13:09:01 -0700 |
commit | 1c0ebc85dd8002e3763e858d71c10b8b72727fff (patch) | |
tree | e5e7bc92094e0776f1b69de8d59f03a1ffde058e /scene/scene_string_names.cpp | |
parent | 198b49d8b589e88a5ae61fc8418ebf8890d2d1f7 (diff) |
Add pre-sort signal and notification in Container
Allows processing before children are sorted, useful for custom
containers inherited from existing ones like BoxContainer.
Diffstat (limited to 'scene/scene_string_names.cpp')
-rw-r--r-- | scene/scene_string_names.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/scene_string_names.cpp b/scene/scene_string_names.cpp index b283749ffa..29e5dd6056 100644 --- a/scene/scene_string_names.cpp +++ b/scene/scene_string_names.cpp @@ -73,6 +73,7 @@ SceneStringNames::SceneStringNames() { focus_entered = StaticCString::create("focus_entered"); focus_exited = StaticCString::create("focus_exited"); + pre_sort_children = StaticCString::create("pre_sort_children"); sort_children = StaticCString::create("sort_children"); body_shape_entered = StaticCString::create("body_shape_entered"); |