From af3054e5e01022ed9690ccf2ff4e92b8dc2a9840 Mon Sep 17 00:00:00 2001 From: xxSeys1 Date: Mon, 31 Mar 2025 15:55:04 +0200 Subject: [PATCH] minor code style --- Source/Engine/Tools/TextureTool/TextureTool.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Source/Engine/Tools/TextureTool/TextureTool.h b/Source/Engine/Tools/TextureTool/TextureTool.h index ede5780ef..df7081136 100644 --- a/Source/Engine/Tools/TextureTool/TextureTool.h +++ b/Source/Engine/Tools/TextureTool/TextureTool.h @@ -62,23 +62,23 @@ API_CLASS(Namespace="FlaxEngine.Tools", Static) class FLAXENGINE_API TextureTool bool FlipX = false; // Invert the red channel. - API_FIELD(Attributes = "EditorOrder(72), EditorDisplay(\"Invert Channels\")") + API_FIELD(Attributes="EditorOrder(72), EditorDisplay(\"Invert Channels\")") bool InvertRedChannel = false; // Invert the green channel. Good for OpenGL to DirectX conversion. - API_FIELD(Attributes = "EditorOrder(73), EditorDisplay(\"Invert Channels\")") + API_FIELD(Attributes="EditorOrder(73), EditorDisplay(\"Invert Channels\")") bool InvertGreenChannel = false; // Invert the blue channel. - API_FIELD(Attributes = "EditorOrder(74), EditorDisplay(\"Invert Channels\")") + API_FIELD(Attributes="EditorOrder(74), EditorDisplay(\"Invert Channels\")") bool InvertBlueChannel = false; // Invert the alpha channel. - API_FIELD(Attributes = "EditorOrder(75), EditorDisplay(\"Invert Channels\")") + API_FIELD(Attributes="EditorOrder(75), EditorDisplay(\"Invert Channels\")") bool InvertAlphaChannel = false; // Rebuild Z (blue) channel assuming X/Y are normals. - API_FIELD(Attributes = "EditorOrder(76)") + API_FIELD(Attributes="EditorOrder(76)") bool ReconstructZChannel = false; // Texture size scale. Allows increasing or decreasing the imported texture resolution. Default is 1.