Releases: rds1983/Myra
Releases · rds1983/Myra
0.7.1.139
0.7.0.137
0.6.7.133
- Added two more simple widgets: HorizontalSeparator and VerticalSeparator
- Fixed #33
- Added ability to customize what parameters is passed to the Myra's SpriteBatch.Begin. I.e. following code will make ui 1.5x scaled:
_desktop = new Desktop();
_desktop.SpriteBatchBeginParams.TransformMatrix = Matrix.CreateScale(1.5f);
0.6.6.130
- Added transparency. Now Widget class has Opacity property which can take values from 0.0 to 1.0(default value is 1.0). If both container widget and its child have that property set then they are multiplied. I.e. if container opacity is 0.5 and its child opacity is 0.6. Then the child will be rendered with opacity 0.3.
- Added yet another sample FantasyMapGenerator, which is slightly more complicated than rest of samples. It provides utility for generation of fantasy continents:
- Some bug fixes.