此插件为前置插件,面向开发者使用,你可以任意整合与发布
// 插件依赖注册示例
let hasFinalTextures = ll.listPlugins().includes('FinalTextures') // 是否有FinalTextures插件
if (hasFinalTextures) var getTextures = ll.imports("FinalTextures", "getTextures") // 有的话,导入获取textures函数
// 渐进式的使用
let textures = hasFinalTextures ...