Template:PropInfo

From ZDoom Wiki
Jump to navigation Jump to search


Usage

Do not use. This is a WIP template.

Inserts a list with information about the variable behind the property. Structure:

{{PropInfo|<variable name>|<variable data type>|<Functions required to read. If omitted, replaced with "Readable directly.">|<Functions required to modify. If omitted, replaced with "Not modifiable (readonly)">}}

Examples

{{PropInfo|health|int||[[A_SetHealth]]}}

ZScript information:
  • Related field: health
  • Type: int
  • How to read: Readable directly
  • How to modify: A_SetHealth


{{PropInfo|renderstyle|int|[[GetRenderStyle]]|[[A_SetRenderStyle]]}}

ZScript information: