diff --git a/addons/TweenFX/TweenFX.gd b/addons/TweenFX/TweenFX.gd index f2a5213..2514bc4 100644 --- a/addons/TweenFX/TweenFX.gd +++ b/addons/TweenFX/TweenFX.gd @@ -1,3 +1,4 @@ +@tool @icon("res://addons/TweenFX/icon.png") ## TweenFX — A juicy tween animation library for Godot 4. ## [br][br] diff --git a/core/daynight/environment_shadows.tres b/core/daynight/environment_shadows.tres index 8c9c97f..a7bba67 100644 --- a/core/daynight/environment_shadows.tres +++ b/core/daynight/environment_shadows.tres @@ -1,7 +1,7 @@ [gd_resource type="ShaderMaterial" format=3 uid="uid://cknq8qhom7ral"] -[ext_resource type="Shader" uid="uid://c0gopfoe0ij8g" path="res://Shaders/Shadow_postProcess.gdshader" id="1_23efu"] -[ext_resource type="FastNoiseLite" uid="uid://c0mtwrkptjcuw" path="res://Assets/Textures/Noise_Clouds.tres" id="2_n0ip8"] +[ext_resource type="Shader" uid="uid://b5wa82soyhsqm" path="res://core/daynight/environment_shadows.gdshader" id="1_23efu"] +[ext_resource type="FastNoiseLite" uid="uid://c0mtwrkptjcuw" path="res://core/daynight/environment_shadows_noise_clouds.tres" id="2_n0ip8"] [sub_resource type="NoiseTexture2D" id="NoiseTexture2D_5lko7"] noise = ExtResource("2_n0ip8") diff --git a/core/daynight/godrays.tres b/core/daynight/godrays.tres index fa82953..c77767d 100644 --- a/core/daynight/godrays.tres +++ b/core/daynight/godrays.tres @@ -1,6 +1,6 @@ [gd_resource type="ShaderMaterial" format=3 uid="uid://cwbxvmtih5wsc"] -[ext_resource type="Shader" uid="uid://dkmdtejrbks8n" path="res://Shaders/godrays.gdshader" id="1_pbkwa"] +[ext_resource type="Shader" uid="uid://caavljcth87so" path="res://core/daynight/godrays.gdshader" id="1_pbkwa"] [sub_resource type="FastNoiseLite" id="FastNoiseLite_xa3jw"] noise_type = 3 diff --git a/core/shader_warmup.gd b/core/shader_warmup.gd index 014a31a..7fd6fcb 100644 --- a/core/shader_warmup.gd +++ b/core/shader_warmup.gd @@ -70,5 +70,9 @@ func warmup() -> void: quad.material_override = mat await get_tree().process_frame # one frame renders the quad with this material + quad.material_override = null + quad.mesh = null + valid.clear() vp.queue_free() + await get_tree().process_frame print("[ShaderWarmup] Done.") diff --git a/core/tween/container_tween.gd b/core/tween/container_tween.gd index 4699ce1..f230e09 100644 --- a/core/tween/container_tween.gd +++ b/core/tween/container_tween.gd @@ -33,7 +33,7 @@ func start_tween() -> void: _tween_generation += 1 var current_gen = _tween_generation - var sorted_targets = targets.duplicate() if !targets.is_empty() else runtime_target_parent.get_children().duplicate() + var sorted_targets: Array[Control] = _get_current_targets() match order: AnimateOrder.TOP_TO_BOTTOM: @@ -80,7 +80,23 @@ func start_tween() -> void: func stop_tween() -> void: is_running = false _tween_generation += 1 - var current_targets = targets if !targets.is_empty() else runtime_target_parent.get_children() + var current_targets: Array[Control] = _get_current_targets() for target in current_targets: if is_instance_valid(target): TweenFX.stop_all(target) + + +func _get_current_targets() -> Array[Control]: + if !targets.is_empty(): + return targets.duplicate() + + var current_targets: Array[Control] = [] + if runtime_target_parent == null: + return current_targets + + for child in runtime_target_parent.get_children(): + var target := child as Control + if target != null: + current_targets.append(target) + + return current_targets diff --git a/tgcc/chunk/countryside/scene/fields/chunk_country_tea_cross_3_02.tscn b/tgcc/chunk/countryside/scene/fields/chunk_country_tea_cross_3_02.tscn index f984226..5adcae1 100644 --- a/tgcc/chunk/countryside/scene/fields/chunk_country_tea_cross_3_02.tscn +++ b/tgcc/chunk/countryside/scene/fields/chunk_country_tea_cross_3_02.tscn @@ -36,7 +36,7 @@ [ext_resource type="PackedScene" uid="uid://b1gx0pkd4bwlq" path="res://tgcc/chunk/prop/vase/vase_5.tscn" id="34_wi6ip"] [ext_resource type="PackedScene" uid="uid://b53eql8vsisae" path="res://tgcc/chunk/prop/vase/vase_2.tscn" id="35_nd4ye"] [ext_resource type="PackedScene" uid="uid://bllge1erdtn05" path="res://tgcc/chunk/prop/vase/vase_1.tscn" id="36_cwxcv"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="37_o27v8"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="37_o27v8"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="38_pfxt1"] [ext_resource type="ArrayMesh" uid="uid://c2tkniimk7ty1" path="res://tgcc/chunk/prop/fields/potato/potato.res" id="39_a5nr4"] [ext_resource type="ArrayMesh" uid="uid://3xdihj6bgthr" path="res://tgcc/chunk/prop/fields/carrot/carrot.res" id="40_qw44y"] diff --git a/tgcc/chunk/countryside/scene/fields/chunk_country_tea_end_01.tscn b/tgcc/chunk/countryside/scene/fields/chunk_country_tea_end_01.tscn index fef6024..4537469 100644 --- a/tgcc/chunk/countryside/scene/fields/chunk_country_tea_end_01.tscn +++ b/tgcc/chunk/countryside/scene/fields/chunk_country_tea_end_01.tscn @@ -32,7 +32,7 @@ [ext_resource type="PackedScene" uid="uid://r720wolh815q" path="res://tgcc/chunk/prop/vase/vase_3.tscn" id="30_26pgo"] [ext_resource type="PackedScene" uid="uid://b53eql8vsisae" path="res://tgcc/chunk/prop/vase/vase_2.tscn" id="31_md34d"] [ext_resource type="PackedScene" uid="uid://bllge1erdtn05" path="res://tgcc/chunk/prop/vase/vase_1.tscn" id="32_rciwi"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="33_nvr50"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="33_nvr50"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="34_i4oqm"] [ext_resource type="ArrayMesh" uid="uid://3xdihj6bgthr" path="res://tgcc/chunk/prop/fields/carrot/carrot.res" id="35_i2sew"] [ext_resource type="PackedScene" uid="uid://cqstxvrtabka3" path="res://tgcc/chunk/prop/fields/field_big.tscn" id="36_xbvfl"] diff --git a/tgcc/chunk/countryside/scene/fields/chunk_country_tea_straight_02.tscn b/tgcc/chunk/countryside/scene/fields/chunk_country_tea_straight_02.tscn index 5f50b7e..6e9a177 100644 --- a/tgcc/chunk/countryside/scene/fields/chunk_country_tea_straight_02.tscn +++ b/tgcc/chunk/countryside/scene/fields/chunk_country_tea_straight_02.tscn @@ -38,7 +38,7 @@ [ext_resource type="PackedScene" uid="uid://bllge1erdtn05" path="res://tgcc/chunk/prop/vase/vase_1.tscn" id="36_8iq4f"] [ext_resource type="PackedScene" uid="uid://c058662vbd6ey" path="res://tgcc/chunk/prop/tree/tree_03/tree_03.tscn" id="37_g8pyh"] [ext_resource type="PackedScene" uid="uid://dqgn3sucsr4t5" path="res://tgcc/chunk/prop/vehicle/bike/bike.tscn" id="38_telij"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="39_n2r7q"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="39_n2r7q"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="40_001yn"] [ext_resource type="ArrayMesh" uid="uid://c2tkniimk7ty1" path="res://tgcc/chunk/prop/fields/potato/potato.res" id="41_dn7xc"] [ext_resource type="ArrayMesh" uid="uid://3xdihj6bgthr" path="res://tgcc/chunk/prop/fields/carrot/carrot.res" id="42_0txat"] diff --git a/tgcc/chunk/countryside/scene/fields/chunk_country_tea_straight_03.tscn b/tgcc/chunk/countryside/scene/fields/chunk_country_tea_straight_03.tscn index 2eb9a2e..3fe7b44 100644 --- a/tgcc/chunk/countryside/scene/fields/chunk_country_tea_straight_03.tscn +++ b/tgcc/chunk/countryside/scene/fields/chunk_country_tea_straight_03.tscn @@ -20,7 +20,7 @@ [ext_resource type="PackedScene" uid="uid://chhdorj82bkus" path="res://tgcc/chunk/prop/scarecrow/scarecrow2.tscn" id="18_2rbo3"] [ext_resource type="PackedScene" uid="uid://dn2b3f3nr6btn" path="res://tgcc/chunk/prop/scarecrow/scarecrow3.tscn" id="19_2omwy"] [ext_resource type="PackedScene" uid="uid://dl8jd3q4wrxq2" path="res://tgcc/chunk/prop/lantern/lantern_1.tscn" id="20_mxrv1"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="21_ou1i6"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="21_ou1i6"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="22_vmvvd"] [ext_resource type="ArrayMesh" uid="uid://c2tkniimk7ty1" path="res://tgcc/chunk/prop/fields/potato/potato.res" id="23_gottn"] [ext_resource type="ArrayMesh" uid="uid://3xdihj6bgthr" path="res://tgcc/chunk/prop/fields/carrot/carrot.res" id="24_ipx6q"] diff --git a/tgcc/chunk/countryside/scene/fields/river/chunk_river_tea_curve_3.tscn b/tgcc/chunk/countryside/scene/fields/river/chunk_river_tea_curve_3.tscn index 1e7a257..77e8d01 100644 --- a/tgcc/chunk/countryside/scene/fields/river/chunk_river_tea_curve_3.tscn +++ b/tgcc/chunk/countryside/scene/fields/river/chunk_river_tea_curve_3.tscn @@ -16,7 +16,7 @@ [ext_resource type="PackedScene" uid="uid://chhdorj82bkus" path="res://tgcc/chunk/prop/scarecrow/scarecrow2.tscn" id="14_h3v7q"] [ext_resource type="PackedScene" uid="uid://dn2b3f3nr6btn" path="res://tgcc/chunk/prop/scarecrow/scarecrow3.tscn" id="15_nn5oe"] [ext_resource type="PackedScene" uid="uid://cn2n7ehlt6hya" path="res://tgcc/chunk/prop/empty.tscn" id="16_d0m4r"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="17_wqfkh"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="17_wqfkh"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="18_kg5xw"] [ext_resource type="ArrayMesh" uid="uid://c2tkniimk7ty1" path="res://tgcc/chunk/prop/fields/potato/potato.res" id="19_k1814"] [ext_resource type="ArrayMesh" uid="uid://3xdihj6bgthr" path="res://tgcc/chunk/prop/fields/carrot/carrot.res" id="20_bgi41"] diff --git a/tgcc/chunk/countryside/scene/fields/river/chunk_river_tea_end_1.tscn b/tgcc/chunk/countryside/scene/fields/river/chunk_river_tea_end_1.tscn index 8ed2fd4..7232ab8 100644 --- a/tgcc/chunk/countryside/scene/fields/river/chunk_river_tea_end_1.tscn +++ b/tgcc/chunk/countryside/scene/fields/river/chunk_river_tea_end_1.tscn @@ -16,7 +16,7 @@ [ext_resource type="PackedScene" uid="uid://chhdorj82bkus" path="res://tgcc/chunk/prop/scarecrow/scarecrow2.tscn" id="14_dn5r4"] [ext_resource type="PackedScene" uid="uid://dn2b3f3nr6btn" path="res://tgcc/chunk/prop/scarecrow/scarecrow3.tscn" id="15_klvxe"] [ext_resource type="PackedScene" uid="uid://cn2n7ehlt6hya" path="res://tgcc/chunk/prop/empty.tscn" id="16_euttc"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="17_im05e"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="17_im05e"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="18_ewohw"] [ext_resource type="ArrayMesh" uid="uid://c2tkniimk7ty1" path="res://tgcc/chunk/prop/fields/potato/potato.res" id="19_6ghpv"] [ext_resource type="ArrayMesh" uid="uid://3xdihj6bgthr" path="res://tgcc/chunk/prop/fields/carrot/carrot.res" id="20_irs5q"] diff --git a/tgcc/chunk/countryside/scene/fields/river/chunk_river_tea_mix1_1.tscn b/tgcc/chunk/countryside/scene/fields/river/chunk_river_tea_mix1_1.tscn index 723a974..47c66d8 100644 --- a/tgcc/chunk/countryside/scene/fields/river/chunk_river_tea_mix1_1.tscn +++ b/tgcc/chunk/countryside/scene/fields/river/chunk_river_tea_mix1_1.tscn @@ -18,7 +18,7 @@ [ext_resource type="Material" uid="uid://0x17mj2v807r" path="res://tgcc/chunk/prop/grass/grass_chunk_weeds2.tres" id="16_qjq1q"] [ext_resource type="Material" uid="uid://d3pui0oy51fcg" path="res://tgcc/chunk/prop/tea/Tea.tres" id="17_wmxsc"] [ext_resource type="Material" uid="uid://f5uoreickew7" path="res://tgcc/chunk/prop/flower/flower.tres" id="18_8qcc7"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="19_wjdly"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="19_wjdly"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="20_ghlbm"] [ext_resource type="PackedScene" uid="uid://b1gx0pkd4bwlq" path="res://tgcc/chunk/prop/vase/vase_5.tscn" id="21_0w3n5"] [ext_resource type="PackedScene" uid="uid://r720wolh815q" path="res://tgcc/chunk/prop/vase/vase_3.tscn" id="22_7ikaq"] diff --git a/tgcc/chunk/countryside/scene/fields/river/chunk_river_tea_mix3_1.tscn b/tgcc/chunk/countryside/scene/fields/river/chunk_river_tea_mix3_1.tscn index bdb8144..f633bce 100644 --- a/tgcc/chunk/countryside/scene/fields/river/chunk_river_tea_mix3_1.tscn +++ b/tgcc/chunk/countryside/scene/fields/river/chunk_river_tea_mix3_1.tscn @@ -15,7 +15,7 @@ [ext_resource type="Material" uid="uid://d3pui0oy51fcg" path="res://tgcc/chunk/prop/tea/Tea.tres" id="13_uj5v7"] [ext_resource type="Material" uid="uid://f5uoreickew7" path="res://tgcc/chunk/prop/flower/flower.tres" id="14_bu3i3"] [ext_resource type="PackedScene" uid="uid://l3inky72a783" path="res://tgcc/chunk/prop/well/stone/well_stone.tscn" id="15_yfaq8"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="16_v16dq"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="16_v16dq"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="17_kue3u"] [ext_resource type="ArrayMesh" uid="uid://c2tkniimk7ty1" path="res://tgcc/chunk/prop/fields/potato/potato.res" id="18_8h1lq"] [ext_resource type="ArrayMesh" uid="uid://3xdihj6bgthr" path="res://tgcc/chunk/prop/fields/carrot/carrot.res" id="19_mlo35"] diff --git a/tgcc/chunk/countryside/scene/fields/river/chunk_river_tea_mix6_1.tscn b/tgcc/chunk/countryside/scene/fields/river/chunk_river_tea_mix6_1.tscn index 77133e5..36ec0f1 100644 --- a/tgcc/chunk/countryside/scene/fields/river/chunk_river_tea_mix6_1.tscn +++ b/tgcc/chunk/countryside/scene/fields/river/chunk_river_tea_mix6_1.tscn @@ -19,7 +19,7 @@ [ext_resource type="PackedScene" uid="uid://dn2b3f3nr6btn" path="res://tgcc/chunk/prop/scarecrow/scarecrow3.tscn" id="17_5kkep"] [ext_resource type="PackedScene" uid="uid://cn2n7ehlt6hya" path="res://tgcc/chunk/prop/empty.tscn" id="18_dml8u"] [ext_resource type="PackedScene" uid="uid://8i4owd40xg1j" path="res://tgcc/chunk/prop/sign/scene/wood_sign.tscn" id="19_nlvd5"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="20_20wts"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="20_20wts"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="21_lsuyx"] [ext_resource type="ArrayMesh" uid="uid://c2tkniimk7ty1" path="res://tgcc/chunk/prop/fields/potato/potato.res" id="22_bsxha"] [ext_resource type="PackedScene" uid="uid://umwfewa74elg" path="res://tgcc/chunk/prop/fields/field_m.tscn" id="23_s7urm"] diff --git a/tgcc/chunk/countryside/scene/rice/chunk_country_corner_02.tscn b/tgcc/chunk/countryside/scene/rice/chunk_country_corner_02.tscn index a96104f..4168b59 100644 --- a/tgcc/chunk/countryside/scene/rice/chunk_country_corner_02.tscn +++ b/tgcc/chunk/countryside/scene/rice/chunk_country_corner_02.tscn @@ -17,7 +17,7 @@ [ext_resource type="PackedScene" uid="uid://cite22mi6obpl" path="res://tgcc/chunk/prop/shrine/shrine_1.tscn" id="16_newgk"] [ext_resource type="PackedScene" uid="uid://dl8jd3q4wrxq2" path="res://tgcc/chunk/prop/lantern/lantern_1.tscn" id="17_lgi3t"] [ext_resource type="Script" uid="uid://772g681sfkme" path="res://tgcc/chunk/prop/rice/rice.gd" id="18_j2pf2"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="19_sy0g8"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="19_sy0g8"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="20_yidf6"] [sub_resource type="PlaneMesh" id="PlaneMesh_wt3n1"] diff --git a/tgcc/chunk/countryside/scene/rice/chunk_country_cross_3_01.tscn b/tgcc/chunk/countryside/scene/rice/chunk_country_cross_3_01.tscn index 6b81fed..d521504 100644 --- a/tgcc/chunk/countryside/scene/rice/chunk_country_cross_3_01.tscn +++ b/tgcc/chunk/countryside/scene/rice/chunk_country_cross_3_01.tscn @@ -24,7 +24,7 @@ [ext_resource type="PackedScene" uid="uid://bxjjgsgc2rrk5" path="res://tgcc/chunk/prop/vending machine/vending_machine_3.tscn" id="23_aebao"] [ext_resource type="PackedScene" uid="uid://cxpuiwgn41ejy" path="res://tgcc/chunk/prop/shrine rocks/shrine_rocks.tscn" id="24_13g36"] [ext_resource type="Shader" uid="uid://cs0xl7pc6e26h" path="res://core/daynight/tree_leaves.gdshader" id="25_t1yk2"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="26_j3s3y"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="26_j3s3y"] [ext_resource type="Script" uid="uid://772g681sfkme" path="res://tgcc/chunk/prop/rice/rice.gd" id="26_xep74"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="27_68rvq"] diff --git a/tgcc/chunk/countryside/scene/rice/chunk_country_cross_3_02.tscn b/tgcc/chunk/countryside/scene/rice/chunk_country_cross_3_02.tscn index 65056ae..4e1afba 100644 --- a/tgcc/chunk/countryside/scene/rice/chunk_country_cross_3_02.tscn +++ b/tgcc/chunk/countryside/scene/rice/chunk_country_cross_3_02.tscn @@ -37,7 +37,7 @@ [ext_resource type="PackedScene" uid="uid://b53eql8vsisae" path="res://tgcc/chunk/prop/vase/vase_2.tscn" id="36_kx3bt"] [ext_resource type="PackedScene" uid="uid://bllge1erdtn05" path="res://tgcc/chunk/prop/vase/vase_1.tscn" id="37_wv663"] [ext_resource type="Script" uid="uid://772g681sfkme" path="res://tgcc/chunk/prop/rice/rice.gd" id="38_01xxy"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="38_lu054"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="38_lu054"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="39_c1o47"] [sub_resource type="PlaneMesh" id="PlaneMesh_kiycf"] diff --git a/tgcc/chunk/countryside/scene/rice/chunk_country_cross_3_03.tscn b/tgcc/chunk/countryside/scene/rice/chunk_country_cross_3_03.tscn index 84d72e2..278411f 100644 --- a/tgcc/chunk/countryside/scene/rice/chunk_country_cross_3_03.tscn +++ b/tgcc/chunk/countryside/scene/rice/chunk_country_cross_3_03.tscn @@ -36,7 +36,7 @@ [ext_resource type="PackedScene" uid="uid://b53eql8vsisae" path="res://tgcc/chunk/prop/vase/vase_2.tscn" id="35_jwe44"] [ext_resource type="PackedScene" uid="uid://c058662vbd6ey" path="res://tgcc/chunk/prop/tree/tree_03/tree_03.tscn" id="36_g53bu"] [ext_resource type="PackedScene" uid="uid://bklpig8fmtajl" path="res://tgcc/chunk/prop/climax/climax_2.tscn" id="37_nluj1"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="37_oj7t5"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="37_oj7t5"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="38_tdqxj"] [sub_resource type="ShaderMaterial" id="ShaderMaterial_en6je"] diff --git a/tgcc/chunk/countryside/scene/rice/chunk_country_end_01.tscn b/tgcc/chunk/countryside/scene/rice/chunk_country_end_01.tscn index 786a7ee..cec9898 100644 --- a/tgcc/chunk/countryside/scene/rice/chunk_country_end_01.tscn +++ b/tgcc/chunk/countryside/scene/rice/chunk_country_end_01.tscn @@ -33,7 +33,7 @@ [ext_resource type="PackedScene" uid="uid://b53eql8vsisae" path="res://tgcc/chunk/prop/vase/vase_2.tscn" id="32_ccpou"] [ext_resource type="PackedScene" uid="uid://bllge1erdtn05" path="res://tgcc/chunk/prop/vase/vase_1.tscn" id="33_3efye"] [ext_resource type="Script" uid="uid://772g681sfkme" path="res://tgcc/chunk/prop/rice/rice.gd" id="34_u3dbq"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="34_wc4rw"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="34_wc4rw"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="35_4bwvb"] [sub_resource type="PlaneMesh" id="PlaneMesh_7tu84"] diff --git a/tgcc/chunk/countryside/scene/rice/chunk_country_end_02.tscn b/tgcc/chunk/countryside/scene/rice/chunk_country_end_02.tscn index 4e4129d..4fe86dd 100644 --- a/tgcc/chunk/countryside/scene/rice/chunk_country_end_02.tscn +++ b/tgcc/chunk/countryside/scene/rice/chunk_country_end_02.tscn @@ -27,7 +27,7 @@ [ext_resource type="PackedScene" uid="uid://b5fhktgyjcxhn" path="res://tgcc/chunk/prop/sign/scene/sign_4.tscn" id="26_2lril"] [ext_resource type="PackedScene" uid="uid://swbs2s3libd3" path="res://tgcc/chunk/prop/sign/scene/sign_3.tscn" id="27_kbqvo"] [ext_resource type="Script" uid="uid://772g681sfkme" path="res://tgcc/chunk/prop/rice/rice.gd" id="28_ot3ss"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="29_6fkgn"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="29_6fkgn"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="30_wwn6n"] [sub_resource type="PlaneMesh" id="PlaneMesh_xdgj3"] diff --git a/tgcc/chunk/countryside/scene/rice/chunk_country_straight_01.tscn b/tgcc/chunk/countryside/scene/rice/chunk_country_straight_01.tscn index d6e2d45..d11f285 100644 --- a/tgcc/chunk/countryside/scene/rice/chunk_country_straight_01.tscn +++ b/tgcc/chunk/countryside/scene/rice/chunk_country_straight_01.tscn @@ -25,7 +25,7 @@ [ext_resource type="PackedScene" uid="uid://eymqqkalqpsc" path="res://tgcc/chunk/prop/shrine/shrine_2.tscn" id="24_8nsq5"] [ext_resource type="PackedScene" uid="uid://cite22mi6obpl" path="res://tgcc/chunk/prop/shrine/shrine_1.tscn" id="25_8nsq5"] [ext_resource type="PackedScene" uid="uid://cqsp8pai6vw22" path="res://tgcc/chunk/prop/climax/climax_1.tscn" id="26_bnwyx"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="26_wekrh"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="26_wekrh"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="27_eqrtf"] [sub_resource type="PlaneMesh" id="PlaneMesh_g6h4y"] diff --git a/tgcc/chunk/countryside/scene/rice/chunk_country_straight_02.tscn b/tgcc/chunk/countryside/scene/rice/chunk_country_straight_02.tscn index db0e31b..135d555 100644 --- a/tgcc/chunk/countryside/scene/rice/chunk_country_straight_02.tscn +++ b/tgcc/chunk/countryside/scene/rice/chunk_country_straight_02.tscn @@ -40,7 +40,7 @@ [ext_resource type="PackedScene" uid="uid://c058662vbd6ey" path="res://tgcc/chunk/prop/tree/tree_03/tree_03.tscn" id="38_dd1a0"] [ext_resource type="PackedScene" uid="uid://dqgn3sucsr4t5" path="res://tgcc/chunk/prop/vehicle/bike/bike.tscn" id="39_ha75m"] [ext_resource type="Script" uid="uid://772g681sfkme" path="res://tgcc/chunk/prop/rice/rice.gd" id="40_oifgi"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="41_du1wi"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="41_du1wi"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="42_oumph"] [sub_resource type="ShaderMaterial" id="ShaderMaterial_q2s76"] diff --git a/tgcc/chunk/countryside/scene/rice/chunk_country_straight_03.tscn b/tgcc/chunk/countryside/scene/rice/chunk_country_straight_03.tscn index d0cc5e0..21bde59 100644 --- a/tgcc/chunk/countryside/scene/rice/chunk_country_straight_03.tscn +++ b/tgcc/chunk/countryside/scene/rice/chunk_country_straight_03.tscn @@ -19,7 +19,7 @@ [ext_resource type="PackedScene" uid="uid://chhdorj82bkus" path="res://tgcc/chunk/prop/scarecrow/scarecrow2.tscn" id="17_a0gn5"] [ext_resource type="PackedScene" uid="uid://3esmv2ut0o75" path="res://tgcc/chunk/prop/vending machine/vending_machine_2.tscn" id="17_gable"] [ext_resource type="PackedScene" uid="uid://dn2b3f3nr6btn" path="res://tgcc/chunk/prop/scarecrow/scarecrow3.tscn" id="18_e3c12"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="19_x0mh1"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="19_x0mh1"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="20_ctayx"] [ext_resource type="PackedScene" uid="uid://dl8jd3q4wrxq2" path="res://tgcc/chunk/prop/lantern/lantern_1.tscn" id="21_gable"] [ext_resource type="Script" uid="uid://772g681sfkme" path="res://tgcc/chunk/prop/rice/rice.gd" id="22_4ohjs"] diff --git a/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_cross_1.tscn b/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_cross_1.tscn index 2a679ce..e477fa8 100644 --- a/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_cross_1.tscn +++ b/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_cross_1.tscn @@ -17,7 +17,7 @@ [ext_resource type="Material" uid="uid://dbepc80w602ce" path="res://tgcc/chunk/material/wood_bridge.tres" id="8_mlqo1"] [ext_resource type="Material" uid="uid://f5uoreickew7" path="res://tgcc/chunk/prop/flower/flower.tres" id="9_m21ki"] [ext_resource type="PackedScene" uid="uid://bxjjgsgc2rrk5" path="res://tgcc/chunk/prop/vending machine/vending_machine_3.tscn" id="18_8d4ka"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="18_n0c1d"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="18_n0c1d"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="19_j28u5"] [ext_resource type="PackedScene" uid="uid://bxuhubp1ug6j4" path="res://tgcc/chunk/prop/vase/vase_4.tscn" id="20_j28u5"] diff --git a/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_cross_2.tscn b/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_cross_2.tscn index 7fabd9b..d07a75b 100644 --- a/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_cross_2.tscn +++ b/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_cross_2.tscn @@ -21,7 +21,7 @@ [ext_resource type="PackedScene" uid="uid://c058662vbd6ey" path="res://tgcc/chunk/prop/tree/tree_03/tree_03.tscn" id="20_e8uks"] [ext_resource type="PackedScene" uid="uid://cqsp8pai6vw22" path="res://tgcc/chunk/prop/climax/climax_1.tscn" id="21_qaqsl"] [ext_resource type="PackedScene" uid="uid://bxuhubp1ug6j4" path="res://tgcc/chunk/prop/vase/vase_4.tscn" id="22_wmfvl"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="23_4e4me"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="23_4e4me"] [ext_resource type="PackedScene" uid="uid://r720wolh815q" path="res://tgcc/chunk/prop/vase/vase_3.tscn" id="23_f0wug"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="24_3y7hw"] diff --git a/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_curve_2.tscn b/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_curve_2.tscn index c4db00b..b5d5047 100644 --- a/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_curve_2.tscn +++ b/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_curve_2.tscn @@ -8,7 +8,7 @@ [ext_resource type="Material" uid="uid://fnjxocmx16b7" path="res://tgcc/chunk/prop/grass/grass_chunk.tres" id="5_6sa8p"] [ext_resource type="Material" uid="uid://bjrb33qwp1p43" path="res://tgcc/chunk/prop/grass/grass_chunk_weeds.tres" id="6_pq6lx"] [ext_resource type="Material" uid="uid://0x17mj2v807r" path="res://tgcc/chunk/prop/grass/grass_chunk_weeds2.tres" id="7_2tbgc"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="9_88mg0"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="9_88mg0"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="10_02kgy"] [sub_resource type="PlaneMesh" id="PlaneMesh_yaq06"] diff --git a/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_curve_3.tscn b/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_curve_3.tscn index b31448b..6f126d8 100644 --- a/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_curve_3.tscn +++ b/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_curve_3.tscn @@ -17,7 +17,7 @@ [ext_resource type="PackedScene" uid="uid://dn2b3f3nr6btn" path="res://tgcc/chunk/prop/scarecrow/scarecrow3.tscn" id="16_fpiva"] [ext_resource type="PackedScene" uid="uid://cn2n7ehlt6hya" path="res://tgcc/chunk/prop/empty.tscn" id="17_sxbxx"] [ext_resource type="Script" uid="uid://772g681sfkme" path="res://tgcc/chunk/prop/rice/rice.gd" id="18_327ra"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="18_v1kan"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="18_v1kan"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="19_0smwl"] [sub_resource type="PlaneMesh" id="PlaneMesh_bo133"] diff --git a/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_end_1.tscn b/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_end_1.tscn index 74cc202..04ccb4c 100644 --- a/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_end_1.tscn +++ b/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_end_1.tscn @@ -17,7 +17,7 @@ [ext_resource type="PackedScene" uid="uid://dn2b3f3nr6btn" path="res://tgcc/chunk/prop/scarecrow/scarecrow3.tscn" id="16_brr4k"] [ext_resource type="Script" uid="uid://772g681sfkme" path="res://tgcc/chunk/prop/rice/rice.gd" id="17_32ccx"] [ext_resource type="PackedScene" uid="uid://cn2n7ehlt6hya" path="res://tgcc/chunk/prop/empty.tscn" id="17_em82r"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="18_50la4"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="18_50la4"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="19_4l8yr"] [sub_resource type="PlaneMesh" id="PlaneMesh_tf5mu"] diff --git a/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_mix1_1.tscn b/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_mix1_1.tscn index 9546ed8..50899eb 100644 --- a/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_mix1_1.tscn +++ b/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_mix1_1.tscn @@ -19,7 +19,7 @@ [ext_resource type="Material" uid="uid://f5uoreickew7" path="res://tgcc/chunk/prop/flower/flower.tres" id="12_0xjwt"] [ext_resource type="Material" uid="uid://d37iugof887py" path="res://tgcc/chunk/material/water_river.tres" id="12_nfiu6"] [ext_resource type="Script" uid="uid://772g681sfkme" path="res://tgcc/chunk/prop/rice/rice.gd" id="19_8n7oe"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="20_18bt0"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="20_18bt0"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="21_f3lbw"] [ext_resource type="PackedScene" uid="uid://b1gx0pkd4bwlq" path="res://tgcc/chunk/prop/vase/vase_5.tscn" id="22_88hom"] [ext_resource type="PackedScene" uid="uid://r720wolh815q" path="res://tgcc/chunk/prop/vase/vase_3.tscn" id="23_2ky3p"] diff --git a/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_mix2_1.tscn b/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_mix2_1.tscn index 78de189..f7753b2 100644 --- a/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_mix2_1.tscn +++ b/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_mix2_1.tscn @@ -28,7 +28,7 @@ [ext_resource type="PackedScene" uid="uid://eymqqkalqpsc" path="res://tgcc/chunk/prop/shrine/shrine_2.tscn" id="27_cernu"] [ext_resource type="PackedScene" uid="uid://c6lh23yhi330a" path="res://tgcc/chunk/prop/tenda noren/tenda2.tscn" id="28_2y8jp"] [ext_resource type="PackedScene" uid="uid://b1knnmp0vms32" path="res://tgcc/chunk/prop/lantern/lantern_2.tscn" id="29_6ovau"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="29_w0wql"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="29_w0wql"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="30_2vk2l"] [sub_resource type="PlaneMesh" id="PlaneMesh_tbfcp"] diff --git a/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_mix3_1.tscn b/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_mix3_1.tscn index c2e19b7..01cdfcf 100644 --- a/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_mix3_1.tscn +++ b/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_mix3_1.tscn @@ -16,7 +16,7 @@ [ext_resource type="Material" uid="uid://d37iugof887py" path="res://tgcc/chunk/material/water_river.tres" id="8_rc623"] [ext_resource type="PackedScene" uid="uid://l3inky72a783" path="res://tgcc/chunk/prop/well/stone/well_stone.tscn" id="16_7qcx4"] [ext_resource type="Script" uid="uid://772g681sfkme" path="res://tgcc/chunk/prop/rice/rice.gd" id="17_0xvx5"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="17_j7ia6"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="17_j7ia6"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="18_ijr7c"] [sub_resource type="PlaneMesh" id="PlaneMesh_4bk23"] diff --git a/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_mix6_1.tscn b/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_mix6_1.tscn index 9b7f059..51ad4ae 100644 --- a/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_mix6_1.tscn +++ b/tgcc/chunk/countryside/scene/rice/river/scene/chunk_river_mix6_1.tscn @@ -20,7 +20,7 @@ [ext_resource type="PackedScene" uid="uid://cn2n7ehlt6hya" path="res://tgcc/chunk/prop/empty.tscn" id="19_an6tn"] [ext_resource type="PackedScene" uid="uid://8i4owd40xg1j" path="res://tgcc/chunk/prop/sign/scene/wood_sign.tscn" id="20_0mp3a"] [ext_resource type="Script" uid="uid://772g681sfkme" path="res://tgcc/chunk/prop/rice/rice.gd" id="21_2fq01"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="21_jrl2k"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="21_jrl2k"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="22_csjqx"] [sub_resource type="PlaneMesh" id="PlaneMesh_pde1d"] diff --git a/tgcc/chunk/countryside/scene/tea/chunk_country_tea_cross_3_01.tscn b/tgcc/chunk/countryside/scene/tea/chunk_country_tea_cross_3_01.tscn index eb8907d..7641ca9 100644 --- a/tgcc/chunk/countryside/scene/tea/chunk_country_tea_cross_3_01.tscn +++ b/tgcc/chunk/countryside/scene/tea/chunk_country_tea_cross_3_01.tscn @@ -24,7 +24,7 @@ [ext_resource type="PackedScene" uid="uid://bxjjgsgc2rrk5" path="res://tgcc/chunk/prop/vending machine/vending_machine_3.tscn" id="22_dv5ls"] [ext_resource type="PackedScene" uid="uid://cxpuiwgn41ejy" path="res://tgcc/chunk/prop/shrine rocks/shrine_rocks.tscn" id="23_65hra"] [ext_resource type="PackedScene" uid="uid://c2gf34c3w0ex8" path="res://tgcc/chunk/prop/tea/tea_small.tscn" id="26_kbjtd"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="26_tfoo3"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="26_tfoo3"] [ext_resource type="PackedScene" uid="uid://b1pi0oupox62w" path="res://tgcc/chunk/prop/tea/tea_medium_2.tscn" id="27_b3mp4"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="27_de7yg"] diff --git a/tgcc/chunk/countryside/scene/tea/chunk_country_tea_cross_3_02.tscn b/tgcc/chunk/countryside/scene/tea/chunk_country_tea_cross_3_02.tscn index c3eadca..cb8add3 100644 --- a/tgcc/chunk/countryside/scene/tea/chunk_country_tea_cross_3_02.tscn +++ b/tgcc/chunk/countryside/scene/tea/chunk_country_tea_cross_3_02.tscn @@ -36,7 +36,7 @@ [ext_resource type="PackedScene" uid="uid://b1gx0pkd4bwlq" path="res://tgcc/chunk/prop/vase/vase_5.tscn" id="34_d22t6"] [ext_resource type="PackedScene" uid="uid://b53eql8vsisae" path="res://tgcc/chunk/prop/vase/vase_2.tscn" id="35_bxcq6"] [ext_resource type="PackedScene" uid="uid://bllge1erdtn05" path="res://tgcc/chunk/prop/vase/vase_1.tscn" id="36_7vot3"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="38_3ba4g"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="38_3ba4g"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="39_gd0rp"] [ext_resource type="PackedScene" uid="uid://c2gf34c3w0ex8" path="res://tgcc/chunk/prop/tea/tea_small.tscn" id="39_uf36e"] [ext_resource type="PackedScene" uid="uid://lfopd2hxhki4" path="res://tgcc/chunk/prop/tea/tea_medium.tscn" id="40_vqqgt"] diff --git a/tgcc/chunk/countryside/scene/tea/chunk_country_tea_end_01.tscn b/tgcc/chunk/countryside/scene/tea/chunk_country_tea_end_01.tscn index 7d8b581..de2e2a6 100644 --- a/tgcc/chunk/countryside/scene/tea/chunk_country_tea_end_01.tscn +++ b/tgcc/chunk/countryside/scene/tea/chunk_country_tea_end_01.tscn @@ -32,7 +32,7 @@ [ext_resource type="PackedScene" uid="uid://r720wolh815q" path="res://tgcc/chunk/prop/vase/vase_3.tscn" id="30_4m4ul"] [ext_resource type="PackedScene" uid="uid://b53eql8vsisae" path="res://tgcc/chunk/prop/vase/vase_2.tscn" id="31_cq2dy"] [ext_resource type="PackedScene" uid="uid://bllge1erdtn05" path="res://tgcc/chunk/prop/vase/vase_1.tscn" id="32_lk586"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="34_koe58"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="34_koe58"] [ext_resource type="PackedScene" uid="uid://bhr4dfa48ne6c" path="res://tgcc/chunk/prop/tea/tea_big.tscn" id="35_4p52g"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="35_lpasc"] diff --git a/tgcc/chunk/countryside/scene/tea/chunk_country_tea_straight_02.tscn b/tgcc/chunk/countryside/scene/tea/chunk_country_tea_straight_02.tscn index 5ed4be7..cbe3e48 100644 --- a/tgcc/chunk/countryside/scene/tea/chunk_country_tea_straight_02.tscn +++ b/tgcc/chunk/countryside/scene/tea/chunk_country_tea_straight_02.tscn @@ -38,7 +38,7 @@ [ext_resource type="PackedScene" uid="uid://bllge1erdtn05" path="res://tgcc/chunk/prop/vase/vase_1.tscn" id="37_5k3bu"] [ext_resource type="PackedScene" uid="uid://c058662vbd6ey" path="res://tgcc/chunk/prop/tree/tree_03/tree_03.tscn" id="38_ns1o1"] [ext_resource type="PackedScene" uid="uid://dqgn3sucsr4t5" path="res://tgcc/chunk/prop/vehicle/bike/bike.tscn" id="39_l5qi1"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="41_om0vm"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="41_om0vm"] [ext_resource type="PackedScene" uid="uid://lfopd2hxhki4" path="res://tgcc/chunk/prop/tea/tea_medium.tscn" id="41_xba2n"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="42_mo63b"] diff --git a/tgcc/chunk/countryside/scene/tea/chunk_country_tea_straight_03.tscn b/tgcc/chunk/countryside/scene/tea/chunk_country_tea_straight_03.tscn index 8aefc94..f152053 100644 --- a/tgcc/chunk/countryside/scene/tea/chunk_country_tea_straight_03.tscn +++ b/tgcc/chunk/countryside/scene/tea/chunk_country_tea_straight_03.tscn @@ -20,7 +20,7 @@ [ext_resource type="PackedScene" uid="uid://chhdorj82bkus" path="res://tgcc/chunk/prop/scarecrow/scarecrow2.tscn" id="18_y60gs"] [ext_resource type="PackedScene" uid="uid://dn2b3f3nr6btn" path="res://tgcc/chunk/prop/scarecrow/scarecrow3.tscn" id="19_ftiqv"] [ext_resource type="PackedScene" uid="uid://dl8jd3q4wrxq2" path="res://tgcc/chunk/prop/lantern/lantern_1.tscn" id="20_pxcxj"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="22_0marb"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="22_0marb"] [ext_resource type="PackedScene" uid="uid://bhr4dfa48ne6c" path="res://tgcc/chunk/prop/tea/tea_big.tscn" id="23_kcfyc"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="23_sgw05"] [ext_resource type="PackedScene" uid="uid://lfopd2hxhki4" path="res://tgcc/chunk/prop/tea/tea_medium.tscn" id="24_yvxuf"] diff --git a/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_curve_3.tscn b/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_curve_3.tscn index d7ea62d..4cb5bad 100644 --- a/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_curve_3.tscn +++ b/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_curve_3.tscn @@ -16,7 +16,7 @@ [ext_resource type="PackedScene" uid="uid://chhdorj82bkus" path="res://tgcc/chunk/prop/scarecrow/scarecrow2.tscn" id="14_ja5km"] [ext_resource type="PackedScene" uid="uid://dn2b3f3nr6btn" path="res://tgcc/chunk/prop/scarecrow/scarecrow3.tscn" id="15_8bt63"] [ext_resource type="PackedScene" uid="uid://cn2n7ehlt6hya" path="res://tgcc/chunk/prop/empty.tscn" id="16_4a2a0"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="18_p2rf7"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="18_p2rf7"] [ext_resource type="PackedScene" uid="uid://bhr4dfa48ne6c" path="res://tgcc/chunk/prop/tea/tea_big.tscn" id="19_5lxs6"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="19_71ht2"] [ext_resource type="PackedScene" uid="uid://lfopd2hxhki4" path="res://tgcc/chunk/prop/tea/tea_medium.tscn" id="20_v5b08"] diff --git a/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_end_1.tscn b/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_end_1.tscn index 7eb1940..c049eb1 100644 --- a/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_end_1.tscn +++ b/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_end_1.tscn @@ -16,7 +16,7 @@ [ext_resource type="PackedScene" uid="uid://chhdorj82bkus" path="res://tgcc/chunk/prop/scarecrow/scarecrow2.tscn" id="14_ocfct"] [ext_resource type="PackedScene" uid="uid://dn2b3f3nr6btn" path="res://tgcc/chunk/prop/scarecrow/scarecrow3.tscn" id="15_mgkxu"] [ext_resource type="PackedScene" uid="uid://cn2n7ehlt6hya" path="res://tgcc/chunk/prop/empty.tscn" id="16_44tdn"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="18_j5nl8"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="18_j5nl8"] [ext_resource type="PackedScene" uid="uid://bhr4dfa48ne6c" path="res://tgcc/chunk/prop/tea/tea_big.tscn" id="19_2cum8"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="19_tyecb"] [ext_resource type="PackedScene" uid="uid://lfopd2hxhki4" path="res://tgcc/chunk/prop/tea/tea_medium.tscn" id="20_sc8st"] diff --git a/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_mix1_1.tscn b/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_mix1_1.tscn index e9ee9c7..d814b6f 100644 --- a/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_mix1_1.tscn +++ b/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_mix1_1.tscn @@ -18,7 +18,7 @@ [ext_resource type="Material" uid="uid://0x17mj2v807r" path="res://tgcc/chunk/prop/grass/grass_chunk_weeds2.tres" id="16_kct73"] [ext_resource type="Material" uid="uid://d3pui0oy51fcg" path="res://tgcc/chunk/prop/tea/Tea.tres" id="17_kwwhh"] [ext_resource type="Material" uid="uid://f5uoreickew7" path="res://tgcc/chunk/prop/flower/flower.tres" id="18_d6uk3"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="20_bmnwi"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="20_bmnwi"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="21_o2pld"] [ext_resource type="PackedScene" uid="uid://b1gx0pkd4bwlq" path="res://tgcc/chunk/prop/vase/vase_5.tscn" id="22_01dqq"] [ext_resource type="PackedScene" uid="uid://r720wolh815q" path="res://tgcc/chunk/prop/vase/vase_3.tscn" id="23_vpj81"] diff --git a/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_mix3_1.tscn b/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_mix3_1.tscn index 972ca6d..c934d2e 100644 --- a/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_mix3_1.tscn +++ b/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_mix3_1.tscn @@ -15,7 +15,7 @@ [ext_resource type="Material" uid="uid://d3pui0oy51fcg" path="res://tgcc/chunk/prop/tea/Tea.tres" id="13_nommn"] [ext_resource type="Material" uid="uid://f5uoreickew7" path="res://tgcc/chunk/prop/flower/flower.tres" id="14_q0i5s"] [ext_resource type="PackedScene" uid="uid://l3inky72a783" path="res://tgcc/chunk/prop/well/stone/well_stone.tscn" id="15_g3y08"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="17_nhjsa"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="17_nhjsa"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="18_ds4sf"] [ext_resource type="PackedScene" uid="uid://b1pi0oupox62w" path="res://tgcc/chunk/prop/tea/tea_medium_2.tscn" id="18_pvs0r"] [ext_resource type="PackedScene" uid="uid://lfopd2hxhki4" path="res://tgcc/chunk/prop/tea/tea_medium.tscn" id="19_4gmp8"] diff --git a/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_mix6_1.tscn b/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_mix6_1.tscn index 8de8c45..697d1b0 100644 --- a/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_mix6_1.tscn +++ b/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_mix6_1.tscn @@ -19,7 +19,7 @@ [ext_resource type="PackedScene" uid="uid://dn2b3f3nr6btn" path="res://tgcc/chunk/prop/scarecrow/scarecrow3.tscn" id="17_1axen"] [ext_resource type="PackedScene" uid="uid://cn2n7ehlt6hya" path="res://tgcc/chunk/prop/empty.tscn" id="18_ijw7y"] [ext_resource type="PackedScene" uid="uid://8i4owd40xg1j" path="res://tgcc/chunk/prop/sign/scene/wood_sign.tscn" id="19_xtp1a"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="21_8xbcl"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="21_8xbcl"] [ext_resource type="PackedScene" uid="uid://lfopd2hxhki4" path="res://tgcc/chunk/prop/tea/tea_medium.tscn" id="22_1uu4y"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="22_lye5b"] diff --git a/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_straight_5.tscn b/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_straight_5.tscn index 2112de3..abc70fb 100644 --- a/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_straight_5.tscn +++ b/tgcc/chunk/countryside/scene/tea/river/chunk_river_tea_straight_5.tscn @@ -10,7 +10,7 @@ [ext_resource type="Material" uid="uid://fnjxocmx16b7" path="res://tgcc/chunk/prop/grass/grass_chunk.tres" id="8_ac7xf"] [ext_resource type="Material" uid="uid://0x17mj2v807r" path="res://tgcc/chunk/prop/grass/grass_chunk_weeds2.tres" id="9_i7s8b"] [ext_resource type="PackedScene" uid="uid://d12t04rs47jq3" path="res://tgcc/chunk/prop/tree/tree_01/tree_01.tscn" id="10_bhe86"] -[ext_resource type="ArrayMesh" uid="uid://doophefr873pt" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="11_u3nr5"] +[ext_resource type="ArrayMesh" uid="uid://bg5rfu7tyl3p8" path="res://tgcc/chunk/prop/tree/bambù/Bambu.res" id="11_u3nr5"] [ext_resource type="Script" uid="uid://cp1pb5dnuojg3" path="res://tgcc/chunk/prop/tree/bambù/bambu.gd" id="12_1s26c"] [ext_resource type="PackedScene" uid="uid://c2gf34c3w0ex8" path="res://tgcc/chunk/prop/tea/tea_small.tscn" id="13_oha7e"] diff --git a/tgcc/chunk/prop/tree/bambù/bambu.tscn b/tgcc/chunk/prop/tree/bambù/bambu.tscn index 4edfbf9..0c19c76 100644 --- a/tgcc/chunk/prop/tree/bambù/bambu.tscn +++ b/tgcc/chunk/prop/tree/bambù/bambu.tscn @@ -2,13 +2,8 @@ [ext_resource type="PackedScene" uid="uid://cbdgxbaa5prt3" path="res://tgcc/chunk/prop/tree/bambù/Bambu.fbx" id="1_rrnp2"] [ext_resource type="Material" uid="uid://b2tlen8e88l70" path="res://tgcc/chunk/prop/tree/bambù/Bambu.tres" id="2_r5ebk"] -[ext_resource type="Material" uid="uid://1bbbnb0w665f" path="res://tgcc/chunk/prop/tree/bambù/bambu.material" id="2_ul8mj"] [node name="Bambù" unique_id=514636059 instance=ExtResource("1_rrnp2")] -[node name="Foglie_001" parent="." index="0" unique_id=598949619] -cast_shadow = 0 -surface_material_override/0 = ExtResource("2_ul8mj") - [node name="bambù" parent="." index="1" unique_id=951122094] surface_material_override/0 = ExtResource("2_r5ebk")