11 b.add_output<
decl::Int>(
"Mouse X").description(
12 "The region-space mouse X location, in pixels, increasing from 0 at the left");
13 b.add_output<
decl::Int>(
"Mouse Y").description(
14 "The region-space mouse Y location, in pixels, increasing from 0 at the bottom");
15 b.add_output<
decl::Int>(
"Region Width").description(
"The total X size of the region in pixels");
16 b.add_output<
decl::Int>(
"Region Height").description(
"The total Y size of the region in pixels");
24 const int2 mouse =
params.user_data()->call_data->operator_data->mouse_position;
25 const int2 size =
params.user_data()->call_data->operator_data->region_size;
26 params.set_output(
"Mouse X", mouse.x);
27 params.set_output(
"Mouse Y", mouse.y);
36 ntype.
ui_name =
"Mouse Position";
37 ntype.
ui_description =
"Retrieve the position of the mouse cursor";
#define GEO_NODE_TOOL_MOUSE_POSITION
#define NOD_REGISTER_NODE(REGISTER_FUNC)
static DBVT_INLINE btScalar size(const btDbvtVolume &a)
void node_register_type(bNodeType &ntype)
static void node_declare(NodeDeclarationBuilder &b)
static void node_register()
static void node_geo_exec(GeoNodeExecParams params)
void search_link_ops_for_tool_node(GatherLinkSearchOpParams ¶ms)
bool check_tool_context_and_error(GeoNodeExecParams ¶ms)
VecBase< int32_t, 2 > int2
void geo_node_type_base(blender::bke::bNodeType *ntype, std::string idname, const std::optional< int16_t > legacy_type)
std::string ui_description
NodeGeometryExecFunction geometry_node_execute
const char * enum_name_legacy
NodeGatherSocketLinkOperationsFunction gather_link_search_ops
NodeDeclareFunction declare