summaryrefslogtreecommitdiffstats
path: root/modules/gltf/register_types.cpp
diff options
context:
space:
mode:
authorKurtBliss <kurtbliss3@gmail.com>2023-08-14 05:38:44 -0400
committerKurtBliss <kurtbliss3@gmail.com>2023-08-14 06:06:28 -0400
commit300ecfab8940215b57a70777d7fac54095f8aa2b (patch)
treee5a11be0e1f1f253a25fc841305e0e945f2f511a /modules/gltf/register_types.cpp
parent7ba79d68bd0f97797d7cb37452da6a036ba7c7c9 (diff)
downloadredot-engine-300ecfab8940215b57a70777d7fac54095f8aa2b.tar.gz
Fixed editor filesystem/import properties not being caught by the doctool
Defined glft editor properties in editor_settings Added documentation descriptions and entries
Diffstat (limited to 'modules/gltf/register_types.cpp')
-rw-r--r--modules/gltf/register_types.cpp17
1 files changed, 1 insertions, 16 deletions
diff --git a/modules/gltf/register_types.cpp b/modules/gltf/register_types.cpp
index 1788ffac3a..7891de6be1 100644
--- a/modules/gltf/register_types.cpp
+++ b/modules/gltf/register_types.cpp
@@ -55,18 +55,7 @@ static void _editor_init() {
// Blend to glTF importer.
bool blend_enabled = GLOBAL_GET("filesystem/import/blender/enabled");
- // Defined here because EditorSettings doesn't exist in `register_gltf_types` yet.
- EDITOR_DEF_RST("filesystem/import/blender/rpc_port", 6011);
- EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::INT,
- "filesystem/import/blender/rpc_port", PROPERTY_HINT_RANGE, "0,65535,1"));
-
- EDITOR_DEF_RST("filesystem/import/blender/rpc_server_uptime", 5);
- EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::FLOAT,
- "filesystem/import/blender/rpc_server_uptime", PROPERTY_HINT_RANGE, "0,300,1,or_greater,suffix:s"));
-
- String blender3_path = EDITOR_DEF_RST("filesystem/import/blender/blender3_path", "");
- EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING,
- "filesystem/import/blender/blender3_path", PROPERTY_HINT_GLOBAL_DIR));
+ String blender3_path = EDITOR_GET("filesystem/import/blender/blender3_path");
if (blend_enabled) {
Ref<DirAccess> da = DirAccess::create(DirAccess::ACCESS_FILESYSTEM);
if (blender3_path.is_empty()) {
@@ -89,10 +78,6 @@ static void _editor_init() {
// FBX to glTF importer.
bool fbx_enabled = GLOBAL_GET("filesystem/import/fbx/enabled");
- // Defined here because EditorSettings doesn't exist in `register_gltf_types` yet.
- String fbx2gltf_path = EDITOR_DEF_RST("filesystem/import/fbx/fbx2gltf_path", "");
- EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING,
- "filesystem/import/fbx/fbx2gltf_path", PROPERTY_HINT_GLOBAL_FILE));
if (fbx_enabled) {
Ref<EditorSceneFormatImporterFBX> importer;
importer.instantiate();