From 3a5991529d6d6e14a13e306a537c2722947fe027 Mon Sep 17 00:00:00 2001 From: "Dr. Cleve" <76855369+David-Orangemoon@users.noreply.github.com> Date: Thu, 18 Jul 2024 16:54:33 -0400 Subject: [PATCH] obviousAlexC/penPlus: Make uniforms searching specify that it has to be a uniform (#1619) --- extensions/obviousAlexC/penPlus.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/obviousAlexC/penPlus.js b/extensions/obviousAlexC/penPlus.js index 739596fc5b..688b1e1e53 100644 --- a/extensions/obviousAlexC/penPlus.js +++ b/extensions/obviousAlexC/penPlus.js @@ -441,7 +441,7 @@ }, }; - extensionVersion = "7.1.5"; + extensionVersion = "7.1.7"; //?Stores our attributes triangleAttributesOfAllSprites = {}; @@ -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