For example, you want to set 40% alpha transparence to #000000
(black color), you need to add 66
like this #66000000
.
This file contains 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
mkdir c:\github | |
winget install --id=Git.Git -e --accept-package-agreements --accept-source-agreements | |
winget install --id=Microsoft.VisualStudioCode -e | |
winget install --id=AgileBits.1Password -e | |
winget install --id=7zip.7zip -e | |
winget install --id=Twilio.Authy -e | |
winget install --id=Bethesda.Launcher -e | |
winget install --id=Microsoft.Bicep -e | |
winget install --id=Microsoft.bitsmanager -e | |
winget install --id=BrutalChess.BrutalChess -e |
This file contains 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
{ | |
"routes": [ | |
{ | |
"route": "/", | |
"allowedRoles": ["anonymous"] | |
}, | |
{ | |
"route": "/about", | |
"allowedRoles": ["anonymous"] | |
}, |
This file contains 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
let rects = []; | |
function visualize(analyser) { | |
analyser.fftSize = 2048; | |
var bufferLength = analyser.fftSize; | |
var dataArray = new Uint8Array(bufferLength); | |
function run() { | |
analyser.fftSize = 2048; | |
var bufferLengthAlt = analyser.frequencyBinCount; |
This file contains 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
// Unity C# Cheat Sheet | |
// I made these examples for students with prior exerience working with C# and Unity. | |
// Too much? Try Unity's very good tutorials to get up to speed: https://unity3d.com/learn/tutorials/topics/scripting |