Module.Swap to manually swap

This commit is contained in:
Maddy Thorson 2021-02-27 19:03:24 -08:00
parent ef5a886b3a
commit b68ad22764

View File

@ -7,6 +7,7 @@ namespace Strawberry
private float msCounter;
private uint32 prevTicks;
private bool swap;
public this()
{
@ -62,7 +63,7 @@ namespace Strawberry
// exit or swap to another module
if (PlatformLayer.Closed())
return null;
else if (Input.KeyPressed(.F1))
else if (swap || Input.KeyPressed(.F1))
{
let swapTo = CreateSwapModule();
if (swapTo != null)
@ -81,5 +82,10 @@ namespace Strawberry
{
return null;
}
public void Swap()
{
swap = true;
}
}
}