Skip to content

Commit e5727e6

Browse files
committed
Rename VDB Vector Merge to VDB Vector from Scalar
Internal review found this the least objectionable new name, but it is up to the TSC if it meets our standards. Only the label is changed, I believe I have preserved the internal names properly. Signed-off-by: jlait <[email protected]>
1 parent 7c65df9 commit e5727e6

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

openvdb_houdini/openvdb_houdini/SOP_OpenVDB_Vector_Merge.cc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,13 @@ Position:\n\
192192
.setDefault("@name=*.z"));
193193

194194
// Register this operator.
195-
hvdb::OpenVDBOpFactory("VDB Vector Merge",
195+
hvdb::OpenVDBOpFactory("VDB Vector from Scalar",
196196
SOP_OpenVDB_Vector_Merge::factory, parms, *table)
197+
#ifndef SESI_OPENVDB
198+
.setInternalName("DW_OpenVDBVectorMerge")
199+
#else
200+
.setInternalName("vdbvectormerge")
201+
#endif
197202
.addInput("Scalar VDBs to merge into vector")
198203
.setObsoleteParms(obsoleteParms)
199204
.setVerb(SOP_NodeVerb::COOK_INPLACE, []() { return new SOP_OpenVDB_Vector_Merge::Cache; })
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Houdini:
2+
VDB Vector Merge SOP is now VDB Vector From Scalar SOP to distinguish
3+
it from the VDB Merge SOP. It keeps the same internal name so this
4+
is merely a label change.

0 commit comments

Comments
 (0)