diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a507ce..40a1594 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## 0.2.0 + +- Features: + - Support pressing SHIFT for precision mode + - Support xx/yy/zz to toggle between global/local mode + - Support infinite mouse movement + - Support switching display mode with "Z" key +- Improves: + - Enhance mouse translaiton in local mode + - Add shadow to overlay label +- Bugfixes: + - Fix can't transform in Right orthogonal view + - Fix rotation offset is not relative to initial mouse position + - Fix translation often has a big offset after setting constraint axis + - Fix axis drawn are incorrect when there's rotation in root node + - Fix can't transform when pivot point behind editor camera + - Fix start_session proceed even when no selected node + - Fix output printing axis Vector3 must be normallized when rotation in some direction under orthogonal view + - Fix EditorSetting doesn't have selection_box_color in older version + ## 0.1.0 - Features: diff --git a/README.md b/README.md index 54c906d..dc4d524 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,7 @@ Blender's 3D transforming shortcuts in Godot ![Showcase](screenshots/gd_blender_shortcuts_showcase.gif) ![Showcase](screenshots/gd_blender_shortcuts_showcase_2.gif) +![Showcase](screenshots/gd_blender_shortcuts_showcase_3.gif) ## Features @@ -12,6 +13,7 @@ Blender's 3D transforming shortcuts in Godot - Visualize constraint axis - Work seamlessly with Godot Spatial Editor settings("Use Local Space", "Use Snap", "Snap Settings") - Type transform value +- Switch display mode with "Z" ## Installation @@ -34,3 +36,6 @@ or - Constraint to Single Axis: X or Y or Z - Constraint to Plane: SHIFT + (X or Y or Z) - Hide: H +- Precision Mode(while transforming with mouse): SHIFT +- Toggle Global/Local mode(non-persistent): XX or YY or ZZ +- Switch Spatial Editor Viewport Display Mode: Z diff --git a/addons/gd-blender-3d-shortcuts/plugin.cfg b/addons/gd-blender-3d-shortcuts/plugin.cfg index 1efc81c..f47dda0 100644 --- a/addons/gd-blender-3d-shortcuts/plugin.cfg +++ b/addons/gd-blender-3d-shortcuts/plugin.cfg @@ -3,5 +3,5 @@ name="Blender 3D Shortcuts" description="Blender's 3D transforming shortcuts in Godot" author="imjp94" -version="0.1" +version="0.2" script="plugin.gd" diff --git a/screenshots/gd_blender_shortcuts_showcase_3.gif b/screenshots/gd_blender_shortcuts_showcase_3.gif new file mode 100644 index 0000000..0b9328f Binary files /dev/null and b/screenshots/gd_blender_shortcuts_showcase_3.gif differ