From 25cb65781a28e59b60adb065e1ed363d4eb2a047 Mon Sep 17 00:00:00 2001 From: Jrius <2261279+Jrius@users.noreply.github.com> Date: Sat, 11 Sep 2021 11:18:03 +0200 Subject: [PATCH] Correct keyboard shortcut for Clear Parent Inverse. --- korman/exporter/animation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/korman/exporter/animation.py b/korman/exporter/animation.py index e335b0c..60b3051 100644 --- a/korman/exporter/animation.py +++ b/korman/exporter/animation.py @@ -342,7 +342,7 @@ class AnimationConverter: start: Optional[int] = None, end: Optional[int] = None) -> Optional[plMatrixChannelApplicator]: if adjust_xform != mathutils.Matrix.Identity(4): self._exporter().report.warn(("{}: Transform animation is not local and may export incorrectly. " + - "Please use Ctrl-P -> Clear Parent Inverse before animating objects to avoid issues.").format(bo.name), indent=1) + "Please use Alt-P -> Clear Parent Inverse before animating objects to avoid issues.").format(bo.name), indent=1) else: # Adjustment matrix is identity, just pass None instead... adjust_xform = None