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 Godot plugin that enables custom preview images for your resources in the editor.Features- Define custom preview textures for your resource instances- Improve resource browsing and searching in the Godot editor- Give each resource instance a distinct visual identityInstallation1. Download the plugin to your project's addons/ directory2. Enable the plugin in Project Settings β Plugins3. Restart the editor if previews do not appear immediatelyUsage- Implement the _get_custom_preview_texture() method in your custom resource script:```func _get_custom_preview_texture() -> Texture2D: return icon```The returned texture will be displayed as the preview icon in:- FileSystem dock- Resource picker dialogsLicenseMIT LicenseContacthttps://github.com/rllyy97/
Custom Resource Previews
A Godot plugin that enables custom preview images for your resources in the editor.
Features
- Define custom preview textures for your resource instances
- Improve resource browsing and searching in the Godot editor
- Give each resource instance a distinct visual identity
Installation
- Download the plugin to your project's
addons/directory - Enable the plugin in Project Settings β Plugins
- Restart the editor if previews do not appear immediately
Usage
Implement the _get_custom_preview_texture() method in your custom resource script:
@tool
extends Resource
class_name MyCustomResource
@export var icon: Texture2D = null
func _get_custom_preview_texture() -> Texture2D:
return icon
The returned texture will be displayed as the preview icon in:
- FileSystem dock
- Resource picker dialogs
License
MIT License
Contact
A Godot plugin that enables custom preview images for your resources in the editor.
Features
- Define custom preview textures for your resource instances
- Improve resource browsing and searching in the Godot editor
- Give each resource instance a distinct visual identity
Installation
1. Download the plugin to your project's addons/ directory
2. Enable the plugin in Project Settings β Plugins
3. Restart the editor if previews do not appear immediately
Usage
- Implement the _get_custom_preview_texture() method in your custom resource script:
```
func _get_custom_preview_texture() -> Texture2D:
return icon
```
The returned texture will be displayed as the preview icon in:
- FileSystem dock
- Resource picker dialogs
License
MIT License
Contact
https://github.com/rllyy97/
Reviews
Quick Information
A Godot plugin that enables custom preview images for your resources in the editor.Features- Define custom preview textures for your resource instances- Improve resource browsing and searching in the Godot editor- Give each resource instance a distinct visual identityInstallation1. Download the plugin to your project's addons/ directory2. Enable the plugin in Project Settings β Plugins3. Restart the editor if previews do not appear immediatelyUsage- Implement the _get_custom_preview_texture() method in your custom resource script:```func _get_custom_preview_texture() -> Texture2D: return icon```The returned texture will be displayed as the preview icon in:- FileSystem dock- Resource picker dialogsLicenseMIT LicenseContacthttps://github.com/rllyy97/