Skip to content

Commit

Permalink
UPDATE To 5.1
Browse files Browse the repository at this point in the history
* Appropriate /Engine/Generated/Material.ush includes
* Render target include
* Texture2D format check
  • Loading branch information
AskingQuestions committed Dec 3, 2022
1 parent 1e104ab commit 8629bd8
Show file tree
Hide file tree
Showing 18 changed files with 2,122 additions and 2,106 deletions.
Binary file modified archives/ComputeShader_base.zip
Binary file not shown.
Binary file modified archives/ComputeShader_basemat.zip
Binary file not shown.
Binary file modified archives/ComputeShader_mat.zip
Binary file not shown.
Binary file modified archives/ComputeShader_pi.zip
Binary file not shown.
Binary file modified archives/ComputeShader_rt.zip
Binary file not shown.
Binary file modified archives/IndirectInstancing_base.zip
Binary file not shown.
Binary file modified archives/IndirectInstancing_inst.zip
Binary file not shown.
Binary file modified archives/MaterialNodeOutput_dynamic.zip
Binary file not shown.
Binary file modified archives/MaterialNodeOutput_fn.zip
Binary file not shown.
Binary file modified archives/MaterialNodeOutput_input.zip
Binary file not shown.
Binary file modified archives/MaterialNodeOutput_output.zip
Binary file not shown.
10 changes: 7 additions & 3 deletions cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -244,9 +244,13 @@ async function IQModuleFolder(file) {
program
.name("shadeup")
.description("CLI tool for compiling shadeup files")
.version("0.1.0")
.action(async () => {
console.log("Shadeup v1.0.2".magenta);
.version("1.1.0")
.option("-v")
.action(async (opts) => {
console.log("Shadeup v1.1.0".magenta + " (UE 5.1 compatible)".grey);
if (opts.v) {
return;
}
try {
let project = await IQProjectFolder();
let plugin = await IQPluginFolder();
Expand Down
Loading

0 comments on commit 8629bd8

Please sign in to comment.