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
:root { | |
--rs-version: "2.0.11"; | |
} | |
#app-mount .wrapper__44b0c { | |
border-radius: var(--rs-avatar-shape); | |
} | |
#app-mount .wrapper__44b0c svg:not(:root) { | |
overflow: visible; | |
contain: none; |
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
# Updated to handle changes (as of 02 Feb 2023) in Workona's exported data structure. | |
# Original from: https://gist.github.com/willdhorn/0f8e7e8f1258e17331bd1e4ba77041a4 | |
import yaml | |
from pprint import pprint | |
import re | |
import sys | |
# Usage: | |
# python workona_to_bookmark_html.py <exported workona text 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
Shader "Unlit/MatCap Techniques" | |
{ | |
Properties | |
{ | |
[NoScaleOffset] _MatCap ("MatCap", 2D) = "white" {} | |
[KeywordEnum(ViewSpaceNormal, ViewDirectionCross, ViewDirectionAligned)] _MatCapType ("Matcap UV Type", Float) = 2 | |
} | |
SubShader | |
{ | |
Tags { "RenderType"="Opaque" } |
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
//Kinda based on some example code posted by @meta556 https://metaaa.booth.pm/ | |
Shader "Custom/More Passes" | |
{ | |
Properties | |
{ | |
_MainTex ("Texture", 2D) = "white" {} | |
_Color ("Color", Color) = (1.0,1.0,1.0,1.0) | |
} | |
SubShader |