Added link between Color and Output nodes in initial state of node editor demo

This commit is contained in:
Peter Schulman 2023-12-11 19:45:37 +02:00
parent a531248fa2
commit 862405f8be
1 changed files with 3 additions and 2 deletions

View File

@ -279,14 +279,15 @@ node_editor_link(struct node_editor *editor, struct node *in_node, int in_slot,
static void static void
node_editor_init(struct node_editor *editor) node_editor_init(struct node_editor *editor)
{ {
struct nk_vec2 output_node_position = {600, 400}; struct nk_vec2 output_node_position = {500, 300};
struct nk_vec2 color_node_position = {40, 10}; struct nk_vec2 color_node_position = {200, 200};
memset(editor, 0, sizeof(*editor)); memset(editor, 0, sizeof(*editor));
editor->begin = NULL; editor->begin = NULL;
editor->end = NULL; editor->end = NULL;
editor->output_node = node_output_create(editor, output_node_position); editor->output_node = node_output_create(editor, output_node_position);
node_color_create(editor, color_node_position); node_color_create(editor, color_node_position);
node_editor_link(editor, editor->node_buf[1], 0, editor->output_node, 0);
editor->show_grid = nk_true; editor->show_grid = nk_true;
} }