GDExtensionInterfaceVariantCanConvert typedef

GDExtensionInterfaceVariantCanConvert = Pointer<NativeFunction<GDExtensionInterfaceVariantCanConvertFunction>>

@name variant_can_convert @since 4.1

Checks if Variants can be converted from one type to another.

@param p_from The Variant type to convert from. @param p_to The Variant type to convert to.

@return true if the conversion is possible; otherwise false.

Implementation

typedef GDExtensionInterfaceVariantCanConvert =
    ffi.Pointer<
      ffi.NativeFunction<GDExtensionInterfaceVariantCanConvertFunction>
    >;