mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 07:17:42 -05:00
Replace size() == 0 with is_empty().
This commit is contained in:
@@ -389,7 +389,7 @@ PackedStringArray XRServer::get_suggested_tracker_names() const {
|
||||
}
|
||||
}
|
||||
|
||||
if (arr.size() == 0) {
|
||||
if (arr.is_empty()) {
|
||||
// no suggestions from our tracker? include our defaults
|
||||
arr.push_back(String("head"));
|
||||
arr.push_back(String("left_hand"));
|
||||
@@ -412,7 +412,7 @@ PackedStringArray XRServer::get_suggested_pose_names(const StringName &p_tracker
|
||||
}
|
||||
}
|
||||
|
||||
if (arr.size() == 0) {
|
||||
if (arr.is_empty()) {
|
||||
// no suggestions from our tracker? include our defaults
|
||||
arr.push_back(String("default"));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user