Cryptomatte: Default Node Size.

Set the min/max and default node size of the cryptomatte node.
This commit is contained in:
Jeroen Bakker 2021-03-23 10:38:56 +01:00
parent 9c7492e2e0
commit 1dea9701e6
1 changed files with 1 additions and 0 deletions

View File

@ -287,6 +287,7 @@ void register_node_type_cmp_cryptomatte(void)
cmp_node_type_base(&ntype, CMP_NODE_CRYPTOMATTE, "Cryptomatte", NODE_CLASS_MATTE, 0);
node_type_socket_templates(&ntype, cmp_node_cryptomatte_in, cmp_node_cryptomatte_out);
node_type_size(&ntype, 320, 140, 700);
node_type_init(&ntype, node_init_cryptomatte);
ntype.initfunc_api = node_init_api_cryptomatte;
ntype.poll = node_poll_cryptomatte;