get_uid
Retrieve the unique identifier (UID) for a specific file in a Godot 4.4+ project by providing the project directory path and file path relative to the project.
Instructions
Get the UID for a specific file in a Godot project (for Godot 4.4+)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | Path to the file (relative to project) for which to get the UID | |
projectPath | Yes | Path to the Godot project directory |
Input Schema (JSON Schema)
{
"properties": {
"filePath": {
"description": "Path to the file (relative to project) for which to get the UID",
"type": "string"
},
"projectPath": {
"description": "Path to the Godot project directory",
"type": "string"
}
},
"required": [
"projectPath",
"filePath"
],
"type": "object"
}