Files
uarep-ctl/scenes/pribor-afsp/pribor-afsp.gd

19 lines
357 B
GDScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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)