sunoku/scenes/inventory/tooltip/tooltip.tscn

49 lines
1.6 KiB
Plaintext

[gd_scene load_steps=7 format=3 uid="uid://bsedu348niu4n"]
[ext_resource type="Script" uid="uid://csb4bby01d4ph" path="res://scenes/inventory/tooltip/tooltip.gd" id="1_kaqjd"]
[ext_resource type="FontFile" uid="uid://dj1hgg8vhug8j" path="res://etc/slkscr.ttf" id="1_tthyn"]
[sub_resource type="CircleShape2D" id="CircleShape2D_0y2k0"]
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_yl77q"]
bg_color = Color(0.639216, 0.635294, 0.603922, 1)
border_width_left = 1
border_width_top = 1
border_width_right = 1
border_width_bottom = 1
border_color = Color(0.156863, 0.137255, 0.156863, 1)
corner_radius_top_left = 2
corner_radius_top_right = 2
corner_radius_bottom_right = 2
corner_radius_bottom_left = 2
anti_aliasing = false
[sub_resource type="Theme" id="Theme_xjhe7"]
PanelContainer/styles/panel = SubResource("StyleBoxFlat_yl77q")
[sub_resource type="LabelSettings" id="LabelSettings_kaqjd"]
font = ExtResource("1_tthyn")
font_size = 9
font_color = Color(0.156863, 0.137255, 0.156863, 1)
[node name="Tooltip" type="Area2D"]
script = ExtResource("1_kaqjd")
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
shape = SubResource("CircleShape2D_0y2k0")
[node name="PanelContainer" type="PanelContainer" parent="."]
z_index = 10
offset_right = 1.0
offset_bottom = 10.0
mouse_filter = 2
theme = SubResource("Theme_xjhe7")
[node name="Label" type="Label" parent="PanelContainer"]
layout_mode = 2
text = "Testing Tooltip"
label_settings = SubResource("LabelSettings_kaqjd")
[connection signal="mouse_entered" from="." to="." method="_on_mouse_entered"]
[connection signal="mouse_exited" from="." to="." method="_on_mouse_exited"]