Changeset View
Changeset View
Standalone View
Standalone View
source/blender/nodes/texture/nodes/node_texture_checker.c
| Show All 15 Lines | |||||
| * The Original Code is Copyright (C) 2005 Blender Foundation. | * The Original Code is Copyright (C) 2005 Blender Foundation. | ||||
| * All rights reserved. | * All rights reserved. | ||||
| */ | */ | ||||
| /** \file | /** \file | ||||
| * \ingroup texnodes | * \ingroup texnodes | ||||
| */ | */ | ||||
| #include "node_texture_util.h" | #include "node_texture_utils.h" | ||||
| #include "NOD_texture.h" | #include "NOD_texture.h" | ||||
| #include <math.h> | #include <math.h> | ||||
| static bNodeSocketTemplate inputs[] = { | static bNodeSocketTemplate inputs[] = { | ||||
| {SOCK_RGBA, 1, N_("Color1"), 1.0f, 0.0f, 0.0f, 1.0f}, | {SOCK_RGBA, 1, N_("Color1"), 1.0f, 0.0f, 0.0f, 1.0f}, | ||||
| {SOCK_RGBA, 1, N_("Color2"), 1.0f, 1.0f, 1.0f, 1.0f}, | {SOCK_RGBA, 1, N_("Color2"), 1.0f, 1.0f, 1.0f, 1.0f}, | ||||
| {SOCK_FLOAT, 1, N_("Size"), 0.5f, 0.0f, 0.0f, 0.0f, 0.0f, 100.0f, PROP_UNSIGNED}, | {SOCK_FLOAT, 1, N_("Size"), 0.5f, 0.0f, 0.0f, 0.0f, 0.0f, 100.0f, PROP_UNSIGNED}, | ||||
| {-1, 0, ""}, | {-1, 0, ""}, | ||||
| ▲ Show 20 Lines • Show All 46 Lines • Show Last 20 Lines | |||||