Hello, I'm trying to connect my node to the request_completed signal of an HTTPRequest node, the function in which I'm connecting the signal is like this:
but when I try to compile it, it throws the following errors:
./src/example/HxExample.cpp(2244): error C2039: 'PackedByteArray_obj': is not a member of 'godot'
\bin\include\godot/variant/__Variant.h(13): note: see declaration of 'godot'
./src/example/HxExample.cpp(2244): error C3083: 'PackedByteArray_obj': the symbol to the left of a '::' must be a type
./src/example/HxExample.cpp(2244): error C2039: '___binding_callbacks': is not a member of 'godot'
\bin\include\godot/variant/__Variant.h(13): note: see declaration of 'godot'
./src/example/HxExample.cpp(2251): error C2039: 'PackedStringArray_obj': is not a member of 'godot'
bin\include\godot/variant/__Variant.h(13): note: see declaration of 'godot'
./src/example/HxExample.cpp(2251): error C3083: 'PackedStringArray_obj': the symbol to the left of a '::' must be a type
./src/example/HxExample.cpp(2251): error C2039: '___binding_callbacks': is not a member of 'godot'
\bin\include\godot/variant/__Variant.h(13): note: see declaration of 'godot'
./src/example/HxExample.cpp(2458): error C2039: 'PackedByteArray_obj': is not a member of 'godot'
\bin\include\godot/variant/__Variant.h(13): note: see declaration of 'godot'
./src/example/HxExample.cpp(2458): error C3083: 'PackedByteArray_obj': the symbol to the left of a '::' must be a type
./src/example/HxExample.cpp(2458): error C2039: '___binding_callbacks': is not a member of 'godot'
\bin\include\godot/variant/__Variant.h(13): note: see declaration of 'godot'
./src/example/HxExample.cpp(2465): error C2039: 'PackedStringArray_obj': is not a member of 'godot'
\bin\include\godot/variant/__Variant.h(13): note: see declaration of 'godot'
./src/example/HxExample.cpp(2465): error C3083: 'PackedStringArray_obj': the symbol to the left of a '::' must be a type
./src/example/HxExample.cpp(2465): error C2039: '___binding_callbacks': is not a member of 'godot'
\bin\include\godot/variant/__Variant.h(13): note: see declaration of 'godot'
Hello, I'm trying to connect my node to the
request_completed
signal of anHTTPRequest
node, the function in which I'm connecting the signal is like this:but when I try to compile it, it throws the following errors: