19 lines
357 B
GDScript
19 lines
357 B
GDScript
extends "res://scenes/контроль/прибор.gd"
|
||
|
||
|
||
var test_req: HTTPRequest
|
||
var test_addr: = String()
|
||
var test_data: = {}
|
||
|
||
func _ready():
|
||
test_req = HTTPRequest.new()
|
||
add_child(test_req)
|
||
test_req.request_completed.connect(_map_request_completed)
|
||
|
||
func _map_request_completed():
|
||
pass
|
||
|
||
|
||
func on_req_test_data_timer():
|
||
test_req.request(test_addr)
|