Changeset 7625 for code/branches/releasetodo/data
- Timestamp:
- Nov 6, 2010, 8:17:20 PM (14 years ago)
- Location:
- code/branches/releasetodo/data
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/releasetodo/data/gui/scripts/SingleplayerMenu.lua
r7163 r7625 6 6 listbox = winMgr:getWindow("orxonox/SingleplayerLevelListbox") 7 7 preselect = orxonox.LevelManager:getInstance():getDefaultLevel() 8 orxonox.LevelManager:getInstance():compileAvailableLevelList()8 size = orxonox.LevelManager:getInstance():getNumberOfLevels() 9 9 local levelList = {} 10 10 local index = 0 11 11 local level = "" 12 while true do12 while index < size do 13 13 level = orxonox.LevelManager:getInstance():getAvailableLevelListItem(index) 14 if level == "" then15 break16 end17 14 table.insert(levelList, level) 18 15 index = index + 1 -
code/branches/releasetodo/data/levels/empty_level.oxw
r7163 r7625 1 <LevelInfo 2 name = "Empty level" 3 description = "A level with absolutely nothing in it." 4 tags = "test, empty" 5 /> 6 1 7 <?lua 2 8 include("stats.oxo") -
code/branches/releasetodo/data/levels/notifications.oxw
r7614 r7625 1 <LevelInfo 2 name = "Notifications showcase" 3 description = "Level to test and showcase notifications." 4 tags = "test, showcase, notifications" 5 /> 6 1 7 <?lua 2 8 include("hudtemplates3.oxo") … … 5 11 include("templates/lodinformation.oxt") 6 12 ?> 7 8 <LevelInfo9 name = "Notifications showcase"10 description = "Level to test and showcase notifications."11 tags = "test, showcase, notifications"12 />13 13 14 14 <Level
Note: See TracChangeset
for help on using the changeset viewer.