123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- [gd_scene load_steps=5 format=2]
- [ext_resource path="res://icon.png" type="Texture" id=1]
- [ext_resource path="res://scenes/custom_nodes/channel_card/channel_card.gd" type="Script" id=2]
- [ext_resource path="res://assets/fonts/DroidSans.ttf" type="DynamicFontData" id=3]
- [sub_resource type="DynamicFont" id=1]
- size = 11
- use_mipmaps = true
- use_filter = true
- extra_spacing_top = -1
- font_data = ExtResource( 3 )
- [node name="ChannelCard" type="HBoxContainer"]
- margin_right = 168.0
- margin_bottom = 64.0
- rect_clip_content = true
- size_flags_horizontal = 3
- script = ExtResource( 2 )
- [node name="ChannelThumbnail" type="TextureRect" parent="."]
- margin_right = 64.0
- margin_bottom = 64.0
- texture = ExtResource( 1 )
- [node name="VBoxContainer" type="VBoxContainer" parent="."]
- margin_left = 68.0
- margin_right = 168.0
- margin_bottom = 64.0
- size_flags_horizontal = 3
- alignment = 1
- [node name="ChannelTitle" type="Label" parent="VBoxContainer"]
- margin_top = 16.0
- margin_right = 100.0
- margin_bottom = 30.0
- mouse_filter = 1
- text = "Text"
- valign = 1
- clip_text = true
- max_lines_visible = 1
- [node name="ChannelName" type="Label" parent="VBoxContainer"]
- modulate = Color( 1, 1, 1, 0.498039 )
- margin_top = 34.0
- margin_right = 100.0
- margin_bottom = 47.0
- mouse_filter = 1
- custom_fonts/font = SubResource( 1 )
- text = "Text"
- valign = 1
- clip_text = true
- max_lines_visible = 1
|