Like in gdscript the result of a raycast is a dictionary.
But is there a more elegant way to check if the hit object is of certain type?
Using "is" to check the type or GetType() always returns Godot.Variant

Character is the class inherited from CharacterBody3D.

This works, but I really don't like it. :/

        if (raycastResult.TryGetValue("collider", out var colliderVariant))
        {

            var collider = colliderVariant.AsGodotObject() as Character;

            if (collider != null)
            {
                GD.Print("Char");
            }
            else
            {
                GD.Print("Collider is not a Character, it's a " + colliderVariant.GetType());
            }
        }
  • xyz replied to this.
  • trizZzle Afaik you can only get built-in classes. It's the same in GDScript as well. Custom classes can only be queried using is

    trizZzle What's returned by colliderVariant.AsGodotObject().GetClass() ?

      xyz It returns CharacterBody3D. Somehow I get the impression working with gdscript makes things easier in most cases.

      • xyz replied to this.

        trizZzle Afaik you can only get built-in classes. It's the same in GDScript as well. Custom classes can only be queried using is