value info in projects window

This commit is contained in:
Yannik
2023-04-22 23:01:17 +02:00
parent eb8396fb9d
commit 2a723a72b5
2 changed files with 17 additions and 7 deletions

View File

@@ -6,3 +6,4 @@ func _ready():
DiscordSDK.state = "This is a test from GDScript in Godot 4" DiscordSDK.state = "This is a test from GDScript in Godot 4"
DiscordSDK.refresh() DiscordSDK.refresh()
$Info.text = $Info.text.replace("{id}",str(DiscordSDK.app_id)).replace("{details}",DiscordSDK.details).replace("{state}",DiscordSDK.state)

View File

@@ -22,19 +22,28 @@ position = Vector2(565, 308)
scale = Vector2(0.408203, 0.408203) scale = Vector2(0.408203, 0.408203)
texture = ExtResource("2_1hv5q") texture = ExtResource("2_1hv5q")
[node name="RichTextLabel" type="RichTextLabel" parent="."] [node name="DiscordSDK Test" type="RichTextLabel" parent="."]
anchors_preset = 8 anchors_preset = 8
anchor_left = 0.5 anchor_left = 0.5
anchor_top = 0.5 anchor_top = 0.5
anchor_right = 0.5 anchor_right = 0.5
anchor_bottom = 0.5 anchor_bottom = 0.5
offset_left = -136.0 offset_left = -257.0
offset_top = 69.0 offset_top = 54.0
offset_right = 136.0 offset_right = 257.0
offset_bottom = 165.0 offset_bottom = 150.0
grow_horizontal = 2 grow_horizontal = 2
grow_vertical = 2 grow_vertical = 2
size_flags_horizontal = 4
size_flags_vertical = 4
theme_override_colors/font_outline_color = Color(1, 1, 1, 1) theme_override_colors/font_outline_color = Color(1, 1, 1, 1)
theme_override_constants/outline_size = 10 theme_override_constants/outline_size = 10
bbcode_enabled = true bbcode_enabled = true
text = "[font s=60][rainbow]RPC Test[/rainbow][/font]" text = "[center][font s=60][rainbow]DiscordSDK Test[/rainbow][/font]"
[node name="Info" type="RichTextLabel" parent="."]
offset_right = 507.0
offset_bottom = 155.0
text = "Application ID : {id}
Details: {details}
State: {state}"