Move bindings to druid, update widgets

This commit is contained in:
Insality
2025-02-18 21:12:56 +02:00
parent 5eaa50552a
commit dd5f619345
10 changed files with 103 additions and 95 deletions

View File

@@ -117,6 +117,7 @@ nodes {
y: 1.0
z: 1.0
}
adjust_mode: ADJUST_MODE_STRETCH
parent: "content"
inherit_alpha: true
outline_alpha: 0.0
@@ -155,6 +156,7 @@ nodes {
y: 1.0
z: 1.0
}
adjust_mode: ADJUST_MODE_STRETCH
parent: "content"
inherit_alpha: true
outline_alpha: 0.0

View File

@@ -40,6 +40,9 @@ function M:init()
self.container = self.druid:new_container(self.root)
self.container:add_container(self.mini_graph.container)
local container_content = self.container:add_container("content")
container_content:add_container("text_max_value")
container_content:add_container("text_per_second")
end
@@ -93,4 +96,4 @@ function M:update_text_memory()
end
return M
return M