From 8adad08f9e2ab4045e53f9e6b381f6f60c76b3c7 Mon Sep 17 00:00:00 2001 From: Rosalie Wagner Date: Thu, 20 Oct 2022 16:08:22 +0200 Subject: [PATCH] Added VROT and YROT (Tilt) Merge commit 'ed14a62ceb9bf893b08d6f642a9f90397b55a7ad' --- .../Lib/axisregistry/data/x_rotation.textproto | 14 ++++++++++++++ .../Lib/axisregistry/data/y_rotation.textproto | 15 +++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 axisregistry/Lib/axisregistry/data/x_rotation.textproto create mode 100644 axisregistry/Lib/axisregistry/data/y_rotation.textproto diff --git a/axisregistry/Lib/axisregistry/data/x_rotation.textproto b/axisregistry/Lib/axisregistry/data/x_rotation.textproto new file mode 100644 index 0000000000..116eb5d625 --- /dev/null +++ b/axisregistry/Lib/axisregistry/data/x_rotation.textproto @@ -0,0 +1,14 @@ +#Rotation in X, based on https://github.com/andyclymer/Tilt-Typeface +tag: "XROT" +display_name: "Rotation in X" +min_value: -180 +default_value: 0 +max_value: 180 +precision: 0 +fallback { + name: "Default" + value: 0 +} +fallback_only: false +description: + "Letters rotate around the X axis." diff --git a/axisregistry/Lib/axisregistry/data/y_rotation.textproto b/axisregistry/Lib/axisregistry/data/y_rotation.textproto new file mode 100644 index 0000000000..4aefbda692 --- /dev/null +++ b/axisregistry/Lib/axisregistry/data/y_rotation.textproto @@ -0,0 +1,15 @@ +#Rotation in Y, based on https://github.com/andyclymer/Tilt-Typeface +tag: "YROT" +display_name: "Rotation in Y" +min_value: -180 +default_value: 0 +max_value: 180 +precision: 0 +fallback { + name: "Default" + value: 0 +} +fallback_only: false +description: + "Letters rotate around the Y axis." + -- 2.47.2