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

A powerful and user-friendly plugin for Godot Engine that allows you to rename folders and files directly within the FileSystem dock.Supports batch renaming with customizable casing styles including PascalCase and camelCase for both folders and files.Ideal for organizing your project assets consistently and efficiently without leaving the editor
π§Ό Auto Rename Tool (CamelCase)
A lightweight Python tool that automatically renames files in a folder to camelCase format.
π¦ Features
- Renames files like "my image_FINAL-01.tres" β "myImageFinal01.tres".
- Works with any file type: .png, .txt, .tres, etc.
- Handles case-only renaming on Windows (e.g., OLA.txt β ola.txt).
- Can be run with Python or as a standalone .exe.
- No third-party libraries required.
π How to Use
Option 1: Run with Python
Place auto_rename.py in the folder with the files you want to rename.
Open a terminal and run:
python auto_rename.py
Option 2: Run as .exe
Build the executable with PyInstaller:
pyinstaller --onefile auto_rename.py
Go to the dist/ folder and copy auto_rename.exe to any directory.
Double-click the .exe β it will rename files in the same folder automatically.
π‘ The script always renames files in the same folder it's located in, including subfolders.
π Example
Before: My FINAL_image 01.TXT
After: myFinalImage01.txt
β Notes
- If the final filename already exists, the script skips the file to avoid overwriting.
- The tool only changes filenames β file contents are not touched.
- Cross-platform support (Windows/macOS/Linux). Temporary rename step helps bypass Windows limitations.
π Folder Structure
auto_rename.py
README.txt
renametocamelcase.exe
A powerful and user-friendly plugin for Godot Engine that allows you to rename folders and files directly within the FileSystem dock.
Supports batch renaming with customizable casing styles including PascalCase and camelCase for both folders and files.
Ideal for organizing your project assets consistently and efficiently without leaving the editor
Reviews
Quick Information

A powerful and user-friendly plugin for Godot Engine that allows you to rename folders and files directly within the FileSystem dock.Supports batch renaming with customizable casing styles including PascalCase and camelCase for both folders and files.Ideal for organizing your project assets consistently and efficiently without leaving the editor