https://github.com/DamRsn/NeuralNote
https://github.com/BShakhovsky/PolyphonicPianoTranscription
| /* | |
| This is free and unencumbered software released into the public | |
| domain. | |
| Anyone is free to copy, modify, publish, use, compile, sell, or | |
| distribute this software, either in source code form or as a compiled | |
| binary, for any purpose, commercial or non-commercial, and by any | |
| means. | |
| In jurisdictions that recognize copyright laws, the author or authors |
| using System; | |
| using UnityEngine; | |
| public class RandomPointInCollider | |
| { | |
| Collider2D collider; | |
| Vector3 minBound; | |
| Vector3 maxBound; | |
| int maxAttempts; |
| { | |
| "FormattingOptions": { | |
| "NewLinesForBracesInLambdaExpressionBody": false, | |
| "NewLinesForBracesInAnonymousMethods": false, | |
| "NewLinesForBracesInAnonymousTypes": false, | |
| "NewLinesForBracesInControlBlocks": false, | |
| "NewLinesForBracesInTypes": false, | |
| "NewLinesForBracesInMethods": false, | |
| "NewLinesForBracesInProperties": false, | |
| "NewLinesForBracesInObjectCollectionArrayInitializers": false, |
As of January 2020, all apps running on macOs 10.15 Catalina are required to be notarized. For Unity games distributed outside the Mac App Store, such as with Steam, the notarization process is done post build using a series of Xcode command line tools.
| Shader "Name" { | |
| Properties { | |
| _Name ("display name", Range (min, max)) = number | |
| _Name ("display name", Float) = number | |
| _Name ("display name", Int) = number | |
| _Name ("display name", Color) = (number,number,number,number) | |
| _Name ("display name", Vector) = (number,number,number,number) |
Here is an updated list of the colors that are currently implemented with a name.
To using colors on discord.js, this is a typedef Colors, Colors.Aqua to get the Aqua color.
| Name | Int value | Hex Code |
|---|---|---|
Default |
0 | #000000 |
Aqua |
1752220 | #1ABC9C |
DarkAqua |
1146986 | #11806A |
Green |
5763719 | #57F287 |
DarkGreen |
2067276 | #1F8B4C |
| '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome' --disable-xss-auditor --enable-devtools-experiments --disable-features=enable-automatic-password-saving |
| // Based on https://gist.github.com/appsbynight/3681050 by Matt Di Pasquale | |
| // Author: Victor Corvalan | |
| // http://twitter.com/pescadon | |
| // This script will generate squares and wide Icons & Tiles required for Windows Store build on Unity3D | |
| // Prepare 1 big icon of 512x512px | |
| // Open this script with Photoshop -> File -> Scripts -> Browse | |
| // Load your icon when prompted | |
| var destFolder; | |
| try |