Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/NOD_node_declaration.hh
| Show First 20 Lines • Show All 80 Lines • ▼ Show 20 Lines | |||||
| */ | */ | ||||
| class SocketDeclaration { | class SocketDeclaration { | ||||
| protected: | protected: | ||||
| std::string name_; | std::string name_; | ||||
| std::string identifier_; | std::string identifier_; | ||||
| std::string description_; | std::string description_; | ||||
| bool hide_label_ = false; | bool hide_label_ = false; | ||||
| bool hide_value_ = false; | bool hide_value_ = false; | ||||
| bool compact_ = false; | |||||
| bool is_multi_input_ = false; | bool is_multi_input_ = false; | ||||
| bool no_mute_links_ = false; | bool no_mute_links_ = false; | ||||
| bool is_attribute_name_ = false; | bool is_attribute_name_ = false; | ||||
| bool is_default_link_socket_ = false; | bool is_default_link_socket_ = false; | ||||
| InputSocketFieldType input_field_type_ = InputSocketFieldType::None; | InputSocketFieldType input_field_type_ = InputSocketFieldType::None; | ||||
| OutputFieldDependency output_field_dependency_; | OutputFieldDependency output_field_dependency_; | ||||
| ▲ Show 20 Lines • Show All 352 Lines • Show Last 20 Lines | |||||