大更新,太多了,具体进游戏查看详细更新内容
反正很多
This commit is contained in:
27
CopyItems/black_blue_crop.tscn
Normal file
27
CopyItems/black_blue_crop.tscn
Normal file
@@ -0,0 +1,27 @@
|
||||
[gd_scene load_steps=3 format=3 uid="uid://cm1e72lhd7j7v"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://c6ylh1o2kgqth" path="res://CopyItems/item_crop.gd" id="1_sgirt"]
|
||||
[ext_resource type="Texture2D" uid="uid://kdhowrc6av4g" path="res://assets/作物/默认/0.png" id="2_sgirt"]
|
||||
|
||||
[node name="BlackBlueCrop" type="Button"]
|
||||
custom_minimum_size = Vector2(400, 400)
|
||||
offset_right = 400.0
|
||||
offset_bottom = 400.0
|
||||
scale = Vector2(0.3, 0.3)
|
||||
theme_override_font_sizes/font_size = 1
|
||||
icon_alignment = 1
|
||||
script = ExtResource("1_sgirt")
|
||||
|
||||
[node name="CropImage" type="Sprite2D" parent="."]
|
||||
position = Vector2(199.569, 201.043)
|
||||
scale = Vector2(0.260977, 0.259058)
|
||||
texture = ExtResource("2_sgirt")
|
||||
|
||||
[node name="Title" type="Label" parent="."]
|
||||
modulate = Color(0, 0.152941, 0.984314, 1)
|
||||
layout_mode = 0
|
||||
offset_right = 400.0
|
||||
offset_bottom = 55.0
|
||||
theme_override_font_sizes/font_size = 50
|
||||
text = "普通"
|
||||
horizontal_alignment = 1
|
||||
42
CopyItems/crop_item.tscn
Normal file
42
CopyItems/crop_item.tscn
Normal file
@@ -0,0 +1,42 @@
|
||||
[gd_scene load_steps=4 format=3 uid="uid://bkivlkirrx6u8"]
|
||||
|
||||
[ext_resource type="Texture2D" uid="uid://c4l0qn0p4yav8" path="res://assets/tu3.png" id="1_bns1c"]
|
||||
[ext_resource type="Script" uid="uid://xh5tr5co5kfu" path="res://GUI/SMY_ProgressBar.gd" id="2_1n4xp"]
|
||||
[ext_resource type="Texture2D" uid="uid://kdhowrc6av4g" path="res://assets/作物/默认/0.png" id="2_bns1c"]
|
||||
|
||||
[node name="CropItem" type="Button"]
|
||||
self_modulate = Color(1, 1, 1, 0.435294)
|
||||
custom_minimum_size = Vector2(100, 100)
|
||||
offset_right = 40.0
|
||||
offset_bottom = 40.0
|
||||
|
||||
[node name="ground_sprite" type="Sprite2D" parent="."]
|
||||
position = Vector2(50, 63)
|
||||
scale = Vector2(0.130329, 0.130329)
|
||||
texture = ExtResource("1_bns1c")
|
||||
|
||||
[node name="crop_sprite" type="Sprite2D" parent="."]
|
||||
visible = false
|
||||
position = Vector2(50, 36)
|
||||
scale = Vector2(0.0660772, 0.0660772)
|
||||
texture = ExtResource("2_bns1c")
|
||||
|
||||
[node name="ProgressBar" type="ProgressBar" parent="."]
|
||||
layout_mode = 2
|
||||
offset_top = 86.0
|
||||
offset_right = 495.0
|
||||
offset_bottom = 159.0
|
||||
scale = Vector2(0.2, 0.2)
|
||||
theme_override_font_sizes/font_size = 50
|
||||
script = ExtResource("2_1n4xp")
|
||||
|
||||
[node name="Label" type="Label" parent="."]
|
||||
layout_mode = 2
|
||||
offset_right = 250.0
|
||||
offset_bottom = 42.0
|
||||
scale = Vector2(0.4, 0.4)
|
||||
size_flags_horizontal = 3
|
||||
theme_override_font_sizes/font_size = 30
|
||||
text = "[普通-胡萝卜]"
|
||||
horizontal_alignment = 1
|
||||
vertical_alignment = 1
|
||||
25
CopyItems/green_crop.tscn
Normal file
25
CopyItems/green_crop.tscn
Normal file
@@ -0,0 +1,25 @@
|
||||
[gd_scene load_steps=2 format=3 uid="uid://2m54c0f1ejir"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://c6ylh1o2kgqth" path="res://CopyItems/item_crop.gd" id="1_ihcyw"]
|
||||
|
||||
[node name="GreenCrop" type="Button"]
|
||||
custom_minimum_size = Vector2(400, 400)
|
||||
offset_right = 400.0
|
||||
offset_bottom = 400.0
|
||||
scale = Vector2(0.3, 0.3)
|
||||
theme_override_font_sizes/font_size = 1
|
||||
icon_alignment = 1
|
||||
script = ExtResource("1_ihcyw")
|
||||
|
||||
[node name="CropImage" type="Sprite2D" parent="."]
|
||||
position = Vector2(199.569, 201.043)
|
||||
scale = Vector2(0.260977, 0.259058)
|
||||
|
||||
[node name="Title" type="Label" parent="."]
|
||||
modulate = Color(0.243137, 0.729412, 0, 1)
|
||||
layout_mode = 0
|
||||
offset_right = 400.0
|
||||
offset_bottom = 55.0
|
||||
theme_override_font_sizes/font_size = 50
|
||||
text = "普通"
|
||||
horizontal_alignment = 1
|
||||
9
CopyItems/item_crop.gd
Normal file
9
CopyItems/item_crop.gd
Normal file
@@ -0,0 +1,9 @@
|
||||
extends Button
|
||||
|
||||
@onready var title :Label = $Title
|
||||
@onready var crop_image: Sprite2D = $CropImage
|
||||
|
||||
|
||||
func _ready() -> void:
|
||||
title.text = self.text
|
||||
pass
|
||||
1
CopyItems/item_crop.gd.uid
Normal file
1
CopyItems/item_crop.gd.uid
Normal file
@@ -0,0 +1 @@
|
||||
uid://c6ylh1o2kgqth
|
||||
25
CopyItems/orange_crop.tscn
Normal file
25
CopyItems/orange_crop.tscn
Normal file
@@ -0,0 +1,25 @@
|
||||
[gd_scene load_steps=2 format=3 uid="uid://forqk66f354p"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://c6ylh1o2kgqth" path="res://CopyItems/item_crop.gd" id="1_00rx4"]
|
||||
|
||||
[node name="OrangeCrop" type="Button"]
|
||||
custom_minimum_size = Vector2(400, 400)
|
||||
offset_right = 400.0
|
||||
offset_bottom = 400.0
|
||||
scale = Vector2(0.3, 0.3)
|
||||
theme_override_font_sizes/font_size = 1
|
||||
icon_alignment = 1
|
||||
script = ExtResource("1_00rx4")
|
||||
|
||||
[node name="CropImage" type="Sprite2D" parent="."]
|
||||
position = Vector2(200, 200)
|
||||
scale = Vector2(0.308178, 0.308356)
|
||||
|
||||
[node name="Title" type="Label" parent="."]
|
||||
modulate = Color(0.822776, 0.578065, 0, 1)
|
||||
layout_mode = 0
|
||||
offset_right = 400.0
|
||||
offset_bottom = 55.0
|
||||
theme_override_font_sizes/font_size = 50
|
||||
text = "普通"
|
||||
horizontal_alignment = 1
|
||||
25
CopyItems/pink_crop.tscn
Normal file
25
CopyItems/pink_crop.tscn
Normal file
@@ -0,0 +1,25 @@
|
||||
[gd_scene load_steps=2 format=3 uid="uid://cmdoymcviv0ai"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://c6ylh1o2kgqth" path="res://CopyItems/item_crop.gd" id="1_3xhou"]
|
||||
|
||||
[node name="PinkCrop" type="Button"]
|
||||
custom_minimum_size = Vector2(400, 400)
|
||||
offset_right = 400.0
|
||||
offset_bottom = 400.0
|
||||
scale = Vector2(0.3, 0.3)
|
||||
theme_override_font_sizes/font_size = 1
|
||||
icon_alignment = 1
|
||||
script = ExtResource("1_3xhou")
|
||||
|
||||
[node name="CropImage" type="Sprite2D" parent="."]
|
||||
position = Vector2(199.569, 201.043)
|
||||
scale = Vector2(0.260977, 0.259058)
|
||||
|
||||
[node name="Title" type="Label" parent="."]
|
||||
modulate = Color(0.980392, 0, 0.552941, 1)
|
||||
layout_mode = 0
|
||||
offset_right = 400.0
|
||||
offset_bottom = 55.0
|
||||
theme_override_font_sizes/font_size = 50
|
||||
text = "普通"
|
||||
horizontal_alignment = 1
|
||||
25
CopyItems/red_crop.tscn
Normal file
25
CopyItems/red_crop.tscn
Normal file
@@ -0,0 +1,25 @@
|
||||
[gd_scene load_steps=2 format=3 uid="uid://d3ve4qeggsdqy"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://c6ylh1o2kgqth" path="res://CopyItems/item_crop.gd" id="1_1yrv4"]
|
||||
|
||||
[node name="RedCrop" type="Button"]
|
||||
custom_minimum_size = Vector2(400, 400)
|
||||
offset_right = 400.0
|
||||
offset_bottom = 400.0
|
||||
scale = Vector2(0.3, 0.3)
|
||||
theme_override_font_sizes/font_size = 1
|
||||
icon_alignment = 1
|
||||
script = ExtResource("1_1yrv4")
|
||||
|
||||
[node name="CropImage" type="Sprite2D" parent="."]
|
||||
position = Vector2(199.569, 201.043)
|
||||
scale = Vector2(0.260977, 0.259058)
|
||||
|
||||
[node name="Title" type="Label" parent="."]
|
||||
modulate = Color(1, 0.0509804, 0.0352941, 1)
|
||||
layout_mode = 0
|
||||
offset_right = 400.0
|
||||
offset_bottom = 55.0
|
||||
theme_override_font_sizes/font_size = 50
|
||||
text = "普通"
|
||||
horizontal_alignment = 1
|
||||
25
CopyItems/white_blue_crop.tscn
Normal file
25
CopyItems/white_blue_crop.tscn
Normal file
@@ -0,0 +1,25 @@
|
||||
[gd_scene load_steps=2 format=3 uid="uid://dagh3u5med30i"]
|
||||
|
||||
[ext_resource type="Script" uid="uid://c6ylh1o2kgqth" path="res://CopyItems/item_crop.gd" id="1_nfqts"]
|
||||
|
||||
[node name="WhiteBlueCrop" type="Button"]
|
||||
custom_minimum_size = Vector2(400, 400)
|
||||
offset_right = 400.0
|
||||
offset_bottom = 400.0
|
||||
scale = Vector2(0.3, 0.3)
|
||||
theme_override_font_sizes/font_size = 1
|
||||
icon_alignment = 1
|
||||
script = ExtResource("1_nfqts")
|
||||
|
||||
[node name="CropImage" type="Sprite2D" parent="."]
|
||||
position = Vector2(199.569, 201.043)
|
||||
scale = Vector2(0.260977, 0.259058)
|
||||
|
||||
[node name="Title" type="Label" parent="."]
|
||||
modulate = Color(0.111013, 0.795686, 0.959948, 1)
|
||||
layout_mode = 0
|
||||
offset_right = 400.0
|
||||
offset_bottom = 55.0
|
||||
theme_override_font_sizes/font_size = 50
|
||||
text = "普通"
|
||||
horizontal_alignment = 1
|
||||
Reference in New Issue
Block a user