Node cleanup

This commit is contained in:
luboslenco
2025-10-01 12:40:05 +02:00
parent 2d988dbc98
commit e884bd87d4
64 changed files with 4182 additions and 4411 deletions
@@ -0,0 +1,64 @@
let text_texture_node_def: ui_node_t = {
id: 0,
name: _tr("Text Texture"),
type: "TEX_TEXT", // extension
x: 0,
y: 0,
color: 0xff4982a0,
inputs: [
{
id: 0,
node_id: 0,
name: _tr("Vector"),
type: "VECTOR",
color: 0xff6363c7,
default_value: f32_array_create_xyz(0.0, 0.0, 0.0),
min: 0.0,
max: 1.0,
precision: 100,
display: 0
}
],
outputs: [
{
id: 0,
node_id: 0,
name: _tr("Color"),
type: "RGBA",
color: 0xffc7c729,
default_value: f32_array_create_xyzw(0.0, 0.0, 0.0, 1.0),
min: 0.0,
max: 1.0,
precision: 100,
display: 0
},
{
id: 0,
node_id: 0,
name: _tr("Alpha"),
type: "VALUE",
color: 0xffa1a1a1,
default_value: f32_array_create_x(1.0),
min: 0.0,
max: 1.0,
precision: 100,
display: 0
}
],
buttons: [
{
name: "text",
type: "STRING",
output: -1,
default_value: f32_array_create_x(0), // "",
data: null,
min: 0.0,
max: 1.0,
precision: 100,
height: 0
}
],
width: 0,
flags: 0
};