91 lines
1.7 KiB
C#
91 lines
1.7 KiB
C#
using Godot;
|
|
using System.Collections.Generic;
|
|
using System;
|
|
|
|
namespace Rokojori
|
|
{
|
|
/*
|
|
|
|
Match: [ (\w+)]
|
|
Replace: [ "$1",]
|
|
|
|
*/
|
|
|
|
public class ExtendingControlGodotClassList
|
|
{
|
|
public static List<string> list = new List<string>
|
|
{
|
|
"AspectRatioContainer",
|
|
"BaseButton",
|
|
"BoxContainer",
|
|
"Button",
|
|
"CenterContainer",
|
|
"CheckBox",
|
|
"CheckButton",
|
|
"CodeEdit",
|
|
"ColorPicker",
|
|
"ColorPickerButton",
|
|
"ColorRect",
|
|
"Container",
|
|
"EditorInspector",
|
|
"EditorProperty",
|
|
"EditorResourcePicker",
|
|
"EditorScriptPicker",
|
|
"EditorSpinSlider",
|
|
"FileSystemDock",
|
|
"FlowContainer",
|
|
"GraphEdit",
|
|
"GraphElement",
|
|
"GraphNode",
|
|
"GridContainer",
|
|
"HBoxContainer",
|
|
"HFlowContainer",
|
|
"HScrollBar",
|
|
"HSeparator",
|
|
"HSlider",
|
|
"HSplitContainer",
|
|
"ItemList",
|
|
"Label",
|
|
"LineEdit",
|
|
"LinkButton",
|
|
"MarginContainer",
|
|
"MenuBar",
|
|
"MenuButton",
|
|
"NinePatchRect",
|
|
"OptionButton",
|
|
"Panel",
|
|
"PanelContainer",
|
|
"ProgressBar",
|
|
"Range",
|
|
"ReferenceRect",
|
|
"RichTextLabel",
|
|
"ScriptEditor",
|
|
"ScriptEditorBase",
|
|
"ScrollBar",
|
|
"ScrollContainer",
|
|
"Separator",
|
|
"Slider",
|
|
"SpinBox",
|
|
"SplitContainer",
|
|
"SubViewportContainer",
|
|
"TabBar",
|
|
"TabContainer",
|
|
"TextEdit",
|
|
"TextureButton",
|
|
"TextureProgressBar",
|
|
"TextureRect",
|
|
"Tree",
|
|
"VBoxContainer",
|
|
"VFlowContainer",
|
|
"VScrollBar",
|
|
"VSeparator",
|
|
"VSlider",
|
|
"VSplitContainer",
|
|
"VideoStreamPlayer",
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
|