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
param ( | |
[Parameter(Mandatory=$true)] | |
[string]$file = $null | |
) | |
function Read-ExactUnityVersion { | |
param ( | |
[string]$file | |
) |
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
import bs4.element | |
import requests | |
from bs4 import BeautifulSoup | |
URL = "https://docs.google.com/document/d/e/2PACX-1vRPzbNQcx5UriHSbZ-9vmsTow_R6RRe7eyAU60xIF9Dlz-vaHiHNO2TKgDi7jy4ZpTpNqM7EvEcfr_p/pub" | |
def get_html(url: str) -> str | None: | |
try: | |
response = requests.get(url) | |
response.raise_for_status() |
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
// UI Editable properties | |
uniform sampler2D _FaceTex; // Alpha : Signed Distance | |
uniform float _FaceUVSpeedX; | |
uniform float _FaceUVSpeedY; | |
uniform fixed4 _FaceColor; // RGBA : Color + Opacity | |
uniform float _FaceDilate; // v[ 0, 1] | |
uniform float _OutlineSoftness; // v[ 0, 1] | |
uniform sampler2D _OutlineTex; // RGBA : Color + Opacity | |
uniform float _OutlineUVSpeedX; |
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
using System.Text.Json; | |
using System.Xml; | |
var target = args[0]; | |
var output = args[1]; | |
var doc = new XmlDocument(); | |
doc.Load(target); | |
var root = doc.SelectSingleNode("plist/dict") ?? throw new NullReferenceException(); |