Basic examples done

This commit is contained in:
Insality
2025-03-29 20:00:55 +02:00
parent e1339a2ca8
commit 45493bc9dd
25 changed files with 537 additions and 474 deletions

View File

@@ -16,4 +16,12 @@ function M:set_value(value)
end
---@param properties_panel properties_panel
function M:properties_control(properties_panel)
properties_panel:add_slider("ui_value", 1, function(value)
self:set_value(value)
end)
end
return M