mirror of
				https://github.com/MaddyThorson/StrawberryBF.git
				synced 2025-11-04 01:41:33 +08:00 
			
		
		
		
	Module.Swap to manually swap
This commit is contained in:
		@ -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;
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user