Add support for IES lighting #92883
@ -220,7 +220,8 @@ def vector_font(block: blendfile.BlendFileBlock) -> typing.Iterator[result.Block
|
||||
def lamp(block: blendfile.BlendFileBlock) -> typing.Iterator[result.BlockUsage]:
|
||||
"""Lamp data blocks."""
|
||||
block_ntree = block.get_pointer(b"nodetree", None)
|
||||
if block_ntree is not None:
|
||||
if block_ntree is None:
|
||||
return
|
||||
for node in iterators.listbase(block_ntree.get_pointer((b"nodes", b"first"))):
|
||||
storage = node.get_pointer(b"storage")
|
||||
if storage:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user
Flip the condition &
continue
, so that the bulk of the code is non-conditional: