diff --git a/core/splash_screen/splash_screen.gd b/core/splash_screen/splash_screen.gd index 0104c93..8480df0 100644 --- a/core/splash_screen/splash_screen.gd +++ b/core/splash_screen/splash_screen.gd @@ -1,7 +1,7 @@ extends Control @export var main_menu_scene: PackedScene @export var display_time: float = 2.0 -@export var fade_in_time: float = 1.0 +@export var fade_in_time: float = 0.5 @onready var logo: Sprite2D = $ColorRect/JMPLogo func _ready() -> void: @@ -12,4 +12,6 @@ func _ready() -> void: tween.tween_property(logo, "modulate:a", 1.0, fade_in_time).set_trans(Tween.TRANS_SINE).set_ease(Tween.EASE_OUT) await get_tree().create_timer(display_time).timeout + #tween = create_tween() + #tween.tween_property(logo, "modulate:a", 0.0, fade_in_time).set_trans(Tween.TRANS_SINE).set_ease(Tween.EASE_OUT) SceneManager.change_scene_with_standard_fade(SceneConfig.SceneName.MAIN_MENU, 0.5) diff --git a/tgcc/chunk/prop/fields/carrot/carrot.res b/tgcc/chunk/prop/fields/carrot/carrot.res index 7ff895c..61a46da 100644 Binary files a/tgcc/chunk/prop/fields/carrot/carrot.res and b/tgcc/chunk/prop/fields/carrot/carrot.res differ