Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser
Quick Information
Compares two export presets and visualizes which files are exclusive to each, shared between both, or present in the project but missing from either.
Export Diff
A Godot 4 editor plugin that compares two export presets and visualizes which files are exclusive to each, shared between both, or present in the project but missing from either.
Features
- Reads
export_presets.cfgand lists all preset profiles automatically - Compares any two presets side by side
- Groups files into four categories:
- Only in Profile A β files exclusive to the first selected preset
- Only in Profile B β files exclusive to the second selected preset
- Common in both β files shared by both presets
- In neither β files found in the project but not included in either preset
- Displays results as a directory tree in the editor dock
Installation
- Download or clone this repository into your project's
addons/folder:
your_project/
βββ addons/
βββ export-diff/
βββ plugin.cfg
βββ plugin.gd
- Open your project in the Godot editor.
- Go to Project β Project Settings β Plugins.
- Find Export Diff in the list and set it to Enabled.
Usage
- Open your Godot project that has an
export_presets.cfgfile at the project root. - In the left dock, find the Export Diff panel.
- Use the Profile A and Profile B dropdowns to select the two export presets you want to compare.
- Click Compare Presets.
- The tree view will populate with four categories. Expand any category to browse files by their directory structure.
- Click a file in the tree to print its full path to the Output console.
Requirements
- Godot 4.x
- A project with at least one
export_presets.cfgfile
plugin.cfg
[plugin]
name="Export Diff"
description="Compares two export presets and shows which files are exclusive, shared, or missing."
author="Joy Maxima"
version="1.0"
script="plugin.gd"
License
MIT License. See LICENSE for details.
Compares two export presets and visualizes which files are exclusive to each, shared between both, or present in the project but missing from either.
Reviews
Quick Information
Compares two export presets and visualizes which files are exclusive to each, shared between both, or present in the project but missing from either.