Remove superseded contributor material
This commit is contained in:
parent
b2752b1074
commit
f45550e46b
165 changed files with 155 additions and 2158 deletions
|
|
@ -893,17 +893,19 @@ func _on_entry_text_submitted(_value: String) -> void:
|
|||
func _send() -> void:
|
||||
if _send_pending:
|
||||
return
|
||||
var body := NetworkChatProtocol.sanitize_body(_entry.text)
|
||||
if body.is_empty():
|
||||
var submitted_text: String = NetworkChatProtocol.sanitize_body(
|
||||
_entry.text
|
||||
)
|
||||
if submitted_text.length() == 0:
|
||||
close_chat()
|
||||
return
|
||||
if _handle_editor_world_command(body):
|
||||
if _handle_editor_world_command(submitted_text):
|
||||
return
|
||||
_send_pending = true
|
||||
_pending_send_body = body
|
||||
_pending_send_body = submitted_text
|
||||
_entry.editable = false
|
||||
if not _service.send_local_message(
|
||||
body,
|
||||
submitted_text,
|
||||
_player.get_animalese_voice_id(),
|
||||
_player.get_animalese_sample_set_id(),
|
||||
):
|
||||
|
|
|
|||
|
|
@ -1,9 +1,7 @@
|
|||
[gd_scene load_steps=8 format=3]
|
||||
[gd_scene load_steps=6 format=3]
|
||||
|
||||
[ext_resource type="Script" path="res://ui/fishing_shop.gd" id="1_script"]
|
||||
[ext_resource type="Theme" path="res://ui/game_theme.tres" id="2_theme"]
|
||||
[ext_resource type="Texture2D" path="res://items/icons/shop/64_speed_plus.png" id="3_reel"]
|
||||
[ext_resource type="Texture2D" path="res://items/icons/shop/64_power_plus.png" id="4_barrier"]
|
||||
[ext_resource type="Texture2D" path="res://items/icons/shop/32_currency.png" id="5_coin"]
|
||||
[ext_resource type="Texture2D" path="res://ui/icons/pictograms/x_light.png" id="7_close"]
|
||||
[ext_resource type="PackedScene" path="res://ui/components/currency_amount.tscn" id="8_currency"]
|
||||
|
|
@ -211,7 +209,7 @@ unique_name_in_owner = true
|
|||
offset_right = 144.0
|
||||
offset_bottom = 144.0
|
||||
tooltip_text = "reel speed"
|
||||
icon = ExtResource("3_reel")
|
||||
icon = ExtResource("7_close")
|
||||
expand_icon = true
|
||||
icon_max_width = 128
|
||||
|
||||
|
|
@ -240,7 +238,7 @@ unique_name_in_owner = true
|
|||
offset_right = 144.0
|
||||
offset_bottom = 144.0
|
||||
tooltip_text = "rod power"
|
||||
icon = ExtResource("4_barrier")
|
||||
icon = ExtResource("7_close")
|
||||
expand_icon = true
|
||||
icon_max_width = 128
|
||||
|
||||
|
|
|
|||
|
|
@ -127,19 +127,6 @@ theme_override_font_sizes/font_size = 15
|
|||
text = "original hand-net model and texture artwork"
|
||||
autowrap_mode = 2
|
||||
|
||||
[node name="TekgatorName" type="Label" parent="Paper/Margin/Layout/Columns/CreativeCredits"]
|
||||
layout_mode = 2
|
||||
theme_override_colors/font_color = Color(0.902, 0.969, 0.969, 1)
|
||||
theme_override_font_sizes/font_size = 18
|
||||
text = "Tekgator"
|
||||
|
||||
[node name="TekgatorCredit" type="Label" parent="Paper/Margin/Layout/Columns/CreativeCredits"]
|
||||
layout_mode = 2
|
||||
theme_override_colors/font_color = Color(0.624, 0.812, 0.824, 1)
|
||||
theme_override_font_sizes/font_size = 15
|
||||
text = "cooler-capacity, reel-speed, and barrier-power shop icon artwork"
|
||||
autowrap_mode = 2
|
||||
|
||||
[node name="AdditionalCredits" type="VBoxContainer" parent="Paper/Margin/Layout/Columns"]
|
||||
custom_minimum_size = Vector2(404, 0)
|
||||
layout_mode = 2
|
||||
|
|
@ -156,7 +143,7 @@ text = "additional audio"
|
|||
layout_mode = 2
|
||||
theme_override_colors/font_color = Color(0.624, 0.812, 0.824, 1)
|
||||
theme_override_font_sizes/font_size = 15
|
||||
text = "kat • animalese voice sample\nkim • animalese voice sample\ntosha73 • fishing reel sounds\nkkenny101 • ocean ambience\nqubodup • water impact\nAyton • rain ambience\nivolipa • dog bark\nChristyboy100 • cat meow"
|
||||
text = "tosha73 • fishing reel sounds\nkkenny101 • ocean ambience\nqubodup • water impact\nAyton • rain ambience\nivolipa • dog bark\nChristyboy100 • cat meow"
|
||||
|
||||
[node name="TechnologySpacer" type="Control" parent="Paper/Margin/Layout/Columns/AdditionalCredits"]
|
||||
custom_minimum_size = Vector2(0, 9)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue