Skip to content

Commit

Permalink
Direct access to .timeDep has been deprecated for a long time, but
Browse files Browse the repository at this point in the history
will actually be gone in 17.5; so replace with the long-standing
setTimeDep.

Signed-off-by: jlait <[email protected]>
  • Loading branch information
jmlait committed Jan 22, 2019
1 parent 6f04a49 commit e4a8211
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openvdb_houdini/houdini/SOP_OpenVDB_Rasterize_Points.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3425,7 +3425,7 @@ SOP_OpenVDB_Rasterize_Points::cookVDBSop(OP_Context& context)
rasterize(settings, outputGrids);

if (vexContextPtr && vexContextPtr->isTimeDependant()) {
OP_Node::flags().timeDep = true;
OP_Node::flags().setTimeDep(true);
}

for (size_t n = 0, N = outputGrids.size(); n < N && !boss.wasInterrupted(); ++n) {
Expand Down

0 comments on commit e4a8211

Please sign in to comment.