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
| @ECHO OFF | |
| SETLOCAL EnableDelayedExpansion | |
| REM Pack_CR_NOH - Automation Script for Texture Packing with ImageMagick. | |
| REM | |
| REM Tested with Quixel Bridge, Quixel Mixer and Unreal Engine | |
| REM | |
| REM Automates the texture Packing process for surface textures. | |
| REM Takes 6 Quixel Bridge or Mixer "Megascan" Textures and packs them into two BC7 non sRGB Textures. | |
| REM Required: Albedo, Roughness, Normal, AO, Displacement. Optional: Cavity. |
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
| /* | |
| * Dispatch TCP connections from <daemonport> to <childcount> local child-server | |
| * processes expected listening locally from port <firstchildport> upwards. | |
| * child-server processes is some software not able to dispatch traffic to | |
| * multiple processes, needs concurrency protection or SSL termination. | |
| * | |
| * The argument <concurrency> limits the maximum number of parallel connections | |
| * per child. The number of threads used is equal to <childcount> * | |
| * <concurrency> * 2. | |
| * |