Skip to content

Commit

Permalink
Improved README and warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
ForestKatsch committed Feb 16, 2020
1 parent e2a6065 commit 7cd8618
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,16 @@ Vertex Oven works with Blender 2.80 and up.
* Bakes ambient occlusion to vertex colors and vertex groups
* Bake to multiple objects at once

This is the experimental C-module branch of Vertex Oven.

# Installation

* Download the file that looks like `vertex-oven-<version>.zip` from the [Releases page](https://github.com/ForestKatsch/VertexOven/releases).
The addon is available both on Blender Market for $20, or for free here on GitHub.

On GitHub, download the file `vertex-oven-<version>.zip` from the [Releases page](https://github.com/ForestKatsch/VertexOven/releases).

---

* Open Blender's **Preferences** window and navigate to the **Add-ons** tab
* Click the **Install** button and select the zip file you downloaded.
* Enable **Vertex Oven**
Expand Down
6 changes: 4 additions & 2 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"version": (0, 1, 5),
"blender": (2, 80, 0),
"location": "3D View > Object > Vertex Oven",
"warning": "Warning: this addon is still young, and problems may occur. Make sure you've backed up your Blender file first.",
"warning": "Warning: this addon is still young, and problems may occur. If you're concerned about this addon, make sure you've backed up your Blender file first.",
"support": "COMMUNITY",
"category": "Mesh"
}
Expand Down Expand Up @@ -485,7 +485,9 @@ def get_cast_objects(cls, context, options):
if options.ignore_small_objects:
small_object_size = options.small_object_size

return BakeAO.get_bake_objects(context, options.bake_cast_objects, options.include_self, active_object=context.active_object, small_object_size=small_object_size)
objects = BakeAO.get_bake_objects(context, options.bake_cast_objects, options.include_self, active_object=context.active_object, small_object_size=small_object_size)

return objects

def start_object(self, obj):

Expand Down

0 comments on commit 7cd8618

Please sign in to comment.