1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-11-22 12:58:33 +01:00

fixed the ui demo

This commit is contained in:
Ellpeck 2019-11-20 15:01:24 +01:00
parent 25774dc8dd
commit 56db141a68

View file

@ -224,7 +224,7 @@ namespace Demos {
// This method is used by the wobbling button (see above) // This method is used by the wobbling button (see above)
// Note that this particular example makes use of the Coroutine package, which is not required but makes demonstration easier // Note that this particular example makes use of the Coroutine package, which is not required but makes demonstration easier
private IEnumerator<Wait> WobbleButton(CustomDrawGroup group) { private IEnumerator<IWait> WobbleButton(CustomDrawGroup group) {
var counter = 0F; var counter = 0F;
while (counter < 4 * Math.PI) { while (counter < 4 * Math.PI) {
// A custom draw group allows the implementation of any sort of custom rendering for all of its child components // A custom draw group allows the implementation of any sort of custom rendering for all of its child components
@ -240,7 +240,7 @@ namespace Demos {
group.Transform = Matrix.Identity; group.Transform = Matrix.Identity;
} }
private IEnumerator<Wait> WobbleProgressBar(ProgressBar bar) { private IEnumerator<IWait> WobbleProgressBar(ProgressBar bar) {
var reducing = false; var reducing = false;
while (bar.Root != null) { while (bar.Root != null) {
if (reducing) { if (reducing) {