Skip to content

Commit 29b3025

Browse files
authored
Merge pull request #49 from OmooLab/feature/dev
feat: improve eevee render
2 parents 32138c1 + 3ca7c2a commit 29b3025

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:b414fcab2662c6bc12abecd318421e5389a9871579d0f98c1954c1d26b54ed17
3-
size 9232450
2+
oid sha256:79dc46259b1a3f248fc647fc1f73e5a8591e53c0af3b830e5360ddff981372cf
3+
size 9275918

bioxelnodes/blender_manifest.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
schema_version = "1.0.0"
22

33
id = "bioxelnodes"
4-
version = "1.0.4"
4+
version = "1.0.5"
55
name = "Bioxel Nodes"
66
tagline = "For scientific volumetric data visualization in Blender"
77
maintainer = "Ma Nan <[email protected]>"

bioxelnodes/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from pathlib import Path
22

3-
VERSIONS = [{"label": "Latest", "node_version": (1, 0, 4)},
3+
VERSIONS = [{"label": "Latest", "node_version": (1, 0, 5)},
44
{"label": "v0.3.x", "node_version": (0, 3, 3)},
55
{"label": "v0.2.x", "node_version": (0, 2, 9)}]
66

bioxelnodes/operators/io.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -854,6 +854,7 @@ def modal(self, context, event):
854854
bpy.ops.bioxelnodes.render_setting_preset('EXEC_DEFAULT',
855855
preset="balance")
856856
bpy.context.scene.render.engine = 'CYCLES'
857+
bpy.ops.bioxelnodes.slice_viewer('EXEC_DEFAULT')
857858

858859
self.report({"INFO"}, "Successfully Imported")
859860
return {'FINISHED'}

bioxelnodes/operators/misc.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ class RenderSettingPreset(bpy.types.Operator):
146146
def execute(self, context):
147147
if self.preset == "performance":
148148
# EEVEE
149-
bpy.context.scene.eevee.use_taa_reprojection = False
149+
# bpy.context.scene.eevee.use_taa_reprojection = False
150150
bpy.context.scene.eevee.volumetric_tile_size = '2'
151151
bpy.context.scene.eevee.volumetric_shadow_samples = 32
152152
bpy.context.scene.eevee.volumetric_samples = 64
@@ -162,7 +162,7 @@ def execute(self, context):
162162

163163
elif self.preset == "balance":
164164
# EEVEE
165-
bpy.context.scene.eevee.use_taa_reprojection = False
165+
# bpy.context.scene.eevee.use_taa_reprojection = False
166166
bpy.context.scene.eevee.volumetric_tile_size = '2'
167167
bpy.context.scene.eevee.volumetric_shadow_samples = 64
168168
bpy.context.scene.eevee.volumetric_samples = 128
@@ -178,7 +178,7 @@ def execute(self, context):
178178

179179
elif self.preset == "quality":
180180
# EEVEE
181-
bpy.context.scene.eevee.use_taa_reprojection = False
181+
# bpy.context.scene.eevee.use_taa_reprojection = False
182182
bpy.context.scene.eevee.volumetric_tile_size = '2'
183183
bpy.context.scene.eevee.volumetric_shadow_samples = 128
184184
bpy.context.scene.eevee.volumetric_samples = 256
@@ -202,7 +202,7 @@ class SliceViewer(bpy.types.Operator):
202202
bl_icon = "FILE_VOLUME"
203203

204204
def execute(self, context):
205-
bpy.context.scene.eevee.use_taa_reprojection = False
205+
# bpy.context.scene.eevee.use_taa_reprojection = False
206206
bpy.context.scene.eevee.volumetric_tile_size = '2'
207207
bpy.context.scene.eevee.volumetric_shadow_samples = 128
208208
bpy.context.scene.eevee.volumetric_samples = 128

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "bioxelnodes"
3-
version = "1.0.4"
3+
version = "1.0.5"
44
description = ""
55
authors = ["Ma Nan <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)