0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

[Godot 4.2] 文字列を1文字ずつ表示する

Last updated at Posted at 2023-12-16

Tween を文字列に対して使います。

sample_code.gd
extends Label


func _ready():
	text = ""
	var tween = get_tree().create_tween()
	tween.tween_property(self, "text", "任意の文字列をTweenで表示する。", 1.0)

アニメーション機能 で線形補間をすることでも同様のことができます。
そのときに「この補完は試験的な機能です」みたいなことを言われる(スクショ撮り忘れた)ので、それは覚えておきましょう。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?