This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bl_info = { | |
"name": "PCSX2 Ripper", | |
"author": "afkarxyz", | |
"version": (1, 0), | |
"blender": (3, 6, 0), | |
"location": "View3D > N-Panel > PCSX2 Ripper", | |
"description": "Helps scale objects and separate objects based on materials from PCSX2 Ripper.", | |
"category": "Object", | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const observer = new PerformanceObserver((list) => { | |
list.getEntries().forEach((entry) => { | |
if (entry.name.toLowerCase().endsWith('.mp3')) { | |
console.log(entry.name); | |
} | |
}); | |
}); | |
observer.observe({ entryTypes: ['resource'] }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
console.log("Artlist.io Audio Link Catcher started"); | |
const audioLinks = new Set(); | |
function processResponse(responseText) { | |
try { | |
const data = JSON.parse(responseText); | |
const items = data.data.songList?.songs || data.data.sfxList?.songs || data.data.songs || data.data.sfxs || []; | |