From feb3e904cbb887efce3ba8cae8ac562ce224f744 Mon Sep 17 00:00:00 2001 From: BlueCube3310 <53150244+BlueCube3310@users.noreply.github.com> Date: Tue, 2 Sep 2025 23:44:09 +0200 Subject: [PATCH] Image: Improve `AlphaMode` documentation --- doc/classes/Image.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/classes/Image.xml b/doc/classes/Image.xml index 657d04f10f..63e175a9e6 100644 --- a/doc/classes/Image.xml +++ b/doc/classes/Image.xml @@ -783,13 +783,13 @@ Performs Lanczos interpolation. This is the slowest image resizing mode, but it typically gives the best results, especially when downscaling images. - Image does not have alpha. + Image is fully opaque. It does not store alpha data. - Image stores alpha in a single bit. + Image stores either fully opaque or fully transparent pixels. Also known as punchthrough alpha. - Image uses alpha. + Image stores alpha data with values varying between [code]0.0[/code] and [code]1.0[/code]. Use S3TC compression.