Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Minor] Fix a couple of typos in the readme #162

Merged
merged 1 commit into from
May 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ You will be asked for the following information:
* Which addon template should be used?
* Where should the addon be created? This should be an empty folder, preferably without spaces or special characters in the name.
* What is the name of the addon?
* What is you name?
* What is your name?

### How can I use the extension with my existing addon?

Expand Down Expand Up @@ -49,13 +49,13 @@ For that to work, Blender has to be started using the extension.
Your addon does not need to support reloading itself.
It only has to have correct `register` and `unregister` methods.

To reload the addon every time a file is saved, active the `blender.addon.reloadOnSave` setting in VS Code.
To reload the addon every time a file is saved, activate the `blender.addon.reloadOnSave` setting in VS Code.

## Script Tools

When I say "script" I mean a piece of Python code that runs in Blender but is not an addon.
Scripts are best to test and learn Blenders Python API but also to solve simple tasks at hand.
Usually scripts are written in Blenders text editor.
Scripts are best to test and learn Blender's Python API but also to solve simple tasks at hand.
Usually scripts are written in Blender's text editor.
However, the text editor has fairly limited capabilities compared to modern text editors and IDEs.

For script writing this extension offers
Expand Down