Godot4 出力ボトムパネルにprintで出力する文字数制限の変更

無料・軽快な 2D / 3D 用のゲームエンジン Godot Engine 4 で、デバッグに役立つ print 系のテキストを表示できる出力ボトムパネルに、一定数以上の文字を表示しようとした際に「output overflow, print less text!」というエラーメッセージが出た場合のプロジェクト設定による対処法を紹介します。

※ GodotEngine 4.3 を使用しています。.NET 版ではありません。
※スクリプトは自己責任でご使用ください。

長すぎる出力は途中までしか表示されません。

print 出力には制限があり、長すぎる print などによる出力は最後まで表示されない場合があります。

Godot4 長いテキストを出力するためのプロジェクト設定1

以下のスクリプトをルートノードに割り当てて、 F6 キーでこのシーンを実行すると、出力ボトムパネルに、下位の3つのノード群の配列のデータがテキストで出力されます。

extends Control

# Called when the node enters the scene tree for the first time.
func _ready():
	print("_ready : print_lower_nodes()")
	print_lower_nodes()
	return

## 下位のノード群を Pretty-Printing 形式で出力します。
## [param include_internal] は [Node.get_children] に渡す引数です。
## true を指定すると直下よりも下位のノード群も出力します。
## 参照: https://docs.godotengine.org/en/stable/classes/class_node.html#class-node-method-get-children
func print_lower_nodes(include_internal: bool = false) -> void:
	# 直下の下位ノードを配列に格納します。
	var lower_nodes: Array[Node] = []
	for lower_node in self.get_children(include_internal):
		lower_nodes.append(lower_node)
	# 直下の下位ノード群を独自の Pretty-Printing 形式で出力します。
	print(lower_nodes)
	print(ScUtil.to_pretty_print_string(lower_nodes))
	return

配列・辞書・オブジェクトなどの値をタブ・改行・カンマでテキストを整形して Print-Printing に出力する to_pretty_print_string 自作関数については以下の記事を参照してください。

結果として、出力ボトムパネルには1回の print で出力するはずのテキストは一部しか出力されず、最後に「output overflow, print less text!」と赤文字のエラーメッセージが表示されました。

