Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/geometry/nodes/node_geo_collection_info.cc
| Show All 18 Lines | |||||
| #include "DNA_collection_types.h" | #include "DNA_collection_types.h" | ||||
| #include "UI_interface.h" | #include "UI_interface.h" | ||||
| #include "UI_resources.h" | #include "UI_resources.h" | ||||
| #include "node_geometry_util.hh" | #include "node_geometry_util.hh" | ||||
| static bNodeSocketTemplate geo_node_collection_info_in[] = { | static bNodeSocketTemplate geo_node_collection_info_in[] = { | ||||
| {SOCK_COLLECTION, N_("Collection")}, | {SOCK_COLLECTION, | ||||
| N_("Collection"), | |||||
| 0.0f, | |||||
| 0.0f, | |||||
| 0.0f, | |||||
| 0.0f, | |||||
| 0.0f, | |||||
| 0.0f, | |||||
| PROP_NONE, | |||||
| SOCK_HIDE_LABEL}, | |||||
| {-1, ""}, | {-1, ""}, | ||||
| }; | }; | ||||
| static bNodeSocketTemplate geo_node_collection_info_out[] = { | static bNodeSocketTemplate geo_node_collection_info_out[] = { | ||||
| {SOCK_GEOMETRY, N_("Geometry")}, | {SOCK_GEOMETRY, N_("Geometry")}, | ||||
| {-1, ""}, | {-1, ""}, | ||||
| }; | }; | ||||
| ▲ Show 20 Lines • Show All 66 Lines • Show Last 20 Lines | |||||