Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
blender-addons
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
blender-addons
Commits
c9946e45
Commit
c9946e45
authored
13 years ago
by
Martin Poirier
Browse files
Options
Downloads
Patches
Plain Diff
netrender
correcting smoke domain modifier type restriction Patch by Philippe Van Hecke
parent
9edd2f5d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
netrender/operators.py
+1
-1
1 addition, 1 deletion
netrender/operators.py
netrender/repath.py
+1
-1
1 addition, 1 deletion
netrender/repath.py
with
2 additions
and
2 deletions
netrender/operators.py
+
1
−
1
View file @
c9946e45
...
@@ -61,7 +61,7 @@ class RENDER_OT_netslave_bake(bpy.types.Operator):
...
@@ -61,7 +61,7 @@ class RENDER_OT_netslave_bake(bpy.types.Operator):
modifier
.
point_cache
.
frame_step
=
1
modifier
.
point_cache
.
frame_step
=
1
modifier
.
point_cache
.
use_disk_cache
=
True
modifier
.
point_cache
.
use_disk_cache
=
True
modifier
.
point_cache
.
use_external
=
False
modifier
.
point_cache
.
use_external
=
False
elif
modifier
.
type
==
"
SMOKE
"
and
modifier
.
smoke_type
==
"
TYPE_
DOMAIN
"
:
elif
modifier
.
type
==
"
SMOKE
"
and
modifier
.
smoke_type
==
"
DOMAIN
"
:
modifier
.
domain_settings
.
point_cache
.
use_step
=
1
modifier
.
domain_settings
.
point_cache
.
use_step
=
1
modifier
.
domain_settings
.
point_cache
.
use_disk_cache
=
True
modifier
.
domain_settings
.
point_cache
.
use_disk_cache
=
True
modifier
.
domain_settings
.
point_cache
.
use_external
=
False
modifier
.
domain_settings
.
point_cache
.
use_external
=
False
...
...
This diff is collapsed.
Click to expand it.
netrender/repath.py
+
1
−
1
View file @
c9946e45
...
@@ -127,7 +127,7 @@ def process(paths):
...
@@ -127,7 +127,7 @@ def process(paths):
processPointCache
(
object
,
modifier
.
point_cache
)
processPointCache
(
object
,
modifier
.
point_cache
)
elif
modifier
.
type
==
"
SOFT_BODY
"
:
elif
modifier
.
type
==
"
SOFT_BODY
"
:
processPointCache
(
object
,
modifier
.
point_cache
)
processPointCache
(
object
,
modifier
.
point_cache
)
elif
modifier
.
type
==
"
SMOKE
"
and
modifier
.
smoke_type
==
"
TYPE_
DOMAIN
"
:
elif
modifier
.
type
==
"
SMOKE
"
and
modifier
.
smoke_type
==
"
DOMAIN
"
:
processPointCache
(
modifier
.
domain_settings
.
point_cache_low
)
processPointCache
(
modifier
.
domain_settings
.
point_cache_low
)
if
modifier
.
domain_settings
.
use_high_resolution
:
if
modifier
.
domain_settings
.
use_high_resolution
:
processPointCache
(
modifier
.
domain_settings
.
point_cache_high
)
processPointCache
(
modifier
.
domain_settings
.
point_cache_high
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment