mirror of
https://github.com/kaosat-dev/Blender_bevy_components_workflow.git
synced 2024-11-23 12:20:53 +00:00
18 lines
532 B
Python
18 lines
532 B
Python
|
import bpy
|
||
|
|
||
|
#FIXME: does not work if object is hidden !!
|
||
|
def get_selected_object_or_collection(context):
|
||
|
target = None
|
||
|
object = next(iter(context.selected_objects), None)
|
||
|
collection = context.collection
|
||
|
if object is not None:
|
||
|
target = object
|
||
|
elif collection is not None:
|
||
|
target = collection
|
||
|
return target
|
||
|
|
||
|
def get_selection_type(selection):
|
||
|
if isinstance(selection, bpy.types.Object):
|
||
|
return 'Object'
|
||
|
if isinstance(selection, bpy.types.Collection):
|
||
|
return 'Collection'
|