# example-load-remote-plist **Repository Path**: mirrors_cocos-creator/example-load-remote-plist ## Basic Information - **Project Name**: example-load-remote-plist - **Description**: 1.0.0 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-03-19 - **Last Updated**: 2025-09-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 基于 Cocos Creator 2.x 版本开发,用于加载远程图集 plist 资源。 --- Developed based on the Cocos Creator 2.x version for loading remote plist resources. --- 示范:/ demonstration: ``` const LoadRemotePlist = require("./LoadRemotePlist"); cc.Class({ extends: cc.Component, properties: { }, start () { LoadRemotePlist("http://127.0.0.1:5500/assets/resources/emoji.plist",(err, plist)=>{ let spriteFrames = plist.getSpriteFrames(); }); }, }); ```