From bef38ec3fa1449813e840113df72583e2ec7253c Mon Sep 17 00:00:00 2001 From: Brady Johnston Date: Wed, 1 Oct 2025 11:40:20 +0200 Subject: [PATCH] UI: Change volume grid type name 'Float Vector' to 'Vector' Change the display name of `Float Vector` to `Vector` for the **Store Named Grid** node. While this is specific for OpenVDB grids, elsewhere we only ever reference Vector for the data type in the UI. Pull Request: https://projects.blender.org/blender/blender/pulls/147051 --- source/blender/makesrna/intern/rna_volume.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/makesrna/intern/rna_volume.cc b/source/blender/makesrna/intern/rna_volume.cc index f9708564f59..694013cc0d5 100644 --- a/source/blender/makesrna/intern/rna_volume.cc +++ b/source/blender/makesrna/intern/rna_volume.cc @@ -29,7 +29,7 @@ const EnumPropertyItem rna_enum_volume_grid_data_type_items[] = { {VOLUME_GRID_INT, "INT", 0, "Integer", "32-bit integer"}, {VOLUME_GRID_INT64, "INT64", 0, "Integer 64-bit", "64-bit integer"}, {VOLUME_GRID_MASK, "MASK", 0, "Mask", "No data, boolean mask of active voxels"}, - {VOLUME_GRID_VECTOR_FLOAT, "VECTOR_FLOAT", 0, "Float Vector", "3D float vector"}, + {VOLUME_GRID_VECTOR_FLOAT, "VECTOR_FLOAT", 0, "Vector", "3D float vector"}, {VOLUME_GRID_VECTOR_DOUBLE, "VECTOR_DOUBLE", 0, "Double Vector", "3D double vector"}, {VOLUME_GRID_VECTOR_INT, "VECTOR_INT", 0, "Integer Vector", "3D integer vector"}, {VOLUME_GRID_POINTS,