Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2021-04-26 10:16:53 +0300
committerJacques Lucke <jacques@blender.org>2021-04-26 10:16:53 +0300
commit9b64927a8aabe3f71784be1022a1daf3fb4e0b28 (patch)
tree0f4929197a1adf8c23dd26d2615373f7f49a63a5 /source/blender/editors/space_spreadsheet/spreadsheet_cell_value.hh
parentc63142ca8fc22ecd5510251d755d73cfc57a7c7b (diff)
parenta17ea1a6691920cc307f3e44dd285b2d8e8bdd35 (diff)
Merge branch 'blender-v2.93-release'
Diffstat (limited to 'source/blender/editors/space_spreadsheet/spreadsheet_cell_value.hh')
-rw-r--r--source/blender/editors/space_spreadsheet/spreadsheet_cell_value.hh7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/blender/editors/space_spreadsheet/spreadsheet_cell_value.hh b/source/blender/editors/space_spreadsheet/spreadsheet_cell_value.hh
index 0627cff7abc..d1e80f1d87e 100644
--- a/source/blender/editors/space_spreadsheet/spreadsheet_cell_value.hh
+++ b/source/blender/editors/space_spreadsheet/spreadsheet_cell_value.hh
@@ -18,6 +18,10 @@
#include <optional>
+#include "BLI_color.hh"
+#include "BLI_float2.hh"
+#include "BLI_float3.hh"
+
struct Object;
struct Collection;
@@ -44,6 +48,9 @@ class CellValue {
std::optional<int> value_int;
std::optional<float> value_float;
std::optional<bool> value_bool;
+ std::optional<float2> value_float2;
+ std::optional<float3> value_float3;
+ std::optional<Color4f> value_color;
std::optional<ObjectCellValue> value_object;
std::optional<CollectionCellValue> value_collection;
};