godot-texture-import-pixel-art

Configure Godot 4 pixel-art texture imports with nearest filtering and shader hints.

8|3|Updated Jun 12, 2026
One-click install
npx skills add https://github.com/arthur0n/xenodot-forge --skill godot-texture-import-pixel-art
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: godot-texture-import-pixel-art
Source: https://github.com/arthur0n/xenodot-forge/tree/main/plugin/skills/godot-texture-import-pixel-art
Command: npx skills add https://github.com/arthur0n/xenodot-forge --skill godot-texture-import-pixel-art

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill prevents pixel-art textures from becoming blurry, smeared, or scratched when imported and used in Godot 4 projects. It gives you the exact import values and shader hints needed to preserve crisp texels in gameplay scenes.

Core Features & Use Cases

  • Pixel-perfect import settings: Uses nearest filtering, disables mipmaps, and keeps textures lossless so pixel art stays sharp.
  • Shader sampler protection: Adds the filter_nearest hint so shader uniforms do not silently reintroduce smoothing.
  • Material wiring guidance: Ensures StandardMaterial3D uses the correct nearest filtering value and avoids the common nearest-with-mipmaps mistake.
  • Use Case: A pixel-art PNG is added to a Godot material or shader and renders blurry; this Skill tells you exactly which import and material settings to fix.

Quick Start

Ask for the exact Godot pixel-art import and shader settings needed to make a specific texture render crisply in a material or shader uniform.

Frequently Asked Questions about godot-texture-import-pixel-art

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
Why does my pixel art texture look blurry in Godot 4?

Pixel art textures in Godot 4 appear blurry when import settings use linear filtering instead of nearest filtering. Enabling mipmaps or missing the filter_nearest shader hint also causes unwanted smoothing on crisp texels.

How do I import pixel art PNGs in Godot 4 without blurring?

To import pixel art PNGs cleanly in Godot 4, set the texture import filter to nearest, disable mipmaps, and select lossless compression. This preserves sharp texels when textures are added under assets/textures/.

How do I keep StandardMaterial3D pixel art from scratching in Godot?

To prevent scratching on StandardMaterial3D pixel art in Godot, enable nearest filtering and ensure mipmaps are disabled. Using nearest filtering with mipmaps enabled is a common mistake that degrades pixel art quality.

Do I need filter_nearest hint for gdshader texture uniforms?

Yes, adding the filter_nearest hint to gdshader texture uniforms is required. Without this shader sampler hint, Godot silently reintroduces smoothing and ruins crisp pixel art rendering.

Can I use lossy compression for pixel art textures in Godot 4?

No, lossy compression alters pixel art texels and degrades visual quality. You must use lossless compression alongside nearest filtering and disabled mipmaps to keep pixel art textures crisp and clean in Godot 4.