Tiling node to component, add way to move examples properties code to example itself

This commit is contained in:
Insality
2025-03-29 19:29:08 +02:00
parent 3f22e9c542
commit d6fb8cad09
6 changed files with 49 additions and 31 deletions

View File

@@ -185,29 +185,6 @@ function M.get_examples()
root = "example_tiling_node/root",
code_url = "example/examples/widgets/tiling_node/example_tiling_node.lua",
widget_class = require("example.examples.widgets.tiling_node.example_tiling_node"),
properties_control = function(instance, properties_panel)
---@cast instance examples.example_tiling_node
properties_panel:add_slider("Repeat X", 0, function(value)
local repeat_x = math.floor(value * 10)
instance.tiling_node:refresh(repeat_x, nil)
end)
properties_panel:add_slider("Repeat Y", 0, function(value)
local repeat_y = math.floor(value * 10)
instance.tiling_node:refresh(nil, repeat_y)
end)
properties_panel:add_slider("Offset X", 0, function(value)
instance.tiling_node:set_offset(value, nil)
end)
properties_panel:add_slider("Offset Y", 0, function(value)
instance.tiling_node:set_offset(nil, value)
end)
properties_panel:add_slider("Margin X", 0, function(value)
instance.tiling_node:set_margin(value, nil)
end)
properties_panel:add_slider("Margin Y", 0, function(value)
instance.tiling_node:set_margin(nil, value)
end)
end,
}
}
end

View File

@@ -15,14 +15,15 @@ nodes {
}
nodes {
size {
x: 500.0
y: 500.0
x: 900.0
y: 900.0
}
type: TYPE_BOX
texture: "tiling_texture/pattern_0004"
id: "tiling_node"
parent: "root"
inherit_alpha: true
alpha: 0.42
material: "gui_tiling_node"
}
material: "/builtins/materials/gui.material"

View File

@@ -5,7 +5,32 @@ local M = {}
function M:init()
self.tiling_node = self.druid:new_widget(tiling_node, nil, nil, self:get_node("tiling_node"))
self.tiling_node = self.druid:new(tiling_node, self:get_node("tiling_node"))
end
---@param properties_panel properties_panel
function M:properties_control(properties_panel)
properties_panel:add_slider("Repeat X", 0, function(value)
local repeat_x = math.floor(value * 10)
self.tiling_node:set_repeat(repeat_x, nil)
end)
properties_panel:add_slider("Repeat Y", 0, function(value)
local repeat_y = math.floor(value * 10)
self.tiling_node:set_repeat(nil, repeat_y)
end)
properties_panel:add_slider("Offset X", 0, function(value)
self.tiling_node:set_offset(value, nil)
end)
properties_panel:add_slider("Offset Y", 0, function(value)
self.tiling_node:set_offset(nil, value)
end)
properties_panel:add_slider("Margin X", 0, function(value)
self.tiling_node:set_margin(value, nil)
end)
properties_panel:add_slider("Margin Y", 0, function(value)
self.tiling_node:set_margin(nil, value)
end)
end