Skip to content

Instantly share code, notes, and snippets.

View Hotrian's full-sized avatar
💭
Coding!

Nicholas Ewalt Hotrian

💭
Coding!
View GitHub Profile
@Hotrian
Hotrian / 0-sc2_save_editor.html
Last active June 22, 2025 18:42
Web Based Starcraft 2 Save Editor (https://hotrian.com/sc2/editor)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>(Starcraft 2) Save Editor</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<style>
:root {

Version 2 - now with LayerMask support

Automatic texture desaturation with Unity Light System based color reveal - Textures are converted in realtime to grayscale and Point/Directional/Spot lights reveal the original color of a texture. This is just a quick and dirty example.

Made for URP (3d) and tested in Unity 6000.0.30f1

img

img

Version 2 is out now

Automatic texture desaturation with Unity Light System original color reveal - Textures are converted in realtime to grayscale and Point/Directional/Spot lights reveal the original color of a texture.

img

Quick Example Vid on YouTube

More details in this comment thread probably

<?xml version="1.0" encoding="utf-8"?>
<Translation>
<QuickAccessTitle>OVRdrop Settings Quick Access</QuickAccessTitle>
<QuickAccessAdvanced>Advanced</QuickAccessAdvanced>
<QuickAccessHotkeys>Hotkeys</QuickAccessHotkeys>
<QuickAccessAutoSwap>Auto Swap</QuickAccessAutoSwap>
<QuickAccessQuickSwap>Quick Swap</QuickAccessQuickSwap>
<AdvancedSettingsLeftTitle>{b}Target Application Settings{/b}</AdvancedSettingsLeftTitle>
<AdvancedSettingsLeftText2>{b}Window Settings{/b}
@Hotrian
Hotrian / Prusa Research Original Prusa i3 MK3.fff
Created February 24, 2018 01:37
[Unmodified] Prusa Research Original Prusa i3 Mk3 FFF (S3D 4.0.1)
<?xml version="1.0"?>
<profile name="Prusa Research Original Prusa i3 MK3" version="2018-01-19 08:00:00" app="S3D-Software 4.0.0">
<baseProfile></baseProfile>
<printMaterial>PLA</printMaterial>
<printQuality>Medium</printQuality>
<printExtruders></printExtruders>
<extruder name="Primary Extruder">
<toolheadNumber>0</toolheadNumber>
<diameter>0.4</diameter>
<autoWidth>0</autoWidth>
@Hotrian
Hotrian / SpriteResizer.cs
Last active July 13, 2018 08:12
Automatically Scales Sprite Texture2Ds, allowing you to multiply the image size safely, and effectively. Not guaranteed to work on every Sprite, or at all for that matter :P.
using System;
using System.Collections.Generic;
using UnityEditor;
using UnityEngine;
/* Unity Sprite Resizer v1.6 © Hotrian 2017
*
* This has only been tested on PNG files.
*
* Usage instructions:
@Hotrian
Hotrian / ProtoMesh.cs
Last active April 20, 2024 07:11
Example code for simple Quad and Cube meshes built through code.
using System.Collections.Generic;
using UnityEngine;
[RequireComponent(typeof(MeshFilter)), RequireComponent(typeof(MeshRenderer))]
public class ProtoMesh : MonoBehaviour
{
#region Helper Properties
// Simple helpers to cache the MeshFilter and MeshRenderer
public MeshRenderer MyMeshRenderer
{
@Hotrian
Hotrian / HeadlessScript.cs
Last active September 17, 2020 23:54
Takes a normal Unity Standalone Player Window and hides it off screen and from the Taskbar :). This was made because -batchmode seems to automatically call -nographics now, which breaks things :(.
using System;
using UnityEngine;
using System.Runtime.InteropServices;
public class HeadlessScript : MonoBehaviour
{
#if UNITY_STANDALONE_WIN && !UNITY_EDITOR
[DllImport("user32.dll", EntryPoint = "FindWindow", SetLastError = true)]
static extern IntPtr FindWindowByCaption(IntPtr zeroOnly, string lpWindowName);
@Hotrian
Hotrian / PolygonDrawScript.cs
Last active December 30, 2019 17:39
PolygonCollider2D Mesh Draw Scripts. These 3 scripts allow you to visualize a PolygonCollider2D as a mesh in the Unity game world. Can be used during Edit Mode also to permanently save the Mesh to the scene, but note the Start() method of PolygonDrawScript currently rebuilds the mesh when the game starts anyway. See: https://www.reddit.com/r/Uni…
// Note this file goes in Assets/
using UnityEngine;
using System.Collections.Generic;
[RequireComponent(typeof(PolygonCollider2D), typeof(MeshFilter), typeof(MeshRenderer))] // require PolygonCollider2D, MeshFilter, and MeshRenderer
public class PolygonDrawScript : MonoBehaviour
{
private PolygonCollider2D Poly
{
@Hotrian
Hotrian / SwapVRSettings.bat
Last active June 17, 2016 18:17
I wrote this to quickly enable/disable the OpenVR Leap Motion drivers https://github.com/cbuchner1/driver_leap the lines you need to add to enable the Leap are over here https://gist.github.com/Hotrian/963b75ac90c604b5c809820e5fdde38b
@echo off
goto prep
REM This batch script removes the leap drivers temporarily so SteamVR won't attempt to launch them
REM It also backup/restores the SteamVR.vrsettings file so you can have two copies and it switches the correct version in
REM This is just a little batch program I wrote to quickly disable/enable the SteamVR Leap Motion Drivers
REM You should copy steamvr.vrsettings twice and rename one to LeapVRSettings.vrsettings and the other to RegularVRSettings.vrsettings
REM Then run this batch once or twice and then go back in and change your steamvr.vrsettings as needed