All public logs

From Crumbled World Wiki

Combined display of all available logs of Crumbled World Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 07:59, 6 July 2025 Anders talk contribs created page ComboBoxExampleCode (Created page with "==Example== <syntaxhighlight lang="lua"> function changeSetting(button) comboBox:setText(button:getTag()) end comboBox = panel:add(ComboBox(PanelSize(size), items[1])) local items = {"item1","item2","item3","item4"} for i=1, #items do local itemButton = comboBox:addItem( Button(PanelSize(Vec2(-1,0.03)), items[i]) ) itemButton:setTag(items[i]) itemButton:addEventCallbackExecute(changeSetting) end </syntaxhighlight>")