¿Qué es el formato de archivo ESCN?
Un archivo .escn es una escena exportada a Godot Engine desde otro programa, casi siempre Blender mediante el complemento Godot Blender Exporter. El nombre es una abreviatura de «escena exportada» (exported scene). Internamente utiliza exactamente la misma sintaxis de texto que los archivos de escena nativos .tscn de Godot: un diseño de estilo INI en UTF-8 que comienza con un descriptor [gd_scene] y luego enumera recursos externos, subrecursos, nodos y conexiones de señales.
La razón por la que existe una extensión separada es el flujo de trabajo, no el formato. Cuando Godot detecta un .escn, sabe que el archivo proviene de una herramienta externa y debe reimportarse en lugar de editarse dentro del motor. Esto protege su trabajo: si cambia el modelo, vuelve a exportar desde Blender en lugar de parchear la escena a mano. El Godot Blender Exporter puede transferir mallas, materiales, esqueletos, animaciones, cuerpos físicos, cámaras y luces a un árbol de escenas de Godot ya preparado.
Seguridad y protección
RIESGO: LOWAn .escn file is plain UTF-8 text describing a scene tree and resource references. It contains no executable code and is not run directly. The only caution is that it can reference external resource paths and, like any Godot scene, embed script resource links, so treat files from untrusted sources with the same care you would give any imported game asset.
Detalles del formato
en pocas palabrasProgramas que abren archivos ESCN
.escn file inside a Godot project's resource folder and open the project so the editor imports the scene as a binary .scn. .escn files via File > Export > Godot Engine (.escn); edit the source scene in Blender and re-export. .escn file as plain text to inspect or diff the scene tree, nodes and resource references. .escn file to a Godot project and let the editor import it into the scene tree. .escn from the File menu. .escn file into a project directory; Godot compiles it to a binary .scn under .godot/imported/ on load. io_scene_godot addon into Blender's scripts/addons folder, then export to .escn from File > Export. .escn file directly to read its plain-text [gd_scene], [node] and [ext_resource] sections. Detalles técnicos
especificación profunda| Encoding | UTF-8 text, INI-style sections with bracketed headers |
| Byte order | N/A (text format) |
| Container | Plain-text scene tree serialization |
| Compression | None (compiled to compressed binary .scn on import) |
| Typical size | A few KB to several MB depending on embedded mesh and material data |
| Structure | Five ordered sections: a [gd_scene] file descriptor, [ext_resource] external references, [sub_resource] internal resources, [node] entries forming the scene tree, and [connection] signal links. Identical syntax to TSCN. |
| Integrity | None built into the format; resource UIDs (uid://...) are used for reference tracking |
| Platforms | Windows, macOS, Linux |
| Notes | The .escn extension signals to Godot that the file was exported from an external program (usually Blender) and should be treated as a read-only import source rather than a project-authored scene. On import Godot compiles it to a binary .scn stored under .godot/imported/. |
| Structure Summary Header | [gd_scene format=3 uid="uid://..."] |
| Lanzado | 2018 |
| Última versión | Scene format 3 (Godot 4.x TSCN/ESCN syntax) |
| Especificación | docs.godotengine.org |
Conversiones de ESCN
Preguntas y respuestas de la comunidad
preguntado por usuariosAún no hay preguntas; sea el primero en preguntar sobre los archivos ESCN.