io_scene_3ds: Advanced world bitmap and color keyframe import and export #104804

Merged
Sebastian Sille merged 56 commits from :main into main 2023-07-30 23:04:07 +02:00
Showing only changes of commit 291b2517a9 - Show all commits

View File

@ -739,15 +739,15 @@ def process_next_chunk(context, file, previous_chunk, imported_objects, CONSTRAI
context.scene.world = contextWorld
else:
contextWorld.use_nodes = True
links = newWorld.node_tree.links
nodes = newWorld.node_tree.nodes
links = contextWorld.node_tree.links
nodes = contextWorld.node_tree.nodes
context.view_layer.use_pass_mist = False
layerfog = nodes.new(type='ShaderNodeVolumeScatter')
layerfog.label = "Layer Fog"
layerfog.location = (300, 100)
links.new(layerfog.outputs['Volume'], nodes['World Output'].inputs['Volume'])
world.mist_settings.start = read_float(new_chunk)
world.mist_settings.depth = read_float(new_chunk)
contextWorld.mist_settings.start = read_float(new_chunk)
contextWorld.mist_settings.depth = read_float(new_chunk)
layerfog.inputs[1].default_value = read_float(new_chunk)
layerfogflag = read_long(new_chunk)
read_chunk(file, temp_chunk)