Blender add-on: BIS v. 1.8.3.
BIS (Blender Interplanety Storage) updated to v.1.8.3.
- Updated some nodes structure
- Added saving the “blend mode” property from material settings
BIS (Blender Interplanety Storage) updated to v.1.8.3.
The direction of a Bezier curve, visually indicated by its normals slope, can be checked by the indices of its points.
The Bezier curve points indices always ascending in the curve direction.
So, having two points on the curve we can get the direction through their indices:
1 2 3 4 5 6 7 8 |
bezier_spline = bpy.context.object.data.splines[0] p0 = bezier_spline.bezier_points[0] p1 = bezier_spline.bezier_points[1] p0_index = next(iter([point[0] for point in bezier_spline.bezier_points.items() if point[1] == p0]), None) p1_index = next(iter([point[0] for point in bezier_spline.bezier_points.items() if point[1] == p1]), None) direction = 'p0 to p1' if p0_index < p1_index else 'p1 to p0' print(direction) # p0 to p1 |
Blender add-on “Neoner” updated to v. 1.1.0.
Blender add-on Parametrizer updated to version 1.1.0.
It’s simple. When paying for the add-on, you are not paying for the add-on you are buying. This add-on is already written. The developer has already spent his time and strength on it. About this particular add-on – there is completely no difference will it be paid or not. So, why to pay? You pay for the future. You pay for the add-ons that the developer writes now and will write in the future. If the addon is bought, the developer has the opportunity to continue development. If not, he will do something else, and you will not receive new add-ons, as well as enhancement and porting to future platforms existed. When paying for an add-on, you provide, first of all – for yourself, the opportunity to receive new add-ons and technical support for the old ones. Pay for add-ons and donate for free – this will benefit yourself!