-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathItem.tscn
55 lines (46 loc) · 1.55 KB
/
Item.tscn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[gd_scene load_steps=7 format=2]
[ext_resource path="res://fonts/amon_font.tres" type="DynamicFont" id=1]
[ext_resource path="res://Item.gd" type="Script" id=2]
[ext_resource path="res://images/items/question.svg" type="Texture" id=3]
[ext_resource path="res://fonts/RobotoCondensed-Regular.ttf" type="DynamicFontData" id=4]
[sub_resource type="StyleBoxFlat" id=1]
bg_color = Color( 0.752941, 1, 0.929412, 1 )
[sub_resource type="DynamicFont" id=2]
size = 15
font_data = ExtResource( 4 )
[node name="Item" type="Panel"]
margin_right = 450.0
margin_bottom = 50.0
rect_min_size = Vector2( 450, 50 )
mouse_filter = 1
custom_styles/panel = SubResource( 1 )
script = ExtResource( 2 )
[node name="sprite" type="Sprite" parent="."]
position = Vector2( 19.5874, 24.3156 )
scale = Vector2( 0.0483685, 0.0483685 )
texture = ExtResource( 3 )
[node name="Nom" type="Label" parent="."]
margin_left = 39.0828
margin_top = 0.037941
margin_right = 208.083
margin_bottom = 31.0379
custom_colors/font_color = Color( 0, 0, 0, 1 )
custom_fonts/font = ExtResource( 1 )
text = "NOM DE L'OBJET"
[node name="Stats" type="Label" parent="."]
margin_left = 40.1305
margin_top = 28.6346
margin_right = 209.13
margin_bottom = 59.6346
custom_colors/font_color = Color( 0.466667, 0.423529, 0.423529, 1 )
custom_fonts/font = SubResource( 2 )
text = "STATS"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="button" type="CheckButton" parent="."]
margin_left = 375.0
margin_top = 4.0
margin_right = 451.0
margin_bottom = 44.0
[connection signal="toggled" from="button" to="." method="_on_button_toggled"]