Skip to content

Commit

Permalink
- Add support for extent and distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
Xterionix committed Jul 17, 2024
1 parent 6933812 commit 0f2e5ec
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions source/behavior/feature_rules/format/minecraft.feature_rules.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,28 @@
"minimum": 1
}
}
},
{
"type": "object",
"additionalProperties": false,
"properties": {
"distribution": {
"title": "Distribution",
"description": "Distribution type",
"type": "string",
"enum": ["uniform", "fixed_grid", "jittered_grid", "gaussian", "inverse_gaussian", "triangle"]
},
"extent": {
"title": "Extent",
"description": "Represents the range of values on which that distribution operates, from minimum to maximum.",
"type": "array",
"minItems": 2,
"maxItems": 2,
"items": {
"type": "number"
}
}
}
}
]
}
Expand Down

0 comments on commit 0f2e5ec

Please sign in to comment.