Compare commits

...

4 Commits

Author SHA1 Message Date
an 33bedecf81 better mapping 2019-04-02 06:56:41 -04:00
an 21b86e4a0d trees 2019-04-02 06:56:26 -04:00
an a375ce909a update to g3.7.2 2019-04-02 06:36:03 -04:00
an 9cdf4ff038 update to g3.7.1 2019-04-02 06:35:05 -04:00
9 changed files with 3094 additions and 28 deletions

View File

@ -149,17 +149,6 @@ TODO
# Global Objects
<!-- toc global -->
* [DEHInfo](api-global-DEHInfo.md)
* [FOptionMenuSettings](api-global-FOptionMenuSettings.md)
* [GameInfoStruct](api-global-GameInfoStruct.md)
* [LevelLocals](api-global-LevelLocals.md)
<!-- toc end -->
These types are used by global variables.
<!-- toc global-data -->
* [Client](api-global-data-Client.md)
@ -171,7 +160,7 @@ These types are used by global variables.
<!-- toc end -->
These variables are accessible in any context and are not bound by any specific
object.
object. Generally these mirror global information within the engine itself.
<!-- toc global-func -->
@ -185,6 +174,17 @@ object.
<!-- toc end -->
These functions are accessible in any context and are not bound by any specific
object.
object. Generally these are utility functions.
<!-- toc global -->
* [DEHInfo](api-global-DEHInfo.md)
* [FOptionMenuSettings](api-global-FOptionMenuSettings.md)
* [GameInfoStruct](api-global-GameInfoStruct.md)
* [LevelLocals](api-global-LevelLocals.md)
<!-- toc end -->
These are the types used by global variables.
<!-- EOF -->

View File

@ -1,9 +1,8 @@
Table of Contents
=================
Entry Points
============
<!-- vim-markdown-toc GFM -->
* [Entry Points](#entry-points)
* [ACS](#acs)
* [Actors](#actors)
* [CVARINFO](#cvarinfo)
@ -18,9 +17,6 @@ Table of Contents
<!-- vim-markdown-toc -->
Entry Points
============
For backwards compatibility reasons and so as to not bloat the ZScript language
itself, many interactions with the engine are not defined in ZScript. This
section describes all ZScript interactions with the engine, both inside and

View File

@ -1,4 +1,5 @@
# Glossary
Glossary
========
<!-- toc glossary -->

View File

@ -1,5 +1,11 @@
zscript-doc
===========
ZScriptDoc
==========
This is documentation for the ZScript language. See `zscript-doc-1-language.md`
for license information.
This is documentation for the ZScript language. CC0 public domain. See [LICENSE](LICENSE.txt) for more information.
* [Language](1-language.md) - for information on the language itself.
* [API](2-api.md) - for information on the interfaces provided by GZDoom. This is itself a map of all of the API files.
* [Entry Points](3-entry.md) - for information on the ways you can tell the engine to add new things.
* [Glossary](9-glossary.md) - for miscallaneous information and concepts you should learn. This is itself a map of all of the glossary files.
<!-- EOF -->

View File

@ -59,6 +59,7 @@ struct Screen
| Name | Description |
| ---- | ----------- |
| `DTA_Base` | No position scaling is performed. |
| `DTA_Clean` | Scales all positions by `Clean*Fac`. See the documentation for those variables for more information. |
| `DTA_CleanNoMove` | Scales the destination width and height by `Clean*Fac`. |
| `DTA_CleanNoMove_1` | Scales the destination width and height by `Clean*Fac_1`. |

View File

@ -1,6 +1,6 @@
# Classes
Here is a full tree of all classes in ZScript as of GZDoom 3.7.0. There are
Here is a full tree of all classes in ZScript as of GZDoom 3.7.2. There are
1456 classes total.
```

View File

@ -1,8 +1,8 @@
# Structures
Here is a full list of all structures in ZScript as of GZDoom 3.7.0. There are
74 structures total. Note that some of these are merely implementation details
and should not be used in code.
Here is a full list of all structures in ZScript as of GZDoom 3.7.2. There are
74 structures total. Note that some of these are merely
implementation details and should not be used in code.
```
Struct

1531
trees/tree_g3.7.1.txt Normal file

File diff suppressed because it is too large Load Diff

1531
trees/tree_g3.7.2.txt Normal file

File diff suppressed because it is too large Load Diff