bit more space for the ticket rate
This commit is contained in:
parent
12b4177e3b
commit
7b892e5a90
1 changed files with 2 additions and 2 deletions
|
@ -70,7 +70,7 @@ namespace TouchyTickets {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
var ticketGroup = main.AddChild(new Group(Anchor.AutoCenter, new Vector2(1, 0.15F), false));
|
var ticketGroup = main.AddChild(new Group(Anchor.AutoCenter, new Vector2(1, 0.175F), false));
|
||||||
ticketGroup.AddChild(new Paragraph(Anchor.AutoCenter, 10000, p => PrettyPrintNumber(GameImpl.Instance.Tickets) + "<i ticket>", true) {
|
ticketGroup.AddChild(new Paragraph(Anchor.AutoCenter, 10000, p => PrettyPrintNumber(GameImpl.Instance.Tickets) + "<i ticket>", true) {
|
||||||
TextScale = 0.3F
|
TextScale = 0.3F
|
||||||
});
|
});
|
||||||
|
@ -79,7 +79,7 @@ namespace TouchyTickets {
|
||||||
});
|
});
|
||||||
BigInteger lastTickets = 0;
|
BigInteger lastTickets = 0;
|
||||||
ActiveCoroutine storeWobble = null;
|
ActiveCoroutine storeWobble = null;
|
||||||
var storeGroup = main.AddChild(new CustomDrawGroup(Anchor.AutoCenter, new Vector2(1, 0.45F), null, null, false) {
|
var storeGroup = main.AddChild(new CustomDrawGroup(Anchor.AutoCenter, new Vector2(1, 0.425F), null, null, false) {
|
||||||
OnUpdated = (e, time) => {
|
OnUpdated = (e, time) => {
|
||||||
if (lastTickets != GameImpl.Instance.Tickets) {
|
if (lastTickets != GameImpl.Instance.Tickets) {
|
||||||
lastTickets = GameImpl.Instance.Tickets;
|
lastTickets = GameImpl.Instance.Tickets;
|
||||||
|
|
Loading…
Reference in a new issue