mirror of
https://github.com/dcronqvist/DotTiled.git
synced 2025-05-08 15:46:02 +03:00
Update BoolProperty.cs
This commit is contained in:
parent
c83c8c7be9
commit
606d2ec57d
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ public class BoolProperty : IProperty<bool>
|
|||
public required bool Value { get; set; }
|
||||
|
||||
/// <inheritdoc/>
|
||||
public string ValueString => Value.ToString();
|
||||
public string ValueString => Value ? "true" : "false"; //Tiled outputs lowercase
|
||||
|
||||
/// <inheritdoc/>
|
||||
public IProperty Clone() => new BoolProperty
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue