This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using UnityEngine; | |
| using System; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| //parts of this were inspired by https://github.com/prime31/UIToolkit/blob/master/Assets/Plugins/UIToolkit/UIElements/UIText.cs | |
| public class FDFontLabel : FLabel | |
| { | |
| protected int dynamicFontSize = 32; | |
| protected FontStyle dynamicFontStyle = FontStyle.Normal; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Requires AutoHotkey v2.0 | |
| ; Use Ctrl+Tab to switch between windows of the same application | |
| global windowOrder := Map() | |
| ^Tab:: | |
| { | |
| ; Get the process name and ID of the active window | |
| processName := WinGetProcessName("A") | |
| pid := WinGetPID("A") |