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:
authorErik Abrahamsson <erik85>2021-09-24 18:59:52 +0300
committerHans Goudey <h.goudey@me.com>2021-09-24 19:00:21 +0300
commit5c0017e85a75ad004ef5f4944828074a7fa95f21 (patch)
treed71b6e513042791c362db7227e72efe781c83959 /source/blender/nodes/NOD_function.h
parentbdb8ee9717c83d34783388e4c4c7fa73f2481fef (diff)
Geometry Nodes: Special string characters node
This patch adds a new node called "Special Characters" with two string outputs: "Line Break" and "Tab". This is necessary because the newline character cannot be easily typed with a keyboard, but is necessary for the string to curve node. Differential Revision: https://developer.blender.org/D12620
Diffstat (limited to 'source/blender/nodes/NOD_function.h')
-rw-r--r--source/blender/nodes/NOD_function.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/nodes/NOD_function.h b/source/blender/nodes/NOD_function.h
index a67458418f2..b922b36686e 100644
--- a/source/blender/nodes/NOD_function.h
+++ b/source/blender/nodes/NOD_function.h
@@ -23,6 +23,7 @@ extern "C" {
void register_node_type_fn_boolean_math(void);
void register_node_type_fn_float_compare(void);
void register_node_type_fn_float_to_int(void);
+void register_node_type_fn_input_special_characters(void);
void register_node_type_fn_input_string(void);
void register_node_type_fn_input_vector(void);
void register_node_type_fn_random_float(void);