This file contains hidden or 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
rem Created by Kittenji. | |
rem https://github.com/ChrisFeline | |
@echo off | |
setlocal enabledelayedexpansion | |
rem Find VRChat Installation Path | |
set "regKey=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Steam App 438100" | |
set "regKeyVRC=HKLM\SOFTWARE\Classes\VRChat\shell\open\command" | |
set "regValue=InstallLocation" |
This file contains hidden or 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
{ | |
"type": "object", | |
"properties": { | |
"name": { | |
"type": "string", | |
"description": "Package name.", | |
"maxLength": 128, | |
"pattern": "[a-zA-Z0-9_]" | |
}, | |
"version_number": { |
This file contains hidden or 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
/* | |
* Created by @Kittenji | |
* https://github.com/ChrisFeline | |
*/ | |
#if UNITY_EDITOR | |
using System; | |
using UnityEditor; | |
using System.Diagnostics; | |
using System.IO; |
This file contains hidden or 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
/* | |
* Created by @Kittenji | |
* https://github.com/ChrisFeline | |
*/ | |
#if UNITY_EDITOR | |
using UnityEngine; | |
using UnityEditor; | |
namespace Kittenji.Editor |
This file contains hidden or 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
const dgram = require('dgram'); | |
const client = dgram.createSocket('udp4'); | |
const msg = { | |
messageType: 1, | |
title: "Example Notification!", | |
content: "It's an example!", | |
height: 120, | |
sourceApp: "XSOverlay_Example_UDP_NodeJS", | |
timeout: 6, |