Keep the canvas in the frame but change the Z order

This commit is contained in:
downthecrop 2024-10-27 08:10:38 -07:00
parent 8180e20281
commit 1f1718d917
3 changed files with 20 additions and 53 deletions

View file

@ -70,7 +70,7 @@ public class PluginRepository {
File pluginsDirectory = new File(GlobalJsonConfig.instance.pluginsFolder);
if (!pluginsDirectory.exists()) {
System.out.println("Skipping plugin initialization - " + pluginsDirectory.getAbsolutePath() + " does not exist.");
//System.out.println("Skipping plugin initialization - " + pluginsDirectory.getAbsolutePath() + " does not exist.");
return;
}
@ -120,7 +120,7 @@ public class PluginRepository {
}
if (loadedPlugins.containsKey(info)) {
System.out.println("Skipping reloading of plugin " + file.getName() + " as it already exists and has OnPluginsReloaded.");
//System.out.println("Skipping reloading of plugin " + file.getName() + " as it already exists and has OnPluginsReloaded.");
continue;
}
@ -143,7 +143,7 @@ public class PluginRepository {
loader.loadClass(file.getName() + "." + f.getName().replace(".class",""));
}
System.out.println("Successfully loaded plugin " + file.getName() + ", version " + info.version);
//System.out.println("Successfully loaded plugin " + file.getName() + ", version " + info.version);
}
} catch (Exception e) {
System.err.println("Unexpected exception during plugin initialization:");

View file

@ -205,8 +205,8 @@ public final class GlRenderer {
@OriginalMember(owner = "client!tf", name = "d", descriptor = "()V")
public static void swapBuffers() {
try {
readPixels();
drawable.swapBuffers();
readPixels();
} catch (@Pc(3) Exception local3) {
}
}