Threshold: https://forums.getpaint.net/topic/18811-ed-harvey-effects-v-50-2022-12-24/
Alpha Editing: https://forums.getpaint.net/topic/120037-boltbaits-plugin-pack-for-pdn-v4310-4312-updated-may-28-2022/
All plugins: https://forums.getpaint.net/topic/15260-plugin-index/
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
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control] | |
"WaitToKillAppTimeout"="1" | |
"HungAppTimeout"="1000" | |
[HKEY_CURRENT_USER\Control Panel\Desktop] | |
"AutoEndTasks"="1" | |
"WaitToKillServiceTimeout"="1" | |
"WaitToKillAppTimeout"="1" |
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
public static object GetParent(this SerializedProperty prop) | |
{ | |
var path = prop.propertyPath.Replace(".Array.data[", "["); | |
object obj = prop.serializedObject.targetObject; | |
var elements = path.Split('.'); | |
foreach (var element in elements.Take(elements.Length - 1)) | |
{ | |
if (element.Contains("[")) | |
{ | |
var elementName = element.Substring(0, element.IndexOf("[")); |
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
; how to write scripts: http://www.autohotkey.com/docs/ | |
#NoEnv | |
#SingleInstance force | |
SendMode Input | |
#IfWinActive ahk_exe explorer.exe | |
^Backspace:: | |
Send ^+{Left}{Backspace} | |
#IfWinActive ahk_exe ditto.exe | |
^Backspace:: |
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
git config --global mergetool.keepBackup false |