Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/node.cc
| Show First 20 Lines • Show All 5,817 Lines • ▼ Show 20 Lines | static void registerFunctionNodes() | ||||
| register_node_type_fn_float_to_int(); | register_node_type_fn_float_to_int(); | ||||
| register_node_type_fn_input_special_characters(); | register_node_type_fn_input_special_characters(); | ||||
| register_node_type_fn_input_string(); | register_node_type_fn_input_string(); | ||||
| register_node_type_fn_input_vector(); | register_node_type_fn_input_vector(); | ||||
| register_node_type_fn_random_value(); | register_node_type_fn_random_value(); | ||||
| register_node_type_fn_string_length(); | register_node_type_fn_string_length(); | ||||
| register_node_type_fn_string_substring(); | register_node_type_fn_string_substring(); | ||||
| register_node_type_fn_value_to_string(); | register_node_type_fn_value_to_string(); | ||||
| register_node_type_fn_align_euler_to_vector(); | |||||
| } | } | ||||
| void BKE_node_system_init(void) | void BKE_node_system_init(void) | ||||
| { | { | ||||
| nodetreetypes_hash = BLI_ghash_str_new("nodetreetypes_hash gh"); | nodetreetypes_hash = BLI_ghash_str_new("nodetreetypes_hash gh"); | ||||
| nodetypes_hash = BLI_ghash_str_new("nodetypes_hash gh"); | nodetypes_hash = BLI_ghash_str_new("nodetypes_hash gh"); | ||||
| nodesockettypes_hash = BLI_ghash_str_new("nodesockettypes_hash gh"); | nodesockettypes_hash = BLI_ghash_str_new("nodesockettypes_hash gh"); | ||||
| ▲ Show 20 Lines • Show All 145 Lines • Show Last 20 Lines | |||||