Difference between revisions of "FormList"
Jump to navigation
Jump to search
imported>Hitbts m (category) |
imported>Qazaaq m (format) |
||
Line 4: | Line 4: | ||
'''Papyrus:''' [[FormList Script]] | '''Papyrus:''' [[FormList Script]] | ||
=Overview= | |||
A FormList is an ordered list of forms; these lists can be used in a wide variety of places, such as [[conditions]]. [[Papyrus]] scripts can also add items onto the end of a FormList, making FormLists a powerful way to build systems that mods can extend. For example, the workshop menus are actually implemented as a series of FormLists that point to other FormLists, so mods can use Papyrus to add their own menus without conflicting with each other. | A FormList is an ordered list of forms; these lists can be used in a wide variety of places, such as [[conditions]]. [[Papyrus]] scripts can also add items onto the end of a FormList, making FormLists a powerful way to build systems that mods can extend. For example, the workshop menus are actually implemented as a series of FormLists that point to other FormLists, so mods can use Papyrus to add their own menus without conflicting with each other. | ||
Line 12: | Line 13: | ||
*'''Name:''' A short span of text that is only shown in the Object Window. You can use this to add a quick comment to the list explaining its purpose or where it is used. | *'''Name:''' A short span of text that is only shown in the Object Window. You can use this to add a quick comment to the list explaining its purpose or where it is used. | ||
*'''List:''' The forms in this list. You can reorder forms in the list by selecting them and using the "<<" and ">>" buttons. You can also quickly add a group of forms to the list by multi-selecting them in the Object Window, and then dragging them into the list panel in this dialog box. | *'''List:''' The forms in this list. You can reorder forms in the list by selecting them and using the "<<" and ">>" buttons. You can also quickly add a group of forms to the list by multi-selecting them in the Object Window, and then dragging them into the list panel in this dialog box. | ||
== See Also == | |||
*[[:Category:Miscellaneous|Miscellaneous Category]] |
Revision as of 02:24, 13 July 2016
Papyrus: FormList Script
Overview
A FormList is an ordered list of forms; these lists can be used in a wide variety of places, such as conditions. Papyrus scripts can also add items onto the end of a FormList, making FormLists a powerful way to build systems that mods can extend. For example, the workshop menus are actually implemented as a series of FormLists that point to other FormLists, so mods can use Papyrus to add their own menus without conflicting with each other.
Editor Dialog
- ID: The editor ID that this form uses in the Creation Kit.
- Name: A short span of text that is only shown in the Object Window. You can use this to add a quick comment to the list explaining its purpose or where it is used.
- List: The forms in this list. You can reorder forms in the list by selecting them and using the "<<" and ">>" buttons. You can also quickly add a group of forms to the list by multi-selecting them in the Object Window, and then dragging them into the list panel in this dialog box.