Skip to content

+EA 23.72 Nightly Hotfix 1 - Plugin.UI

January 2, 2025

1 file modified.

Important Changes

None.

Window

@@ -483,6 +483,18 @@ public bool sort_ascending

cs
			}
		}

		public bool shiftToShowMenu 
		{ 
			get 
			{ 
				return b1[13]; 
			} 
			set 
			{ 
				b1[13] = value; 
			} 
		} 

		public FilterResult IsFilterPass(string text)
		{
			bool flag = false;

@@ -1610,7 +1622,7 @@ private void Update()

cs
	isTop = InputModuleEX.GetComponentOf<Window>() == this;
	if (isFloat && (bool)cgFloatMenu && cgFloatMenu.enabled)
	{
		bool flag = InputModuleEX.IsPointerOver(this); 
		bool flag = InputModuleEX.IsPointerOver(this) && (saveData == null || !saveData.shiftToShowMenu || Input.GetKey(KeyCode.LeftShift)); 
		floatAlpha = Mathf.Clamp(floatAlpha + (flag ? 2f : (-2f)) * Time.deltaTime * 1.5f, 0.5f, 1f);
		if ((bool)cgBG)
		{