From 6a931f9bab24ac72abfa35c1eaa01b61106dd093 Mon Sep 17 00:00:00 2001 From: kijai <40791699+kijai@users.noreply.github.com> Date: Sat, 7 Oct 2023 23:58:03 +0300 Subject: [PATCH] Allow negative rotation --- nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes.py b/nodes.py index 65d0094..777f146 100644 --- a/nodes.py +++ b/nodes.py @@ -91,7 +91,7 @@ class CreateTextMask: "width": ("INT", {"default": 256,"min": 16, "max": 4096, "step": 1}), "height": ("INT", {"default": 256,"min": 16, "max": 4096, "step": 1}), "start_rotation": ("INT", {"default": 0,"min": 0, "max": 359, "step": 1}), - "end_rotation": ("INT", {"default": 359,"min": 0, "max": 359, "step": 1}), + "end_rotation": ("INT", {"default": 359,"min": -359, "max": 359, "step": 1}), }, }