123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- [gd_scene load_steps=5 format=2]
- [ext_resource path="res://theme.tres" type="Theme" id=1]
- [ext_resource path="res://room_view.gd" type="Script" id=2]
- [ext_resource path="res://airplane.png" type="Texture" id=3]
- [sub_resource type="StyleBoxFlat" id=2]
- border_blend = true
- [node name="ROOM_VIEW" type="PanelContainer"]
- anchor_right = 1.0
- anchor_bottom = 1.0
- theme = ExtResource( 1 )
- script = ExtResource( 2 )
- __meta__ = {
- "_edit_use_anchors_": false
- }
- [node name="vcontainer" type="VBoxContainer" parent="."]
- margin_left = 7.0
- margin_top = 7.0
- margin_right = 1017.0
- margin_bottom = 593.0
- [node name="room_meta_line" type="HBoxContainer" parent="vcontainer"]
- margin_right = 1010.0
- margin_bottom = 26.0
- [node name="ROOM_NAME" type="Label" parent="vcontainer/room_meta_line"]
- margin_bottom = 20.0
- size_flags_vertical = 0
- [node name="ROOM_TOPIC" type="Label" parent="vcontainer/room_meta_line"]
- margin_left = 4.0
- margin_right = 956.0
- margin_bottom = 26.0
- size_flags_horizontal = 3
- size_flags_vertical = 3
- custom_colors/font_color = Color( 0.617188, 0.617188, 0.617188, 1 )
- [node name="leave_button" type="Button" parent="vcontainer/room_meta_line"]
- margin_left = 960.0
- margin_right = 1010.0
- margin_bottom = 26.0
- grow_horizontal = 0
- text = "Leave"
- [node name="TYPING_INDICATOR" type="Label" parent="vcontainer"]
- margin_top = 30.0
- margin_right = 1010.0
- margin_bottom = 50.0
- size_flags_vertical = 0
- [node name="MESSAGES" type="ScrollContainer" parent="vcontainer"]
- margin_top = 54.0
- margin_right = 1010.0
- margin_bottom = 556.0
- size_flags_vertical = 3
- __meta__ = {
- "_edit_use_anchors_": false
- }
- [node name="MESSAGE_LIST" type="VBoxContainer" parent="vcontainer/MESSAGES"]
- margin_right = 1010.0
- margin_bottom = 502.0
- size_flags_horizontal = 3
- size_flags_vertical = 3
- alignment = 2
- [node name="message_input_container" type="PanelContainer" parent="vcontainer"]
- margin_top = 560.0
- margin_right = 1010.0
- margin_bottom = 586.0
- grow_vertical = 0
- size_flags_vertical = 9
- custom_styles/panel = SubResource( 2 )
- [node name="hbox" type="HBoxContainer" parent="vcontainer/message_input_container"]
- margin_right = 1010.0
- margin_bottom = 26.0
- size_flags_horizontal = 3
- size_flags_vertical = 3
- [node name="MESSAGE_INPUT" type="LineEdit" parent="vcontainer/message_input_container/hbox"]
- margin_right = 980.0
- margin_bottom = 26.0
- size_flags_horizontal = 3
- size_flags_vertical = 3
- placeholder_text = "Type a message..."
- caret_blink = true
- caret_blink_speed = 0.5
- __meta__ = {
- "_edit_use_anchors_": false
- }
- [node name="send" type="Button" parent="vcontainer/message_input_container/hbox"]
- margin_left = 984.0
- margin_right = 1010.0
- margin_bottom = 26.0
- grow_horizontal = 0
- rect_min_size = Vector2( 26, 0 )
- size_flags_horizontal = 0
- size_flags_vertical = 0
- icon = ExtResource( 3 )
- expand_icon = true
- __meta__ = {
- "_edit_use_anchors_": false
- }
- [connection signal="pressed" from="vcontainer/message_input_container/hbox/send" to="." method="send_message"]
|