This file contains 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
Fundamentals | |
https://github.com/QuantumCalzone/UnityUtilitiesAndExtensions.git#upm | |
https://github.com/QuantumCalzone/UnityGitPackageUpdater.git#upm | |
https://github.com/QuantumCalzone/UnityShortcuts.git#upm | |
Helpers | |
https://github.com/QuantumCalzone/UnityBookmarks.git#upm | |
https://github.com/QuantumCalzone/UnityLayoutElementExtended.git#upm | |
Personal Framework |
This file contains 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 UnityEngine.UI; | |
namespace QuantumCalzone | |
{ | |
[AddComponentMenu("Layout/Extended/Layout Element Extended")] | |
[RequireComponent(typeof(RectTransform))] | |
public class LayoutElementExtended : LayoutElement | |
{ | |
public LayoutElementExtendedValue MinWidthExtended = new LayoutElementExtendedValue(); |
This file contains 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 UnityEditor; | |
public class Renamer : EditorWindow { | |
#region Variables | |
private GameObject[] targets = new GameObject[0]; | |
private bool debugThis = false; |
This file contains 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 beautifulsoup4 | |
#run 'pip install bs4' without quotes in command prompt first for wondows or 'pip3 install bs4' for mac | |
import bs4 | |
import re | |
pattern = re.compile(r"(?<=\>)(.*?)(?=\<)") | |
debug = "Done!" |
This file contains 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
from selenium import webdriver | |
from selenium.webdriver.common.keys import Keys | |
from selenium.common.exceptions import TimeoutException | |
from selenium.webdriver.common.by import By | |
import selenium.webdriver.support.ui as ui | |
import selenium.webdriver.support.expected_conditions as EC | |
import os | |
import time | |
import sys | |
import bs4 |
This file contains 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 UnityEditor; | |
public class BeepOnScriptsReloaded { | |
[UnityEditor.Callbacks.DidReloadScripts] | |
private static void OnScriptsReloaded() { EditorApplication.Beep(); } | |
} |
This file contains 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
// Copyright (c) 2020 - @QuantumCalzone | |
using UnityEngine; | |
/// <summary> | |
/// Description | |
/// </summary> | |
public class #SCRIPTNAME# : MonoBehaviour { | |
#region Fields | |
#endregion |