From f54df6d55433f48fd5d028ce33a7d9256f8662f6 Mon Sep 17 00:00:00 2001 From: Hugo Windisch Date: Fri, 4 Jun 2021 16:55:12 -0400 Subject: [PATCH] Fix some typos --- src/packages/removeallmaterials/README.md | 2 +- src/packages/transformlock/README.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/packages/removeallmaterials/README.md b/src/packages/removeallmaterials/README.md index a0e2544..f02bc9a 100644 --- a/src/packages/removeallmaterials/README.md +++ b/src/packages/removeallmaterials/README.md @@ -9,7 +9,7 @@ ## Explanations The shows how to create a minimal Python tool for 3ds Max. This tools adds a menu item -to the Scripting menu to lock all transformations on the selection. +to the Scripting menu to remove all materials from the scene. ## Using the tool diff --git a/src/packages/transformlock/README.md b/src/packages/transformlock/README.md index 4921c35..0a6eddd 100644 --- a/src/packages/transformlock/README.md +++ b/src/packages/transformlock/README.md @@ -61,11 +61,11 @@ def startup(): Hook the transform lock function to a menu item. """ menuhook.register( - "howtos", "transformlock", - fcn, - menu=[ "&Scripting", "Python3 Development", "How To"], - menutext"Lock transformations for the selection", + "howtos", + lock_selection, + menu=["&Scripting", "Python3 Development", "How To"], + text="Lock transformations for the selection", tooltip="Lock transformations for the selection") ```