I'm new to Godot and trying to do something like this:
Array<Node> enemies = GetTree().GetNodesInGroup("Enemy") as Array<Node2D>;
Essentially, I have enemies, the root node of which are CharacterBody2Ds. I want to get an array of all of them in the scene, and then be able to access their GlobalPosition, which is on the Node2D portion.
I find casting in C# in Godot to be kind of confusing in general, so I probably just don't understand some fundamental concept.