mirror of
https://github.com/dcronqvist/DotTiled.git
synced 2025-02-05 17:02:49 +02:00
Add version compatibility matrix to docs
This commit is contained in:
parent
373cdc991e
commit
914a667c35
1 changed files with 9 additions and 1 deletions
|
@ -7,3 +7,11 @@ Certain properties throughout the representation model are marked as *optional*
|
||||||
- Properties that make use of the [required](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/required) keyword must be present in the file, otherwise an error will be raised.
|
- Properties that make use of the [required](https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/required) keyword must be present in the file, otherwise an error will be raised.
|
||||||
- Properties that have default values will use the default value if the property is not present in the file, and are not marked as required or optional since you must not provide a value for them.
|
- Properties that have default values will use the default value if the property is not present in the file, and are not marked as required or optional since you must not provide a value for them.
|
||||||
- Properties that are wrapped in <xref:DotTiled.Optional`1> may or may not be present in the file, and have no default value.
|
- Properties that are wrapped in <xref:DotTiled.Optional`1> may or may not be present in the file, and have no default value.
|
||||||
|
|
||||||
|
## Version compatibility
|
||||||
|
|
||||||
|
The representation model is designed to be compatible with the latest version of Tiled. This means that it may not be able to read files from older versions of Tiled, or files that use features that are not yet supported by the representation model. However, here is a table of which versions of Tiled are supported by which versions of DotTiled.
|
||||||
|
|
||||||
|
| Tiled version | Compatible DotTiled version(s) |
|
||||||
|
|---------------|--------------------------------|
|
||||||
|
| 1.11 | 0.1.0 |
|
Loading…
Add table
Reference in a new issue