Skip to content
This repository has been archived by the owner on Aug 1, 2022. It is now read-only.

Support Blender 3.1 and Blender 3.2 #49

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion mixer/blender_data/attributes.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,9 @@ def write_attribute(
# Don't log this, too many messages
# f"Attempt to write to non-existent attribute {bl_instance}.{key} : skipped"
return

# HACK TO avoid Blender crash.
if prop.name == "Active Paint Texture Index":
return
if not prop.is_readonly:
try:
setattr(parent, key, value)
Expand Down