8 lines
149 B
GDScript
8 lines
149 B
GDScript
extends Node2D
|
|
|
|
|
|
func play():
|
|
var tween = create_tween()
|
|
tween.tween_property(self, "modulate:a", 1.0, 0.5)
|
|
$AnimationPlayer.play("鬼差探头")
|