BIS page on Patreon
Now the BIS materials library for Blender has its own Patreon page.
If you want to support the project, you can do it there.
Now the BIS materials library for Blender has its own Patreon page.
If you want to support the project, you can do it there.
Texturing/shading materials in the Christmas scene with the BIS library having pro- account.
The main advantage of the BIS pro- account: you don’t need to switch to the BIS website to get active materials, all materials can be download directly from Blender.
Texturing/shading materials of the Christmas scene with the BIS library.
The BIS administration congratulates all the library users with Merry Christmas and New Year Holiday!
Each registered user is provided with a “pro” account for 14 days.
BIS (Blender Interplanety Storage) update to v.1.5.1.
In the BIS (Blender Interplanety Storage) library enabled the preview auto-generation for saved meshes. Sometime after storing, if the user has not added his own preview for the saved mesh, the preview will be created automatically.
The “Meshes” section of the BIS library is for storing meshes (objects).
Saving objects to the BIS personal storage:
The BIS interface for saving/downloading objects is placed in the “BIS” tab of the T-panel in “3D View” window.
BIS (Blender Interplanety Storage) update to v.1.5.0.
At present, the meshes storage is working in experimental mode.
To check is an attribute/property of any Blender object (mesh, node, modifier, etc.) read-only:
<object> .is_property_readonly (‘<property name>’)
<object> .bl_rna.properties [‘<property name>’]. is_readonly
For example, for the “is_editmode” mesh property (is the mesh in edit mode or not):
1 2 3 4 5 6 7 8 |
bpy.context.active_object.data.is_property_readonly('is_editmode') # True bpy.context.active_object.data.bl_rna.properties['is_editmode'].is_readonly # True |