Material Box

Material Box

WEBデザイン & フリー素材

Godot - RichTextLabelのテキストの行数を取得する

Godot

GDScriptでRichTextLabelでテキストの行数を取得する方法とコード例です。


get_line_count()を利用してRichTextLabelテキストの行数を取得する事が可能です。
get_line_count()で取得可能な行数は、ノードのサイズなどにて表示が隠れている部分も含む全てです。

var label = RichTextLabel.new()
add_child(label)
label.global_position = Vector2(0, 0)
label.size = Vector2(200,200)
label.text = "get
Line
count"

# RichTextLabelでテキストの行数を取得する
var line = label.get_line_count()

print(line)
# 3

Godot

TitleGodot - RichTextLabelのテキストの行数を取得する

CategoryGodot

Created

Update

AuthorYousuke.U