Godot4 長いテキストを出力するためのプロジェクト設定2
			{
				"name": "Grow Direction",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "grow_,1",
				"usage": 256
			},
			{
				"name": "grow_horizontal[...]
  [output overflow, print less text!]
--- Debugging process stopped ---

この出力ボトムパネルの全内容をコピーして、テキストエディタ Mery で計測すると、33,016 文字( 1,748 行)であることがわかりました。

Godot4 長いテキストを出力するためのプロジェクト設定3

プロジェクト設定による対応

メニュー「プロジェクト」→「プロジェクト設定」で開いた「プロジェクト設定」ウィンドウの「一般」タブで、右上の「高度な設定」を有効にして、表示される設定項目を増やします。

左側のツリー「ネットワーク」→「制限」のページの「デバッガー」セクションの「1秒あたりの最大文字数(network/limits/debugger/max_chars_per_second)」の初期値 32768 から、10 倍の 327680 に変更します。
※出力する文字数が多くなると性能に影響がでる可能性があります。

Godot4 長いテキストを出力するためのプロジェクト設定4

変更した max_chars_per_second 項目は、デバッガーからの出力として送信できる最大文字数です。

int network/limits/debugger/max_chars_per_second = 32768 

Maximum number of characters allowed to send as output from the debugger. Over this value, content is dropped. This helps not to stall the debugger connection.

デバッガーからの出力として送信できる最大文字数。この値を超えると、コンテンツは削除されます。これは、デバッガ接続が停止しないようにするのに役立ちます。
ProjectSettings — Godot Engine (4.x)の日本語のドキュメント #max_chars_per_second と Google 翻訳

似た項目として max_queued_messages がありますが、今回は、エラーになった出力の文字数が 32768 に近かったことから、 max_chars_per_second を変更しました。

int network/limits/debugger/max_queued_messages = 2048 

Maximum number of messages in the debugger queue. Over this value, content is dropped. This helps to limit the debugger memory usage.

デバッガーキュー内のメッセージの最大数。この値を超えると、コンテンツは削除されます。これは、デバッガのメモリ使用量を制限するのに役立ちます。
ProjectSettings — Godot Engine (4.x)の日本語のドキュメント #max_queued_messages と Google 翻訳

プロジェクト設定を変更した後の出力結果

「プロジェクト設定」ウィンドウで「1秒あたりの最大文字数(network/limits/debugger/max_chars_per_second)」 を変更した後、もう一度、F6 キーでシーンを実行すると、print 関数に渡した全てのテキスト出力ボトムパネルに表示されました。エラーメッセージもありません。

Godot4 長いテキストを出力するためのプロジェクト設定5

出力ボトムパネルに出力された全てのテキストをコピーして、テキストエディタ Mery で計測すると 72,297 文字(3,824 行)表示されたことがわかりました。
先ほどの初期値 32768 文字よりも多い文字を1回の print 文で出力しようとしたために発生したエラーだったようです。

Godot4 長いテキストを出力するためのプロジェクト設定6

以下は、先ほどのシーンを実行した直後の出力ボトムパネルの全ての出力結果です。

[
	ButtonTweet (Button) {
		[
			{
				"name": "Node",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "Node",
				"usage": 128
			},
			{
				"name": "_import_path",
				"class_name": &"",
				"type": 22,
				"hint": 0,
				"hint_string": "",
				"usage": 10
			},
			{
				"name": "name",
				"class_name": &"",
				"type": 21,
				"hint": 0,
				"hint_string": "",
				"usage": 0
			},
			{
				"name": "unique_name_in_owner",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 2
			},
			{
				"name": "scene_file_path",
				"class_name": &"",
				"type": 4,
				"hint": 0,
				"hint_string": "",
				"usage": 0
			},
			{
				"name": "owner",
				"class_name": &"Node",
				"type": 24,
				"hint": 17,
				"hint_string": "Node",
				"usage": 0
			},
			{
				"name": "multiplayer",
				"class_name": &"MultiplayerAPI",
				"type": 24,
				"hint": 17,
				"hint_string": "MultiplayerAPI",
				"usage": 0
			},
			{
				"name": "Process",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "process_",
				"usage": 64
			},
			{
				"name": "process_mode",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Inherit,Pausable,When Paused,Always,Disabled",
				"usage": 6
			},
			{
				"name": "process_priority",
				"class_name": &"",
				"type": 2,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "process_physics_priority",
				"class_name": &"",
				"type": 2,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Thread Group",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "process_thread",
				"usage": 256
			},
			{
				"name": "process_thread_group",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Inherit,Main Thread,Sub Thread",
				"usage": 6
			},
			{
				"name": "process_thread_group_order",
				"class_name": &"",
				"type": 2,
				"hint": 0,
				"hint_string": "",
				"usage": 0
			},
			{
				"name": "process_thread_messages",
				"class_name": &"",
				"type": 2,
				"hint": 6,
				"hint_string": "Process,Physics Process",
				"usage": 0
			},
			{
				"name": "Physics Interpolation",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "physics_interpolation_",
				"usage": 64
			},
			{
				"name": "physics_interpolation_mode",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Inherit,On,Off",
				"usage": 6
			},
			{
				"name": "Auto Translate",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "auto_translate_",
				"usage": 64
			},
			{
				"name": "auto_translate_mode",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Inherit,Always,Disabled",
				"usage": 6
			},
			{
				"name": "Editor Description",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "editor_",
				"usage": 64
			},
			{
				"name": "editor_description",
				"class_name": &"",
				"type": 4,
				"hint": 18,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "CanvasItem",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "CanvasItem",
				"usage": 128
			},
			{
				"name": "Visibility",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "visible",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "modulate",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "self_modulate",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "show_behind_parent",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "top_level",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "clip_children",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Disabled,Clip Only,Clip + Draw",
				"usage": 6
			},
			{
				"name": "light_mask",
				"class_name": &"",
				"type": 2,
				"hint": 7,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "visibility_layer",
				"class_name": &"",
				"type": 2,
				"hint": 7,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Ordering",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "z_index",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-4096,4096,1",
				"usage": 6
			},
			{
				"name": "z_as_relative",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "y_sort_enabled",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Texture",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "texture_",
				"usage": 64
			},
			{
				"name": "texture_filter",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Inherit,Nearest,Linear,Nearest Mipmap,Linear Mipmap,Nearest Mipmap Anisotropic,Linear Mipmap Anisotropic",
				"usage": 6
			},
			{
				"name": "texture_repeat",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Inherit,Disabled,Enabled,Mirror",
				"usage": 6
			},
			{
				"name": "Material",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "material",
				"class_name": &"CanvasItemMaterial,ShaderMaterial",
				"type": 24,
				"hint": 17,
				"hint_string": "CanvasItemMaterial,ShaderMaterial",
				"usage": 6
			},
			{
				"name": "use_parent_material",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Control",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "Control",
				"usage": 128
			},
			{
				"name": "Layout",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "clip_contents",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "custom_minimum_size",
				"class_name": &"",
				"type": 5,
				"hint": 0,
				"hint_string": "suffix:px",
				"usage": 6
			},
			{
				"name": "layout_direction",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Inherited,Based on Locale,Left-to-Right,Right-to-Left",
				"usage": 6
			},
			{
				"name": "layout_mode",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Position,Anchors",
				"usage": 14
			},
			{
				"name": "anchors_preset",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Custom:-1,PresetFullRect:15,PresetTopLeft:0,PresetTopRight:1,PresetBottomRight:3,PresetBottomLeft:2,PresetCenterLeft:4,PresetCenterTop:5,PresetCenterRight:6,PresetCenterBottom:7,PresetCenter:8,PresetLeftWide:9,PresetTopWide:10,PresetRightWide:11,PresetBottomWide:12,PresetVCenterWide:13,PresetHCenterWide:14",
				"usage": 10
			},
			{
				"name": "Anchor Points",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "anchor_,1",
				"usage": 256
			},
			{
				"name": "anchor_left",
				"class_name": &"",
				"type": 3,
				"hint": 1,
				"hint_string": "0,1,0.001,or_less,or_greater",
				"usage": 2
			},
			{
				"name": "anchor_top",
				"class_name": &"",
				"type": 3,
				"hint": 1,
				"hint_string": "0,1,0.001,or_less,or_greater",
				"usage": 2
			},
			{
				"name": "anchor_right",
				"class_name": &"",
				"type": 3,
				"hint": 1,
				"hint_string": "0,1,0.001,or_less,or_greater",
				"usage": 2
			},
			{
				"name": "anchor_bottom",
				"class_name": &"",
				"type": 3,
				"hint": 1,
				"hint_string": "0,1,0.001,or_less,or_greater",
				"usage": 2
			},
			{
				"name": "Anchor Offsets",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "offset_,1",
				"usage": 256
			},
			{
				"name": "offset_left",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-4096,4096,suffix:px",
				"usage": 2
			},
			{
				"name": "offset_top",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-4096,4096,suffix:px",
				"usage": 2
			},
			{
				"name": "offset_right",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-4096,4096,suffix:px",
				"usage": 2
			},
			{
				"name": "offset_bottom",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-4096,4096,suffix:px",
				"usage": 2
			},
			{
				"name": "Grow Direction",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "grow_,1",
				"usage": 256
			},
			{
				"name": "grow_horizontal",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Left,Right,Both",
				"usage": 2
			},
			{
				"name": "grow_vertical",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Top,Bottom,Both",
				"usage": 2
			},
			{
				"name": "Transform",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 256
			},
			{
				"name": "size",
				"class_name": &"",
				"type": 5,
				"hint": 0,
				"hint_string": "suffix:px",
				"usage": 4
			},
			{
				"name": "position",
				"class_name": &"",
				"type": 5,
				"hint": 0,
				"hint_string": "suffix:px",
				"usage": 4
			},
			{
				"name": "global_position",
				"class_name": &"",
				"type": 5,
				"hint": 0,
				"hint_string": "suffix:px",
				"usage": 0
			},
			{
				"name": "rotation",
				"class_name": &"",
				"type": 3,
				"hint": 1,
				"hint_string": "-360,360,0.1,or_less,or_greater,radians_as_degrees",
				"usage": 6
			},
			{
				"name": "rotation_degrees",
				"class_name": &"",
				"type": 3,
				"hint": 0,
				"hint_string": "",
				"usage": 0
			},
			{
				"name": "scale",
				"class_name": &"",
				"type": 5,
				"hint": 5,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "pivot_offset",
				"class_name": &"",
				"type": 5,
				"hint": 0,
				"hint_string": "suffix:px",
				"usage": 6
			},
			{
				"name": "Container Sizing",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "size_flags_",
				"usage": 256
			},
			{
				"name": "size_flags_horizontal",
				"class_name": &"",
				"type": 2,
				"hint": 6,
				"hint_string": "Fill:1,Expand:2,Shrink Center:4,Shrink End:8",
				"usage": 2
			},
			{
				"name": "size_flags_vertical",
				"class_name": &"",
				"type": 2,
				"hint": 6,
				"hint_string": "Fill:1,Expand:2,Shrink Center:4,Shrink End:8",
				"usage": 2
			},
			{
				"name": "size_flags_stretch_ratio",
				"class_name": &"",
				"type": 3,
				"hint": 1,
				"hint_string": "0,20,0.01,or_greater",
				"usage": 2
			},
			{
				"name": "Localization",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "localize_numeral_system",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "auto_translate",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 0
			},
			{
				"name": "Tooltip",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "tooltip_",
				"usage": 64
			},
			{
				"name": "tooltip_text",
				"class_name": &"",
				"type": 4,
				"hint": 18,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Focus",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "focus_",
				"usage": 64
			},
			{
				"name": "focus_neighbor_left",
				"class_name": &"",
				"type": 22,
				"hint": 26,
				"hint_string": "Control",
				"usage": 6
			},
			{
				"name": "focus_neighbor_top",
				"class_name": &"",
				"type": 22,
				"hint": 26,
				"hint_string": "Control",
				"usage": 6
			},
			{
				"name": "focus_neighbor_right",
				"class_name": &"",
				"type": 22,
				"hint": 26,
				"hint_string": "Control",
				"usage": 6
			},
			{
				"name": "focus_neighbor_bottom",
				"class_name": &"",
				"type": 22,
				"hint": 26,
				"hint_string": "Control",
				"usage": 6
			},
			{
				"name": "focus_next",
				"class_name": &"",
				"type": 22,
				"hint": 26,
				"hint_string": "Control",
				"usage": 6
			},
			{
				"name": "focus_previous",
				"class_name": &"",
				"type": 22,
				"hint": 26,
				"hint_string": "Control",
				"usage": 6
			},
			{
				"name": "focus_mode",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "None,Click,All",
				"usage": 6
			},
			{
				"name": "Mouse",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "mouse_",
				"usage": 64
			},
			{
				"name": "mouse_filter",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Stop,Pass,Ignore",
				"usage": 6
			},
			{
				"name": "mouse_force_pass_scroll_events",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "mouse_default_cursor_shape",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Arrow,I-Beam,Pointing Hand,Cross,Wait,Busy,Drag,Can Drop,Forbidden,Vertical Resize,Horizontal Resize,Secondary Diagonal Resize,Main Diagonal Resize,Move,Vertical Split,Horizontal Split,Help",
				"usage": 6
			},
			{
				"name": "Input",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "shortcut_context",
				"class_name": &"",
				"type": 24,
				"hint": 34,
				"hint_string": "Node",
				"usage": 6
			},
			{
				"name": "Theme",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "theme_",
				"usage": 64
			},
			{
				"name": "theme",
				"class_name": &"Theme",
				"type": 24,
				"hint": 17,
				"hint_string": "Theme",
				"usage": 6
			},
			{
				"name": "theme_type_variation",
				"class_name": &"",
				"type": 4,
				"hint": 3,
				"hint_string": "FlatButton,",
				"usage": 6
			},
			{
				"name": "Theme Overrides",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "theme_override_",
				"usage": 64
			},
			{
				"name": "theme_override_styles/normal",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/normal_mirrored",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/pressed",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/pressed_mirrored",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/hover",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/hover_mirrored",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/hover_pressed",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/hover_pressed_mirrored",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/disabled",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/disabled_mirrored",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/focus",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_colors/font_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/font_focus_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/font_pressed_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/font_hover_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/font_hover_pressed_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/font_disabled_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_fonts/font",
				"class_name": &"Font",
				"type": 24,
				"hint": 17,
				"hint_string": "Font",
				"usage": 20
			},
			{
				"name": "theme_override_font_sizes/font_size",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "1,256,1,or_greater,suffix:px",
				"usage": 20
			},
			{
				"name": "theme_override_constants/outline_size",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-16384,16384",
				"usage": 20
			},
			{
				"name": "theme_override_colors/font_outline_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/icon_normal_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/icon_focus_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/icon_pressed_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/icon_hover_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/icon_hover_pressed_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/icon_disabled_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_icons/icon",
				"class_name": &"Texture2D",
				"type": 24,
				"hint": 17,
				"hint_string": "Texture2D",
				"usage": 20
			},
			{
				"name": "theme_override_constants/h_separation",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-16384,16384",
				"usage": 20
			},
			{
				"name": "theme_override_constants/icon_max_width",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-16384,16384",
				"usage": 20
			},
			{
				"name": "theme_override_constants/align_to_largest_stylebox",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-16384,16384",
				"usage": 20
			},
			{
				"name": "BaseButton",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "BaseButton",
				"usage": 128
			},
			{
				"name": "disabled",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "toggle_mode",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "button_pressed",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "action_mode",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Button Press,Button Release",
				"usage": 6
			},
			{
				"name": "button_mask",
				"class_name": &"",
				"type": 2,
				"hint": 6,
				"hint_string": "Mouse Left, Mouse Right, Mouse Middle",
				"usage": 6
			},
			{
				"name": "keep_pressed_outside",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "button_group",
				"class_name": &"ButtonGroup",
				"type": 24,
				"hint": 17,
				"hint_string": "ButtonGroup",
				"usage": 6
			},
			{
				"name": "Shortcut",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "shortcut",
				"class_name": &"Shortcut",
				"type": 24,
				"hint": 17,
				"hint_string": "Shortcut",
				"usage": 6
			},
			{
				"name": "shortcut_feedback",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "shortcut_in_tooltip",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Button",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "Button",
				"usage": 128
			},
			{
				"name": "text",
				"class_name": &"",
				"type": 4,
				"hint": 18,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "icon",
				"class_name": &"Texture2D",
				"type": 24,
				"hint": 17,
				"hint_string": "Texture2D",
				"usage": 6
			},
			{
				"name": "flat",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Text Behavior",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "alignment",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Left,Center,Right",
				"usage": 6
			},
			{
				"name": "text_overrun_behavior",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Trim Nothing,Trim Characters,Trim Words,Ellipsis,Word Ellipsis",
				"usage": 6
			},
			{
				"name": "autowrap_mode",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Off,Arbitrary,Word,Word (Smart)",
				"usage": 6
			},
			{
				"name": "clip_text",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Icon Behavior",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "icon_alignment",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Left,Center,Right",
				"usage": 6
			},
			{
				"name": "vertical_icon_alignment",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Top,Center,Bottom",
				"usage": 6
			},
			{
				"name": "expand_icon",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "BiDi",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "text_direction",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Auto,Left-to-Right,Right-to-Left,Inherited",
				"usage": 6
			},
			{
				"name": "language",
				"class_name": &"",
				"type": 4,
				"hint": 32,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "script",
				"class_name": &"Script",
				"type": 24,
				"hint": 17,
				"hint_string": "Script",
				"usage": 1048582
			}
		],
	},
	RichTextLabelURL (RichTextLabel) {
		[
			{
				"name": "Node",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "Node",
				"usage": 128
			},
			{
				"name": "_import_path",
				"class_name": &"",
				"type": 22,
				"hint": 0,
				"hint_string": "",
				"usage": 10
			},
			{
				"name": "name",
				"class_name": &"",
				"type": 21,
				"hint": 0,
				"hint_string": "",
				"usage": 0
			},
			{
				"name": "unique_name_in_owner",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 2
			},
			{
				"name": "scene_file_path",
				"class_name": &"",
				"type": 4,
				"hint": 0,
				"hint_string": "",
				"usage": 0
			},
			{
				"name": "owner",
				"class_name": &"Node",
				"type": 24,
				"hint": 17,
				"hint_string": "Node",
				"usage": 0
			},
			{
				"name": "multiplayer",
				"class_name": &"MultiplayerAPI",
				"type": 24,
				"hint": 17,
				"hint_string": "MultiplayerAPI",
				"usage": 0
			},
			{
				"name": "Process",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "process_",
				"usage": 64
			},
			{
				"name": "process_mode",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Inherit,Pausable,When Paused,Always,Disabled",
				"usage": 6
			},
			{
				"name": "process_priority",
				"class_name": &"",
				"type": 2,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "process_physics_priority",
				"class_name": &"",
				"type": 2,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Thread Group",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "process_thread",
				"usage": 256
			},
			{
				"name": "process_thread_group",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Inherit,Main Thread,Sub Thread",
				"usage": 6
			},
			{
				"name": "process_thread_group_order",
				"class_name": &"",
				"type": 2,
				"hint": 0,
				"hint_string": "",
				"usage": 0
			},
			{
				"name": "process_thread_messages",
				"class_name": &"",
				"type": 2,
				"hint": 6,
				"hint_string": "Process,Physics Process",
				"usage": 0
			},
			{
				"name": "Physics Interpolation",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "physics_interpolation_",
				"usage": 64
			},
			{
				"name": "physics_interpolation_mode",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Inherit,On,Off",
				"usage": 6
			},
			{
				"name": "Auto Translate",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "auto_translate_",
				"usage": 64
			},
			{
				"name": "auto_translate_mode",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Inherit,Always,Disabled",
				"usage": 6
			},
			{
				"name": "Editor Description",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "editor_",
				"usage": 64
			},
			{
				"name": "editor_description",
				"class_name": &"",
				"type": 4,
				"hint": 18,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "CanvasItem",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "CanvasItem",
				"usage": 128
			},
			{
				"name": "Visibility",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "visible",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "modulate",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "self_modulate",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "show_behind_parent",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "top_level",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "clip_children",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Disabled,Clip Only,Clip + Draw",
				"usage": 6
			},
			{
				"name": "light_mask",
				"class_name": &"",
				"type": 2,
				"hint": 7,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "visibility_layer",
				"class_name": &"",
				"type": 2,
				"hint": 7,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Ordering",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "z_index",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-4096,4096,1",
				"usage": 6
			},
			{
				"name": "z_as_relative",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "y_sort_enabled",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Texture",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "texture_",
				"usage": 64
			},
			{
				"name": "texture_filter",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Inherit,Nearest,Linear,Nearest Mipmap,Linear Mipmap,Nearest Mipmap Anisotropic,Linear Mipmap Anisotropic",
				"usage": 6
			},
			{
				"name": "texture_repeat",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Inherit,Disabled,Enabled,Mirror",
				"usage": 6
			},
			{
				"name": "Material",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "material",
				"class_name": &"CanvasItemMaterial,ShaderMaterial",
				"type": 24,
				"hint": 17,
				"hint_string": "CanvasItemMaterial,ShaderMaterial",
				"usage": 6
			},
			{
				"name": "use_parent_material",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Control",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "Control",
				"usage": 128
			},
			{
				"name": "Layout",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "clip_contents",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "custom_minimum_size",
				"class_name": &"",
				"type": 5,
				"hint": 0,
				"hint_string": "suffix:px",
				"usage": 6
			},
			{
				"name": "layout_direction",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Inherited,Based on Locale,Left-to-Right,Right-to-Left",
				"usage": 6
			},
			{
				"name": "layout_mode",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Position,Anchors",
				"usage": 14
			},
			{
				"name": "anchors_preset",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Custom:-1,PresetFullRect:15,PresetTopLeft:0,PresetTopRight:1,PresetBottomRight:3,PresetBottomLeft:2,PresetCenterLeft:4,PresetCenterTop:5,PresetCenterRight:6,PresetCenterBottom:7,PresetCenter:8,PresetLeftWide:9,PresetTopWide:10,PresetRightWide:11,PresetBottomWide:12,PresetVCenterWide:13,PresetHCenterWide:14",
				"usage": 10
			},
			{
				"name": "Anchor Points",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "anchor_,1",
				"usage": 256
			},
			{
				"name": "anchor_left",
				"class_name": &"",
				"type": 3,
				"hint": 1,
				"hint_string": "0,1,0.001,or_less,or_greater",
				"usage": 2
			},
			{
				"name": "anchor_top",
				"class_name": &"",
				"type": 3,
				"hint": 1,
				"hint_string": "0,1,0.001,or_less,or_greater",
				"usage": 2
			},
			{
				"name": "anchor_right",
				"class_name": &"",
				"type": 3,
				"hint": 1,
				"hint_string": "0,1,0.001,or_less,or_greater",
				"usage": 2
			},
			{
				"name": "anchor_bottom",
				"class_name": &"",
				"type": 3,
				"hint": 1,
				"hint_string": "0,1,0.001,or_less,or_greater",
				"usage": 2
			},
			{
				"name": "Anchor Offsets",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "offset_,1",
				"usage": 256
			},
			{
				"name": "offset_left",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-4096,4096,suffix:px",
				"usage": 2
			},
			{
				"name": "offset_top",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-4096,4096,suffix:px",
				"usage": 2
			},
			{
				"name": "offset_right",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-4096,4096,suffix:px",
				"usage": 2
			},
			{
				"name": "offset_bottom",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-4096,4096,suffix:px",
				"usage": 2
			},
			{
				"name": "Grow Direction",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "grow_,1",
				"usage": 256
			},
			{
				"name": "grow_horizontal",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Left,Right,Both",
				"usage": 2
			},
			{
				"name": "grow_vertical",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Top,Bottom,Both",
				"usage": 2
			},
			{
				"name": "Transform",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 256
			},
			{
				"name": "size",
				"class_name": &"",
				"type": 5,
				"hint": 0,
				"hint_string": "suffix:px",
				"usage": 4
			},
			{
				"name": "position",
				"class_name": &"",
				"type": 5,
				"hint": 0,
				"hint_string": "suffix:px",
				"usage": 4
			},
			{
				"name": "global_position",
				"class_name": &"",
				"type": 5,
				"hint": 0,
				"hint_string": "suffix:px",
				"usage": 0
			},
			{
				"name": "rotation",
				"class_name": &"",
				"type": 3,
				"hint": 1,
				"hint_string": "-360,360,0.1,or_less,or_greater,radians_as_degrees",
				"usage": 6
			},
			{
				"name": "rotation_degrees",
				"class_name": &"",
				"type": 3,
				"hint": 0,
				"hint_string": "",
				"usage": 0
			},
			{
				"name": "scale",
				"class_name": &"",
				"type": 5,
				"hint": 5,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "pivot_offset",
				"class_name": &"",
				"type": 5,
				"hint": 0,
				"hint_string": "suffix:px",
				"usage": 6
			},
			{
				"name": "Container Sizing",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "size_flags_",
				"usage": 256
			},
			{
				"name": "size_flags_horizontal",
				"class_name": &"",
				"type": 2,
				"hint": 6,
				"hint_string": "Fill:1,Expand:2,Shrink Center:4,Shrink End:8",
				"usage": 2
			},
			{
				"name": "size_flags_vertical",
				"class_name": &"",
				"type": 2,
				"hint": 6,
				"hint_string": "Fill:1,Expand:2,Shrink Center:4,Shrink End:8",
				"usage": 2
			},
			{
				"name": "size_flags_stretch_ratio",
				"class_name": &"",
				"type": 3,
				"hint": 1,
				"hint_string": "0,20,0.01,or_greater",
				"usage": 2
			},
			{
				"name": "Localization",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "localize_numeral_system",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "auto_translate",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 0
			},
			{
				"name": "Tooltip",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "tooltip_",
				"usage": 64
			},
			{
				"name": "tooltip_text",
				"class_name": &"",
				"type": 4,
				"hint": 18,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Focus",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "focus_",
				"usage": 64
			},
			{
				"name": "focus_neighbor_left",
				"class_name": &"",
				"type": 22,
				"hint": 26,
				"hint_string": "Control",
				"usage": 6
			},
			{
				"name": "focus_neighbor_top",
				"class_name": &"",
				"type": 22,
				"hint": 26,
				"hint_string": "Control",
				"usage": 6
			},
			{
				"name": "focus_neighbor_right",
				"class_name": &"",
				"type": 22,
				"hint": 26,
				"hint_string": "Control",
				"usage": 6
			},
			{
				"name": "focus_neighbor_bottom",
				"class_name": &"",
				"type": 22,
				"hint": 26,
				"hint_string": "Control",
				"usage": 6
			},
			{
				"name": "focus_next",
				"class_name": &"",
				"type": 22,
				"hint": 26,
				"hint_string": "Control",
				"usage": 6
			},
			{
				"name": "focus_previous",
				"class_name": &"",
				"type": 22,
				"hint": 26,
				"hint_string": "Control",
				"usage": 6
			},
			{
				"name": "focus_mode",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "None,Click,All",
				"usage": 6
			},
			{
				"name": "Mouse",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "mouse_",
				"usage": 64
			},
			{
				"name": "mouse_filter",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Stop,Pass,Ignore",
				"usage": 6
			},
			{
				"name": "mouse_force_pass_scroll_events",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "mouse_default_cursor_shape",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Arrow,I-Beam,Pointing Hand,Cross,Wait,Busy,Drag,Can Drop,Forbidden,Vertical Resize,Horizontal Resize,Secondary Diagonal Resize,Main Diagonal Resize,Move,Vertical Split,Horizontal Split,Help",
				"usage": 6
			},
			{
				"name": "Input",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "shortcut_context",
				"class_name": &"",
				"type": 24,
				"hint": 34,
				"hint_string": "Node",
				"usage": 6
			},
			{
				"name": "Theme",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "theme_",
				"usage": 64
			},
			{
				"name": "theme",
				"class_name": &"Theme",
				"type": 24,
				"hint": 17,
				"hint_string": "Theme",
				"usage": 6
			},
			{
				"name": "theme_type_variation",
				"class_name": &"",
				"type": 4,
				"hint": 3,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Theme Overrides",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "theme_override_",
				"usage": 64
			},
			{
				"name": "theme_override_styles/normal",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/focus",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/background",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/fill",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_constants/line_separation",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-16384,16384",
				"usage": 20
			},
			{
				"name": "theme_override_fonts/normal_font",
				"class_name": &"Font",
				"type": 24,
				"hint": 17,
				"hint_string": "Font",
				"usage": 20
			},
			{
				"name": "theme_override_font_sizes/normal_font_size",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "1,256,1,or_greater,suffix:px",
				"usage": 20
			},
			{
				"name": "theme_override_colors/default_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/font_selected_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/selection_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/font_outline_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/font_shadow_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_constants/shadow_outline_size",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-16384,16384",
				"usage": 20
			},
			{
				"name": "theme_override_constants/shadow_offset_x",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-16384,16384",
				"usage": 20
			},
			{
				"name": "theme_override_constants/shadow_offset_y",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-16384,16384",
				"usage": 20
			},
			{
				"name": "theme_override_constants/outline_size",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-16384,16384",
				"usage": 20
			},
			{
				"name": "theme_override_fonts/bold_font",
				"class_name": &"Font",
				"type": 24,
				"hint": 17,
				"hint_string": "Font",
				"usage": 20
			},
			{
				"name": "theme_override_font_sizes/bold_font_size",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "1,256,1,or_greater,suffix:px",
				"usage": 20
			},
			{
				"name": "theme_override_fonts/bold_italics_font",
				"class_name": &"Font",
				"type": 24,
				"hint": 17,
				"hint_string": "Font",
				"usage": 20
			},
			{
				"name": "theme_override_font_sizes/bold_italics_font_size",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "1,256,1,or_greater,suffix:px",
				"usage": 20
			},
			{
				"name": "theme_override_fonts/italics_font",
				"class_name": &"Font",
				"type": 24,
				"hint": 17,
				"hint_string": "Font",
				"usage": 20
			},
			{
				"name": "theme_override_font_sizes/italics_font_size",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "1,256,1,or_greater,suffix:px",
				"usage": 20
			},
			{
				"name": "theme_override_fonts/mono_font",
				"class_name": &"Font",
				"type": 24,
				"hint": 17,
				"hint_string": "Font",
				"usage": 20
			},
			{
				"name": "theme_override_font_sizes/mono_font_size",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "1,256,1,or_greater,suffix:px",
				"usage": 20
			},
			{
				"name": "theme_override_constants/text_highlight_h_padding",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-16384,16384",
				"usage": 20
			},
			{
				"name": "theme_override_constants/text_highlight_v_padding",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-16384,16384",
				"usage": 20
			},
			{
				"name": "theme_override_constants/table_h_separation",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-16384,16384",
				"usage": 20
			},
			{
				"name": "theme_override_constants/table_v_separation",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-16384,16384",
				"usage": 20
			},
			{
				"name": "theme_override_colors/table_odd_row_bg",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/table_even_row_bg",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/table_border",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "RichTextLabel",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "RichTextLabel",
				"usage": 128
			},
			{
				"name": "bbcode_enabled",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "text",
				"class_name": &"",
				"type": 4,
				"hint": 18,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "fit_content",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "scroll_active",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "scroll_following",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "autowrap_mode",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Off,Arbitrary,Word,Word (Smart)",
				"usage": 6
			},
			{
				"name": "tab_size",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "0,24,1",
				"usage": 6
			},
			{
				"name": "context_menu_enabled",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "shortcut_keys_enabled",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Markup",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "custom_effects",
				"class_name": &"",
				"type": 28,
				"hint": 31,
				"hint_string": "24/17:RichTextEffect",
				"usage": 4102
			},
			{
				"name": "meta_underlined",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "hint_underlined",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Threading",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "threaded",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "progress_bar_delay",
				"class_name": &"",
				"type": 2,
				"hint": 0,
				"hint_string": "suffix:ms",
				"usage": 6
			},
			{
				"name": "Text Selection",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "selection_enabled",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "deselect_on_focus_loss_enabled",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "drag_and_drop_selection_enabled",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Displayed Text",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "visible_characters",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-1,128000,1",
				"usage": 6
			},
			{
				"name": "visible_characters_behavior",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Characters Before Shaping,Characters After Shaping,Glyphs (Layout Direction),Glyphs (Left-to-Right),Glyphs (Right-to-Left)",
				"usage": 6
			},
			{
				"name": "visible_ratio",
				"class_name": &"",
				"type": 3,
				"hint": 1,
				"hint_string": "0,1,0.001",
				"usage": 6
			},
			{
				"name": "BiDi",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "text_direction",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Auto,Left-to-Right,Right-to-Left,Inherited",
				"usage": 6
			},
			{
				"name": "language",
				"class_name": &"",
				"type": 4,
				"hint": 32,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "structured_text_bidi_override",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Default,URI,File,Email,List,None,Custom",
				"usage": 6
			},
			{
				"name": "structured_text_bidi_override_options",
				"class_name": &"",
				"type": 28,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "script",
				"class_name": &"Script",
				"type": 24,
				"hint": 17,
				"hint_string": "Script",
				"usage": 1048582
			},
			{
				"name": "sc_rich_text_url_handler.gd",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "res://utility/sc_rich_text_url_handler.gd",
				"usage": 128
			}
		],
	},
	ButtonMinMaxDialog (Button) {
		[
			{
				"name": "Node",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "Node",
				"usage": 128
			},
			{
				"name": "_import_path",
				"class_name": &"",
				"type": 22,
				"hint": 0,
				"hint_string": "",
				"usage": 10
			},
			{
				"name": "name",
				"class_name": &"",
				"type": 21,
				"hint": 0,
				"hint_string": "",
				"usage": 0
			},
			{
				"name": "unique_name_in_owner",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 2
			},
			{
				"name": "scene_file_path",
				"class_name": &"",
				"type": 4,
				"hint": 0,
				"hint_string": "",
				"usage": 0
			},
			{
				"name": "owner",
				"class_name": &"Node",
				"type": 24,
				"hint": 17,
				"hint_string": "Node",
				"usage": 0
			},
			{
				"name": "multiplayer",
				"class_name": &"MultiplayerAPI",
				"type": 24,
				"hint": 17,
				"hint_string": "MultiplayerAPI",
				"usage": 0
			},
			{
				"name": "Process",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "process_",
				"usage": 64
			},
			{
				"name": "process_mode",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Inherit,Pausable,When Paused,Always,Disabled",
				"usage": 6
			},
			{
				"name": "process_priority",
				"class_name": &"",
				"type": 2,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "process_physics_priority",
				"class_name": &"",
				"type": 2,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Thread Group",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "process_thread",
				"usage": 256
			},
			{
				"name": "process_thread_group",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Inherit,Main Thread,Sub Thread",
				"usage": 6
			},
			{
				"name": "process_thread_group_order",
				"class_name": &"",
				"type": 2,
				"hint": 0,
				"hint_string": "",
				"usage": 0
			},
			{
				"name": "process_thread_messages",
				"class_name": &"",
				"type": 2,
				"hint": 6,
				"hint_string": "Process,Physics Process",
				"usage": 0
			},
			{
				"name": "Physics Interpolation",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "physics_interpolation_",
				"usage": 64
			},
			{
				"name": "physics_interpolation_mode",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Inherit,On,Off",
				"usage": 6
			},
			{
				"name": "Auto Translate",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "auto_translate_",
				"usage": 64
			},
			{
				"name": "auto_translate_mode",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Inherit,Always,Disabled",
				"usage": 6
			},
			{
				"name": "Editor Description",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "editor_",
				"usage": 64
			},
			{
				"name": "editor_description",
				"class_name": &"",
				"type": 4,
				"hint": 18,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "CanvasItem",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "CanvasItem",
				"usage": 128
			},
			{
				"name": "Visibility",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "visible",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "modulate",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "self_modulate",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "show_behind_parent",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "top_level",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "clip_children",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Disabled,Clip Only,Clip + Draw",
				"usage": 6
			},
			{
				"name": "light_mask",
				"class_name": &"",
				"type": 2,
				"hint": 7,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "visibility_layer",
				"class_name": &"",
				"type": 2,
				"hint": 7,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Ordering",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "z_index",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-4096,4096,1",
				"usage": 6
			},
			{
				"name": "z_as_relative",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "y_sort_enabled",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Texture",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "texture_",
				"usage": 64
			},
			{
				"name": "texture_filter",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Inherit,Nearest,Linear,Nearest Mipmap,Linear Mipmap,Nearest Mipmap Anisotropic,Linear Mipmap Anisotropic",
				"usage": 6
			},
			{
				"name": "texture_repeat",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Inherit,Disabled,Enabled,Mirror",
				"usage": 6
			},
			{
				"name": "Material",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "material",
				"class_name": &"CanvasItemMaterial,ShaderMaterial",
				"type": 24,
				"hint": 17,
				"hint_string": "CanvasItemMaterial,ShaderMaterial",
				"usage": 6
			},
			{
				"name": "use_parent_material",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Control",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "Control",
				"usage": 128
			},
			{
				"name": "Layout",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "clip_contents",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "custom_minimum_size",
				"class_name": &"",
				"type": 5,
				"hint": 0,
				"hint_string": "suffix:px",
				"usage": 6
			},
			{
				"name": "layout_direction",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Inherited,Based on Locale,Left-to-Right,Right-to-Left",
				"usage": 6
			},
			{
				"name": "layout_mode",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Position,Anchors",
				"usage": 14
			},
			{
				"name": "anchors_preset",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Custom:-1,PresetFullRect:15,PresetTopLeft:0,PresetTopRight:1,PresetBottomRight:3,PresetBottomLeft:2,PresetCenterLeft:4,PresetCenterTop:5,PresetCenterRight:6,PresetCenterBottom:7,PresetCenter:8,PresetLeftWide:9,PresetTopWide:10,PresetRightWide:11,PresetBottomWide:12,PresetVCenterWide:13,PresetHCenterWide:14",
				"usage": 10
			},
			{
				"name": "Anchor Points",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "anchor_,1",
				"usage": 256
			},
			{
				"name": "anchor_left",
				"class_name": &"",
				"type": 3,
				"hint": 1,
				"hint_string": "0,1,0.001,or_less,or_greater",
				"usage": 2
			},
			{
				"name": "anchor_top",
				"class_name": &"",
				"type": 3,
				"hint": 1,
				"hint_string": "0,1,0.001,or_less,or_greater",
				"usage": 2
			},
			{
				"name": "anchor_right",
				"class_name": &"",
				"type": 3,
				"hint": 1,
				"hint_string": "0,1,0.001,or_less,or_greater",
				"usage": 2
			},
			{
				"name": "anchor_bottom",
				"class_name": &"",
				"type": 3,
				"hint": 1,
				"hint_string": "0,1,0.001,or_less,or_greater",
				"usage": 2
			},
			{
				"name": "Anchor Offsets",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "offset_,1",
				"usage": 256
			},
			{
				"name": "offset_left",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-4096,4096,suffix:px",
				"usage": 2
			},
			{
				"name": "offset_top",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-4096,4096,suffix:px",
				"usage": 2
			},
			{
				"name": "offset_right",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-4096,4096,suffix:px",
				"usage": 2
			},
			{
				"name": "offset_bottom",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-4096,4096,suffix:px",
				"usage": 2
			},
			{
				"name": "Grow Direction",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "grow_,1",
				"usage": 256
			},
			{
				"name": "grow_horizontal",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Left,Right,Both",
				"usage": 2
			},
			{
				"name": "grow_vertical",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Top,Bottom,Both",
				"usage": 2
			},
			{
				"name": "Transform",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 256
			},
			{
				"name": "size",
				"class_name": &"",
				"type": 5,
				"hint": 0,
				"hint_string": "suffix:px",
				"usage": 4
			},
			{
				"name": "position",
				"class_name": &"",
				"type": 5,
				"hint": 0,
				"hint_string": "suffix:px",
				"usage": 4
			},
			{
				"name": "global_position",
				"class_name": &"",
				"type": 5,
				"hint": 0,
				"hint_string": "suffix:px",
				"usage": 0
			},
			{
				"name": "rotation",
				"class_name": &"",
				"type": 3,
				"hint": 1,
				"hint_string": "-360,360,0.1,or_less,or_greater,radians_as_degrees",
				"usage": 6
			},
			{
				"name": "rotation_degrees",
				"class_name": &"",
				"type": 3,
				"hint": 0,
				"hint_string": "",
				"usage": 0
			},
			{
				"name": "scale",
				"class_name": &"",
				"type": 5,
				"hint": 5,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "pivot_offset",
				"class_name": &"",
				"type": 5,
				"hint": 0,
				"hint_string": "suffix:px",
				"usage": 6
			},
			{
				"name": "Container Sizing",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "size_flags_",
				"usage": 256
			},
			{
				"name": "size_flags_horizontal",
				"class_name": &"",
				"type": 2,
				"hint": 6,
				"hint_string": "Fill:1,Expand:2,Shrink Center:4,Shrink End:8",
				"usage": 2
			},
			{
				"name": "size_flags_vertical",
				"class_name": &"",
				"type": 2,
				"hint": 6,
				"hint_string": "Fill:1,Expand:2,Shrink Center:4,Shrink End:8",
				"usage": 2
			},
			{
				"name": "size_flags_stretch_ratio",
				"class_name": &"",
				"type": 3,
				"hint": 1,
				"hint_string": "0,20,0.01,or_greater",
				"usage": 2
			},
			{
				"name": "Localization",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "localize_numeral_system",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "auto_translate",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 0
			},
			{
				"name": "Tooltip",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "tooltip_",
				"usage": 64
			},
			{
				"name": "tooltip_text",
				"class_name": &"",
				"type": 4,
				"hint": 18,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Focus",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "focus_",
				"usage": 64
			},
			{
				"name": "focus_neighbor_left",
				"class_name": &"",
				"type": 22,
				"hint": 26,
				"hint_string": "Control",
				"usage": 6
			},
			{
				"name": "focus_neighbor_top",
				"class_name": &"",
				"type": 22,
				"hint": 26,
				"hint_string": "Control",
				"usage": 6
			},
			{
				"name": "focus_neighbor_right",
				"class_name": &"",
				"type": 22,
				"hint": 26,
				"hint_string": "Control",
				"usage": 6
			},
			{
				"name": "focus_neighbor_bottom",
				"class_name": &"",
				"type": 22,
				"hint": 26,
				"hint_string": "Control",
				"usage": 6
			},
			{
				"name": "focus_next",
				"class_name": &"",
				"type": 22,
				"hint": 26,
				"hint_string": "Control",
				"usage": 6
			},
			{
				"name": "focus_previous",
				"class_name": &"",
				"type": 22,
				"hint": 26,
				"hint_string": "Control",
				"usage": 6
			},
			{
				"name": "focus_mode",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "None,Click,All",
				"usage": 6
			},
			{
				"name": "Mouse",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "mouse_",
				"usage": 64
			},
			{
				"name": "mouse_filter",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Stop,Pass,Ignore",
				"usage": 6
			},
			{
				"name": "mouse_force_pass_scroll_events",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "mouse_default_cursor_shape",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Arrow,I-Beam,Pointing Hand,Cross,Wait,Busy,Drag,Can Drop,Forbidden,Vertical Resize,Horizontal Resize,Secondary Diagonal Resize,Main Diagonal Resize,Move,Vertical Split,Horizontal Split,Help",
				"usage": 6
			},
			{
				"name": "Input",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "shortcut_context",
				"class_name": &"",
				"type": 24,
				"hint": 34,
				"hint_string": "Node",
				"usage": 6
			},
			{
				"name": "Theme",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "theme_",
				"usage": 64
			},
			{
				"name": "theme",
				"class_name": &"Theme",
				"type": 24,
				"hint": 17,
				"hint_string": "Theme",
				"usage": 6
			},
			{
				"name": "theme_type_variation",
				"class_name": &"",
				"type": 4,
				"hint": 3,
				"hint_string": "FlatButton,",
				"usage": 6
			},
			{
				"name": "Theme Overrides",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "theme_override_",
				"usage": 64
			},
			{
				"name": "theme_override_styles/normal",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/normal_mirrored",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/pressed",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/pressed_mirrored",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/hover",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/hover_mirrored",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/hover_pressed",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/hover_pressed_mirrored",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/disabled",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/disabled_mirrored",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_styles/focus",
				"class_name": &"StyleBox",
				"type": 24,
				"hint": 17,
				"hint_string": "StyleBox",
				"usage": 20
			},
			{
				"name": "theme_override_colors/font_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/font_focus_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/font_pressed_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/font_hover_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/font_hover_pressed_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/font_disabled_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_fonts/font",
				"class_name": &"Font",
				"type": 24,
				"hint": 17,
				"hint_string": "Font",
				"usage": 20
			},
			{
				"name": "theme_override_font_sizes/font_size",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "1,256,1,or_greater,suffix:px",
				"usage": 20
			},
			{
				"name": "theme_override_constants/outline_size",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-16384,16384",
				"usage": 20
			},
			{
				"name": "theme_override_colors/font_outline_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/icon_normal_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/icon_focus_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/icon_pressed_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/icon_hover_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/icon_hover_pressed_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_colors/icon_disabled_color",
				"class_name": &"",
				"type": 20,
				"hint": 0,
				"hint_string": "",
				"usage": 20
			},
			{
				"name": "theme_override_icons/icon",
				"class_name": &"Texture2D",
				"type": 24,
				"hint": 17,
				"hint_string": "Texture2D",
				"usage": 20
			},
			{
				"name": "theme_override_constants/h_separation",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-16384,16384",
				"usage": 20
			},
			{
				"name": "theme_override_constants/icon_max_width",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-16384,16384",
				"usage": 20
			},
			{
				"name": "theme_override_constants/align_to_largest_stylebox",
				"class_name": &"",
				"type": 2,
				"hint": 1,
				"hint_string": "-16384,16384",
				"usage": 20
			},
			{
				"name": "BaseButton",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "BaseButton",
				"usage": 128
			},
			{
				"name": "disabled",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "toggle_mode",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "button_pressed",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "action_mode",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Button Press,Button Release",
				"usage": 6
			},
			{
				"name": "button_mask",
				"class_name": &"",
				"type": 2,
				"hint": 6,
				"hint_string": "Mouse Left, Mouse Right, Mouse Middle",
				"usage": 6
			},
			{
				"name": "keep_pressed_outside",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "button_group",
				"class_name": &"ButtonGroup",
				"type": 24,
				"hint": 17,
				"hint_string": "ButtonGroup",
				"usage": 6
			},
			{
				"name": "Shortcut",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "shortcut",
				"class_name": &"Shortcut",
				"type": 24,
				"hint": 17,
				"hint_string": "Shortcut",
				"usage": 6
			},
			{
				"name": "shortcut_feedback",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "shortcut_in_tooltip",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Button",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "Button",
				"usage": 128
			},
			{
				"name": "text",
				"class_name": &"",
				"type": 4,
				"hint": 18,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "icon",
				"class_name": &"Texture2D",
				"type": 24,
				"hint": 17,
				"hint_string": "Texture2D",
				"usage": 6
			},
			{
				"name": "flat",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Text Behavior",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "alignment",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Left,Center,Right",
				"usage": 6
			},
			{
				"name": "text_overrun_behavior",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Trim Nothing,Trim Characters,Trim Words,Ellipsis,Word Ellipsis",
				"usage": 6
			},
			{
				"name": "autowrap_mode",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Off,Arbitrary,Word,Word (Smart)",
				"usage": 6
			},
			{
				"name": "clip_text",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "Icon Behavior",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "icon_alignment",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Left,Center,Right",
				"usage": 6
			},
			{
				"name": "vertical_icon_alignment",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Top,Center,Bottom",
				"usage": 6
			},
			{
				"name": "expand_icon",
				"class_name": &"",
				"type": 1,
				"hint": 0,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "BiDi",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "",
				"usage": 64
			},
			{
				"name": "text_direction",
				"class_name": &"",
				"type": 2,
				"hint": 2,
				"hint_string": "Auto,Left-to-Right,Right-to-Left,Inherited",
				"usage": 6
			},
			{
				"name": "language",
				"class_name": &"",
				"type": 4,
				"hint": 32,
				"hint_string": "",
				"usage": 6
			},
			{
				"name": "script",
				"class_name": &"Script",
				"type": 24,
				"hint": 17,
				"hint_string": "Script",
				"usage": 1048582
			},
			{
				"name": "button_min_max_dialog.gd",
				"class_name": &"",
				"type": 0,
				"hint": 0,
				"hint_string": "res://scenes/test_web_godot_player/button_min_max_dialog.gd",
				"usage": 128
			},
			{
				"name": "sc_fit_font_size_dialog",
				"class_name": &"AcceptDialog",
				"type": 24,
				"hint": 0,
				"hint_string": "",
				"usage": 4096
			}
		]
	}
]

※ノードのプロパティリストのあとに }\n を追加しているので、スクリーンショット画像と一部異なります。

まとめ

今回は、無料・軽快な 2D / 3D 用のゲームエンジン Godot Engine 4 で、デバッグに役立つ print 系のテキストを表示できる出力ボトムパネルに、一定数以上の文字を表示しようとした際に「output overflow, print less text!」というエラーメッセージが出た場合のプロジェクト設定による対処法を紹介します。

参照サイト Thank You!

記事一覧 → Compota-Soft-Press

コメント

Ads Blocker Image Powered by Code Help Pro

お願い - Ads Blocker Detected

このサイトは広告を掲載して運営しています。

ポップアップを閉じて閲覧できますが、よろしければ

このサイト内の広告を非表示にする拡張機能をオフにしていただけませんか?

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

We have detected that you are using extensions to block ads. Please support us by disabling these ads blocker.

タイトルとURLをコピーしました