Skip to content

Commit

Permalink
update schema
Browse files Browse the repository at this point in the history
  • Loading branch information
bluepilledgreat committed Oct 20, 2024
1 parent 91a3a58 commit eb4eda5
Showing 1 changed file with 43 additions and 6 deletions.
49 changes: 43 additions & 6 deletions Bloxstrap/Resources/CustomBootstrapperSchema.json
Original file line number Diff line number Diff line change
Expand Up @@ -126,13 +126,20 @@
"Y": "double"
}
},
"RenderTransform": {
"ImageBrush": {
"IsCreatable": true,
"Attributes": {}
},
"Content": {
"IsCreatable": true,
"Attributes": {}
"Attributes": {
"AlignmentX": "AlignmentX",
"AlignmentY": "AlignmentY",
"Opacity": "double",
"Stretch": "Stretch",
"TileMode": "TileMode",
"ViewboxUnits": "BrushMappingMode",
"ViewportUnits": "BrushMappingMode",
"Viewbox": "Rect",
"Viewport": "Rect",
"ImageSource": "Source"
}
}
},
"Types": {
Expand All @@ -146,6 +153,7 @@
"int": {},
"double": {},
"Thickness": {},
"Rect": {},
"Brush": {},
"Content": {},
"Visibility": {
Expand Down Expand Up @@ -246,6 +254,35 @@
"DownOnly",
"Both"
]
},
"AlignmentX": {
"Values": [
"Left",
"Center",
"Right"
]
},
"AlignmentY": {
"Values": [
"Top",
"Center",
"Bottom"
]
},
"TileMode": {
"Values": [
"None",
"FlipX",
"FlipY",
"FlipXY",
"Tile"
]
},
"BrushMappingMode": {
"Values": [
"Absolute",
"RelativeToBoundingBox"
]
}
}
}

0 comments on commit eb4eda5

Please sign in to comment.