You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the project you are working on:
gdscript plugins
Describe the problem or limitation you are having in your project:
There is sort() in Array, can't find it in PoolStringArray
Describe the feature / enhancement and how it helps to overcome the problem or limitation: sort() method in PoolStringArray could sort the array alphabetically
Describe how your proposal will work, with code, pseudocode, mockups, and/or diagrams:
PoolStringArray(["b","a"]).sort()
->ab
If this enhancement will not be used often, can it be worked around with a few lines of script?:
I think this is possible, but I do not find it logical since there's sort() methods in Arrays
Is there a reason why this should be core and not an add-on in the asset library?:
should be a core feature
The text was updated successfully, but these errors were encountered:
Describe the project you are working on:
gdscript plugins
Describe the problem or limitation you are having in your project:
There is
sort()
inArray
, can't find it inPoolStringArray
Describe the feature / enhancement and how it helps to overcome the problem or limitation:
sort()
method inPoolStringArray
could sort the array alphabeticallyDescribe how your proposal will work, with code, pseudocode, mockups, and/or diagrams:
If this enhancement will not be used often, can it be worked around with a few lines of script?:
I think this is possible, but I do not find it logical since there's
sort()
methods in ArraysIs there a reason why this should be core and not an add-on in the asset library?:
should be a core feature
The text was updated successfully, but these errors were encountered: