Skip to content

Instantly share code, notes, and snippets.

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;
@jeremyfa
jeremyfa / SwitchWindow.ahk
Created July 22, 2024 14:42
An AutoHotKey script to switch to the next window of the currently active app (CTRL + TAB)
#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")