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 shutil | |
| import os | |
| import sys | |
| here = os.path.dirname(__file__) | |
| class SortingSet: | |
| targetFolder = "" | |
| matches = [] |
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
| HEADER | |
| { | |
| CompileTargets = ( IS_SM_50 && ( PC || VULKAN ) ); | |
| Description = "Hologram Effect"; | |
| } | |
| FEATURES | |
| { | |
| #include "common/features.hlsl" |
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
| HEADER | |
| { | |
| CompileTargets = ( IS_SM_50 && ( PC || VULKAN ) ); | |
| Description = "Retro Pixelation + Low Bit Colour + Dither Post Effect"; | |
| } | |
| FEATURES | |
| { | |
| } |
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 Cysharp.Threading.Tasks; | |
| using System; | |
| using System.Threading; | |
| using UnityEngine; | |
| public class UniTaskDemo_CancellationToken : MonoBehaviour | |
| { | |
| CancellationTokenSource animateTokenSource; | |
| void Start() |
OlderNewer