diff --git a/tutorials/assets_pipeline/importing_3d_scenes/available_formats.rst b/tutorials/assets_pipeline/importing_3d_scenes/available_formats.rst index b39771fa027..eaa343c9a2b 100644 --- a/tutorials/assets_pipeline/importing_3d_scenes/available_formats.rst +++ b/tutorials/assets_pipeline/importing_3d_scenes/available_formats.rst @@ -122,6 +122,10 @@ If you keep ``.blend`` files within your project folder but don't want them to be imported by Godot, disable **Filesystem > Import > Blender > Enabled** in the advanced Project Settings. +.. figure:: img/importing_3d_scenes_advanced_import_settings_checkbox.webp + :align: center + :alt: Enabling/disabling .blend file import in the Project Settings + The ``.blend`` import process converts to glTF first, so it still uses Godot's glTF import code. Therefore, the ``.blend`` import process is the same as the glTF import process, but with an extra step at the beginning. @@ -141,6 +145,36 @@ as the glTF import process, but with an extra step at the beginning. If this is problematic, consider using glTF scenes exported from Blender instead. +To add collision to the object in Godot, add the suffix ``-col`` to the end of +the object name in Blender. + +.. figure:: img/importing_3d_scenes_blender_object_name.webp + :align: center + :alt: Suffix to be added in the scene collection + +.. list-table:: + :class: wrap-normal + :width: 100% + :widths: auto + :header-rows: 1 + + * - Collision suffix + - Collision type + + * - ``-col`` + - :ref:`ConcavePolygonShape3D ` + + * - ``-convcol`` + - :ref:`ConvexPolygonShape3D ` + + * - ``-colonly`` + - :ref:`StaticBody3D ` + +.. seealso:: + + See :ref:`doc_importing_3d_scenes_node_type_customization` for a more + comprehensive overview on node type customization. + Exporting DAE files from Blender -------------------------------- diff --git a/tutorials/assets_pipeline/importing_3d_scenes/img/importing_3d_scenes_advanced_import_settings_checkbox.webp b/tutorials/assets_pipeline/importing_3d_scenes/img/importing_3d_scenes_advanced_import_settings_checkbox.webp new file mode 100644 index 00000000000..660c347ec72 Binary files /dev/null and b/tutorials/assets_pipeline/importing_3d_scenes/img/importing_3d_scenes_advanced_import_settings_checkbox.webp differ diff --git a/tutorials/assets_pipeline/importing_3d_scenes/img/importing_3d_scenes_blender_object_name.webp b/tutorials/assets_pipeline/importing_3d_scenes/img/importing_3d_scenes_blender_object_name.webp new file mode 100644 index 00000000000..5f05ebcf170 Binary files /dev/null and b/tutorials/assets_pipeline/importing_3d_scenes/img/importing_3d_scenes_blender_object_name.webp differ