Differential D11754 Diff 38974 source/blender/nodes/geometry/nodes/node_geo_attribute_sample_texture.cc
Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/geometry/nodes/node_geo_attribute_sample_texture.cc
| Show All 24 Lines | |||||
| #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_attribute_sample_texture_in[] = { | static bNodeSocketTemplate geo_node_attribute_sample_texture_in[] = { | ||||
| {SOCK_GEOMETRY, N_("Geometry")}, | {SOCK_GEOMETRY, N_("Geometry")}, | ||||
| {SOCK_TEXTURE, N_("Texture")}, | {SOCK_TEXTURE, N_("Texture"), 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, PROP_NONE, SOCK_HIDE_LABEL}, | ||||
| {SOCK_STRING, N_("Mapping")}, | {SOCK_STRING, N_("Mapping")}, | ||||
| {SOCK_STRING, N_("Result")}, | {SOCK_STRING, N_("Result")}, | ||||
| {-1, ""}, | {-1, ""}, | ||||
| }; | }; | ||||
| static bNodeSocketTemplate geo_node_attribute_sample_texture_out[] = { | static bNodeSocketTemplate geo_node_attribute_sample_texture_out[] = { | ||||
| {SOCK_GEOMETRY, N_("Geometry")}, | {SOCK_GEOMETRY, N_("Geometry")}, | ||||
| {-1, ""}, | {-1, ""}, | ||||
| ▲ Show 20 Lines • Show All 101 Lines • Show Last 20 Lines | |||||