Skip to content

Commit 6546a27

Browse files
authored
Merge pull request #8 from 100307009/main
Add plugin config data
2 parents bf6f368 + 023ddcc commit 6546a27

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[plugin]
2+
3+
name="AwaitableHTTPRequest Node"
4+
description="This addon makes HTTP requests much more convenient to use by introducing the await-syntax and removing the need for signals."
5+
author="Swarkin"
6+
version="2.0.0"
7+
script="plugin.gd"
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
@tool
2+
extends EditorPlugin
3+
4+
5+
func _enter_tree():
6+
add_custom_type("AwaitableHTTPRequest", "HTTPRequest", preload("awaitable_http_request.gd"), preload("icon.png"))
7+
8+
func _exit_tree():
9+
remove_custom_type("AwaitableHTTPRequest")

0 commit comments

Comments
 (0)