Skip to content
Snippets Groups Projects
  1. Dec 14, 2020
  2. Dec 05, 2020
  3. Dec 04, 2020
    • James R.'s avatar
      Lua tag lists · 314fd278
      James R. authored
      Index and take length of tag lists like a table, 1-indexed. There are three
      methods which may be used on tag lists:
      
      list:iterate() - returns an iterator over the tags in the list
      list:has(tag) - returns a boolean whether the tag is in the list
      list.shares(list2) - returns whether two lists share a tag
      
      "find" is also an alias to "has". Each method may be accessed from the global
      taglist library too, e.g. taglist.iterate(list)
      
      Tag lists may be compared with an equality operator too. This will tell you if
      the two lists are composed of identical tags.
      
      Accessible from sector.taglist, line.taglist and mapthing.taglist.
      314fd278
    • James R.'s avatar
      Mkae Lua taggroups indexable · c2217bb4
      James R. authored
      They are 1-indexed.
      c2217bb4
    • James R.'s avatar
      hehehehehe what if I forgot to git add? · 96851e52
      James R. authored
      96851e52
    • James R.'s avatar
      Lua taglib for accessing taggroups · 621efbfa
      James R. authored
      The global "tags" can be iterated upon for every unique tag which is set in the
      level. If a tag is set on a sector/line/thing, it will be included. Taking the
      length of "tags" will give you the number of these unique tags. (If a tag is
      set on multiple sectors/lines/things, it will only be counted once though.)
      
      For sectors, lines and mapthings, call the field "tagged". This function takes
      one argument, which is the tag. The return value can be iterated over for all
      the sectors/lines/things with that tag. The length can also be taken for the
      number of such objects. If no argument is given, the global tag is default.
      621efbfa
  4. Dec 01, 2020
  5. Nov 29, 2020
  6. Nov 26, 2020
  7. Nov 24, 2020
  8. Nov 23, 2020
  9. Nov 22, 2020
Loading