Skip to content

Instantly share code, notes, and snippets.

@arthurtemple
arthurtemple / http_request.gd
Created October 20, 2017 15:51 — forked from Windastella/http_request.gd
A HTTP Request class with Async using Thread suitable for REST API implementation
# Modified from http://codetuto.com/2015/05/using-httpclient-in-godot/
# Added POST and Optional Header Perimeter
extends Node
var reqlist = []
class request:
var t
var params
var finished = false