Initial Commit
Initial commit of Code Base.
This commit is contained in:
parent
293b1213e1
commit
c11a4ebbc2
653 changed files with 36893 additions and 1 deletions
13
addons/twitcher/lib/oOuch/oauth_token_inspector.gd
Normal file
13
addons/twitcher/lib/oOuch/oauth_token_inspector.gd
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
@tool
|
||||
extends EditorInspectorPlugin
|
||||
|
||||
var token_info_scene: PackedScene = preload("res://addons/twitcher/lib/oOuch/oauth_token_info.tscn")
|
||||
|
||||
func _can_handle(object: Object) -> bool:
|
||||
return object is OAuthToken
|
||||
|
||||
|
||||
func _parse_begin(object: Object) -> void:
|
||||
var token_info = token_info_scene.instantiate()
|
||||
token_info.token = object
|
||||
add_custom_control(token_info)
|
||||
Loading…
Add table
Add a link
Reference in a new issue