blender-scripting icon indicating copy to clipboard operation
blender-scripting copied to clipboard

Introduction to blender scripting

Results 2 blender-scripting issues
Sort by recently updated
recently updated
newest added

**Context** I am a first time user to blender scripting. I am working with Blender 2.82 (sub 7) (2.82.a+dfsg-1). I am on Ubuntu 20.04. **Whats Wrong** When running several of...

If you can't properly see materials you need to change create_material() in utils/__init__.py to ``` def create_material(base_color=(1, 1, 1, 1), metalic=0.0, roughness=0.5): mat = bpy.data.materials.new('Material') if len(base_color) == 3: base_color...