Skip to content

Commit

Permalink
obviousAlexC/penPlus: Make uniforms searching specify that it has to …
Browse files Browse the repository at this point in the history
…be a uniform (#1619)
  • Loading branch information
David-Orangemoon committed Jul 18, 2024
1 parent 8f734af commit 3a59915
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extensions/obviousAlexC/penPlus.js
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@
},
};

extensionVersion = "7.1.5";
extensionVersion = "7.1.7";

//?Stores our attributes
triangleAttributesOfAllSprites = {};
Expand Down Expand Up @@ -1202,7 +1202,7 @@
};

//Search using regex
const regexSearcher = new RegExp(`.*${uniformKey}.*;?`);
const regexSearcher = new RegExp(`uniform.*${uniformKey}.*;?`);
let searchResult =
this.shaders[shaderName].projectData.vertShader.match(
regexSearcher
Expand Down

0 comments on commit 3a59915

Please sign in to comment.