robert
92cf24fe9f
- Shader building now inspects the spir-v for descriptor sets and writes the info to the output binary
20 lines
437 B
C#
20 lines
437 B
C#
namespace Nerfed.Builder;
|
|
|
|
public class BuildArgs
|
|
{
|
|
[Argument("-build")]
|
|
public bool Build { get; set; }
|
|
|
|
[Argument("-resourcePath")]
|
|
public string ResourcePath { get; set; }
|
|
|
|
[Argument("-resourceOutPath")]
|
|
public string ResourceOutPath { get; set; }
|
|
|
|
[Argument("-platform")]
|
|
public string Platform { get; set; }
|
|
|
|
[Argument("-resourceFiles")]
|
|
public List<string> ResourceFiles { get; set; }
|
|
}
|