You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -5,13 +5,13 @@ This allows users to create constructive solid geometry from within Blender usin
5
5

6
6
7
7
# How to use
8
-
Download the zip in the releases tab [here](https://github.com/Snowdaw/SD5/releases/tag/v1.0) and install the addon in Blender.
8
+
Download the zip in the releases tab [here](https://github.com/Snowdaw/SD5/releases/) and install the addon in Blender.
9
9
10
10
Open Blender and go to the scripting tab and create a new script with a name starting with "SD5_". This is to allow the handler to automatically execute the script in the post depsgraph handler.
11
11
12
12
The quick way is to now put the following in the script:
13
13
```
14
-
import SD5.utils as sd5
14
+
import sd5
15
15
16
16
s = sd5.sphere(2)
17
17
sd5.name = "SD5_Demo"
@@ -23,7 +23,7 @@ The better way would be to first add three empties to the scene.
23
23
I will call them "C_Sphere", "C_Box" and "Bounds".
0 commit comments