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
{{ message }}
This repository has been archived by the owner on Aug 1, 2022. It is now read-only.
defupdate_soa(self, bl_item, path: Path, soa_members: List[SoaMember]) ->bool:
r=self.find_by_path(bl_item, path)
ifrisNone:
logger.error(f"update_soa: {path} not found in {bl_item}")
returnFalsecontainer, container_proxy=rforsoa_memberinsoa_members:
soa_proxy=container_proxy.data(soa_member[0])
soa_proxy.save_array(container, soa_member[0], soa_member[1])
# HACK force updates : unsure what is strictly required# specifying refresh is not compatible with Grease Pencil and causes a crash# specifying refresh is not compatible with Mesh and causes a crashupdate=Falseifisinstance(bl_item, T.Mesh):
bl_item.update_tag()
update=Trueelifisinstance(bl_item, T.Curve):
bl_item.twist_mode=bl_item.twist_modeelifisinstance(bl_item, T.GreasePencil):
bl_item.update_tag()
update=Truereturnupdate
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Infos on the context
Describe the bug
Blender 3.0 release breaks with mixer.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Mixer connects.
Screenshots
If applicable, add screenshots to help explain your problem.
Additional context
Wanted to have Blender 3.0 support.
Edited:
Blender 3.0 has released.
The text was updated successfully, but these errors were encountered: