()
| 23 | setattr(obj.st2, prop, getattr(active.st2, prop)) |
| 24 | |
| 25 | def is_rendering(): |
| 26 | try: |
| 27 | for area in bpy.context.screen.areas: |
| 28 | if area.type == 'VIEW_3D': |
| 29 | for space in area.spaces: |
| 30 | if space.type == 'VIEW_3D' and space.shading.type == "RENDERED": |
| 31 | return True |
| 32 | except: |
| 33 | pass |
| 34 | return False |
| 35 | |
| 36 | |
| 37 | def update_type_frame_change(scene, depsgraph): |
no outgoing calls
no test coverage detected