Skip to content

Instantly share code, notes, and snippets.

View unitycoder's full-sized avatar
‏‏‎

mika unitycoder

‏‏‎
View GitHub Profile
@unitycoder
unitycoder / block_tik_tok.txt
Created April 23, 2024 13:34 — forked from RupGautam/block_tik_tok.txt
TikTok domains to DNSBL Feeds
api30.tiktokv.com
api21.tiktokv.com
webcast21.tiktokv.com
api31.tiktokv.com
api-t1.tiktokv.com
webcast1.tiktokv.com
api32.tiktokv.com
api30-h2.tiktokv.com
api21-h2.tiktokv.com
api-s1-h2.tiktokv.com
@unitycoder
unitycoder / .VoxelCollisionGenerator.cs.md
Created April 22, 2024 10:36 — forked from andrew-raphael-lukasik/.VoxelCollisionGenerator.cs.md
Tool to voxelize a Mesh Collider into multiple Box Colliders

GIF 21 01 2024 01-20-34

note: This is toy implementation, output is sub-optimal.

@unitycoder
unitycoder / Capture.cs
Created April 8, 2024 18:22 — forked from hinaloe/Capture.cs
Capture transparent screen on unity editor.
using System;
using System.Collections;
using System.IO;
using UnityEngine;
namespace Net.Hinaloe.ScreenCapture
{
public class Capture : MonoBehaviour
{
// Start is called before the first frame update
@unitycoder
unitycoder / Blur.cs
Created April 8, 2024 18:09 — forked from jimfleming/Blur.cs
A simple class to perform image blurring by overriding the main RenderTexture.
using UnityEngine;
using UnityEditor;
using System;
using System.IO;
using System.Linq;
using System.Collections;
using System.Collections.Generic;
using System.Text.RegularExpressions;
public class Blur {
@unitycoder
unitycoder / PhotoshopBlendModes
Created March 13, 2024 18:58 — forked from miketucker/PhotoshopBlendModes
photoshop blending modes
/*
** Copyright (c) 2012, Romain Dura [email protected]
**
** Permission to use, copy, modify, and/or distribute this software for any
** purpose with or without fee is hereby granted, provided that the above
** copyright notice and this permission notice appear in all copies.
**
** THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
** WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
** MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
@unitycoder
unitycoder / BurstMethodTester.cs
Created March 1, 2024 20:42 — forked from runevision/BurstMethodTester.cs
Using Unity Burst directly on methods without jobs - unofficial example code
using Unity.Burst;
using Unity.Collections;
using Unity.Collections.LowLevel.Unsafe;
using Unity.Jobs;
using UnityEngine;
// This example code demonstrates using Unity Burst directly on a static method without jobs.
// Unity NativeArrays can't be used directly in Unity Burst methods (only in Burst jobs),
// so we have to pass pointers to arrays instead.
@unitycoder
unitycoder / invokeAi-api-gist
Created February 25, 2024 10:54 — forked from ausbitbank/invokeAi-api-gist
This is a simplified version of whats needed to connect to InvokeAI websocket api, submit requests, upload init_images and recieve results
const io = require("socket.io-client")
const socket = io("http://127.0.0.1:9090",{reconnect: true})
const log = console.log.bind(console)
socket.on("connect", (socket) => {
log(socket) // Connected to api
})
socket.on("progressUpdate", (data) => {
log(data) // Returns current steps, status etc
@unitycoder
unitycoder / XRPluginManagementSettings.cs
Created February 21, 2024 18:49 — forked from korinVR/XRPluginManagementSettings.cs
Enable and disable XR Plug-in Management plugins
using System;
using UnityEditor;
using UnityEditor.XR.Management;
using UnityEditor.XR.Management.Metadata;
using UnityEngine;
namespace FrameSynthesis.XR
{
// ref. https://docs.unity3d.com/Packages/[email protected]/manual/EndUser.html
public static class XRPluginManagementSettings
@unitycoder
unitycoder / install_obb.sh
Created February 12, 2024 09:00 — forked from DanielJenkyn/install_obb.sh
Script to install .apk and .obb (Split binary) onto Android device
#!/bin/bash
project_name= com.jenkyncorp.bestapp
reinstall=
# Takes the most recent .apk and .obb (If you have multiple files)
OBB=$(ls -t *.obb | head -n1)
APK=$(ls -t *.apk | head -n1)
while [ "$1" != "" ]; do