Skip to content

Commit

Permalink
Change tileIDs to 2D array of Ints
Browse files Browse the repository at this point in the history
  • Loading branch information
jobe-m committed Sep 26, 2024
1 parent f2ba0a2 commit ee70b64
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -862,7 +862,7 @@ data class LayerDefinition (
/**
* Contains all the auto-layer rule definitions.
*/
// val autoRuleGroups: List<AutoLayerRuleGroup>,
val autoRuleGroups: List<AutoLayerRuleGroup>,

val autoSourceLayerDefUid: Int? = null,

Expand Down Expand Up @@ -1073,7 +1073,7 @@ data class AutoLayerRuleDefinition (
* Array of all the tile IDs. They are used randomly or as stamps, based on `tileMode` value.
*/
@SerialName("tileRectsIds")
val tileIDS: IntArray,
val tileIDS: List<IntArray>,

/**
* Defines how tileIds array is used Possible values: `Single`, `Stamp`
Expand Down

0 comments on commit ee70b64

Please sign in to comment.