Skip to content

Instantly share code, notes, and snippets.

View Pandapip1's full-sized avatar

Gavin John Pandapip1

View GitHub Profile
@shinyquagsire23
shinyquagsire23 / Linux_building.txt
Last active June 9, 2024 11:24
Monado macOS and Linux Quest Link Build Guide
#
# Installing dependencies (Tested on Ubuntu 22.04 LTS)
#
# Monado
sudo apt install cmake ninja-build
sudo apt install build-essential git wget unzip cmake ninja-build libeigen3-dev curl patch python3 pkg-config libx11-dev libx11-xcb-dev libxxf86vm-dev libxrandr-dev libxcb-randr0-dev libvulkan-dev glslang-tools libglvnd-dev libgl1-mesa-dev ca-certificates libusb-1.0-0-dev libudev-dev libhidapi-dev libwayland-dev libuvc-dev libavcodec-dev libopencv-dev libv4l-dev libcjson-dev libsdl2-dev libegl1-mesa-dev libbsd-dev
# XRSP (Quest Link USB)
sudo apt install capnproto libcapnp-dev libx264-dev nlohmann-json3-dev
@apollyon600
apollyon600 / ModdingTutorial.md
Last active March 24, 2024 12:33
This is a quick tutorial using Harmony, you can come here after you've created your first mod in https://docs.reactor.gg/

Welcome to Apollo's Little Guide on how to start modding! And no I don't plan to make a video on this.

This is a tutorial after 5 days of modding, I may get some terms wrong

Yes, if you are determined you can understand a lot instead of asking for a spoonfeed

Let's get started! Head on to https://docs.reactor.gg and follow the documentation, come back here after you've got your first mod created!

Before getting into modding

@Pandapip1
Pandapip1 / CooldownButton.cs
Last active July 4, 2023 11:12 — forked from naturecodevoid/CooldownButton.cs
CooldownButton for Among Us mods (with example)
// Credits to https://gist.github.com/gabriel-nsiqueira/827dea0a1cdc2210db6f9a045ec4ce0a and https://gist.github.com/naturecodevoid/1c61786e6a95d7d093f495b6e67aad29 for the original code.
using HarmonyLib;
using Reactor.Extensions;
using Reactor.Unstrip;
using System;
using System.Collections.Generic;
using UnityEngine;
namespace Reactor.Button