godot make string all lowercase

To make a string all lowercase in GDScript, you can use the to_lower() method. Here's an example:

var myString = "Hello World"
var lowercaseString = myString.to_lower()

In this example, the to_lower() method is called on the myString variable, which converts the string to all lowercase letters. The result is then assigned to the lowercaseString variable.

That's it! The lowercaseString variable now contains the lowercase version of the original string.