2023-07-21 09:50:06 +00:00
|
|
|
/**
|
|
|
|
* bt_composite.cpp
|
|
|
|
* =============================================================================
|
|
|
|
* Copyright 2021-2023 Serhii Snitsaruk
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style
|
|
|
|
* license that can be found in the LICENSE file or at
|
|
|
|
* https://opensource.org/licenses/MIT.
|
|
|
|
* =============================================================================
|
|
|
|
*/
|
2022-08-28 10:54:34 +00:00
|
|
|
|
|
|
|
#include "bt_composite.h"
|
|
|
|
|
2024-01-06 20:04:34 +00:00
|
|
|
PackedStringArray BTComposite::get_configuration_warnings() {
|
2023-08-15 15:05:30 +00:00
|
|
|
PackedStringArray warnings = BTTask::get_configuration_warnings();
|
2023-08-19 10:19:58 +00:00
|
|
|
if (get_child_count_excluding_comments() < 1) {
|
2023-08-15 15:05:30 +00:00
|
|
|
warnings.append("Composite should have at least one child task.");
|
2022-08-28 10:54:34 +00:00
|
|
|
}
|
2023-08-15 15:05:30 +00:00
|
|
|
return warnings;
|
|
|
|
}
|