├── .gitignore ├── ABOUTME.md ├── Clone.md ├── CocosCreatorInspector ├── .babelrc ├── .editorconfig ├── .gitignore ├── README.md ├── Update.md ├── bin │ └── dist.pem ├── gulpfile.js ├── package-lock.json ├── package.json ├── src │ ├── assets │ │ └── images │ │ │ ├── github.png │ │ │ ├── icon48.png │ │ │ ├── money.jpg │ │ │ ├── qq.png │ │ │ └── tiezi.png │ ├── dev │ │ ├── backgroundScripts.js │ │ ├── contentScripts.js │ │ ├── dev.html │ │ ├── dev.js │ │ ├── devInspector │ │ │ ├── App.vue │ │ │ ├── ccType │ │ │ │ ├── ComponentsProperty.vue │ │ │ │ ├── NodeBaseProperty.vue │ │ │ │ └── SceneProperty.vue │ │ │ ├── devInspector.html │ │ │ ├── main.js │ │ │ └── ui │ │ │ │ ├── colorPicker.vue │ │ │ │ └── ui-prop.vue │ │ ├── injectScript.js │ │ └── util.js │ ├── index │ │ ├── App.vue │ │ ├── index.html │ │ └── main.js │ ├── manifest.json │ └── popup │ │ ├── App.vue │ │ ├── main.js │ │ └── popup.html ├── version │ └── cc-inspector-v1.2.crx ├── webpack.config.js ├── 如何运行项目.md └── 数据结构设计思路.md ├── LICENSE ├── README.md ├── assets ├── MainScene.fire ├── MainScene.fire.meta ├── MainScene.js ├── MainScene.js.meta ├── migration.meta ├── migration │ ├── use_reversed_rotateBy.js │ ├── use_reversed_rotateBy.js.meta │ ├── use_v2.1-2.2.1_cc.Toggle_event.js │ └── use_v2.1-2.2.1_cc.Toggle_event.js.meta ├── resources.meta ├── resources │ ├── bitMap.meta │ ├── bitMap │ │ ├── testBMFont.fnt │ │ ├── testBMFont.fnt.meta │ │ ├── testBMFont.png │ │ └── testBMFont.png.meta │ ├── cfg.meta │ ├── cfg │ │ ├── channelInfo.json │ │ ├── channelInfo.json.meta │ │ ├── versionInfo.json │ │ └── versionInfo.json.meta │ ├── font.meta │ ├── font │ │ ├── fzcyt.ttf │ │ └── fzcyt.ttf.meta │ ├── prefab.meta │ ├── prefab │ │ ├── CommonPrefab.js │ │ ├── CommonPrefab.js.meta │ │ ├── CommonPrefab.prefab │ │ ├── CommonPrefab.prefab.meta │ │ ├── dialog.meta │ │ ├── dialog │ │ │ ├── DialogLayer.js │ │ │ ├── DialogLayer.js.meta │ │ │ ├── DialogLayer.prefab │ │ │ └── DialogLayer.prefab.meta │ │ ├── uiMask.meta │ │ └── uiMask │ │ │ ├── ComUIBg.js │ │ │ ├── ComUIBg.js.meta │ │ │ ├── ComUIBg.prefab │ │ │ └── ComUIBg.prefab.meta │ ├── test.meta │ └── test │ │ ├── HelloWorld.png │ │ ├── HelloWorld.png.meta │ │ ├── hello.png │ │ ├── hello.png.meta │ │ ├── icon.png │ │ ├── icon.png.meta │ │ ├── singleColor.png │ │ └── singleColor.png.meta ├── subpack.meta └── subpack │ ├── core.meta │ ├── core │ ├── GameMsg.js │ ├── GameMsg.js.meta │ ├── Module.js │ ├── Module.js.meta │ ├── Observer.js │ ├── Observer.js.meta │ ├── ObserverMgr.js │ ├── ObserverMgr.js.meta │ ├── msg.meta │ ├── msg │ │ ├── GameLocalStorage.js │ │ ├── GameLocalStorage.js.meta │ │ ├── GameMsgGlobal.js │ │ └── GameMsgGlobal.js.meta │ ├── native.meta │ ├── native │ │ ├── Native.js │ │ └── Native.js.meta │ ├── ui.meta │ ├── ui │ │ ├── DialogMgr.js │ │ ├── DialogMgr.js.meta │ │ ├── UIMgr.js │ │ └── UIMgr.js.meta │ ├── util.meta │ └── util │ │ ├── Util.js │ │ └── Util.js.meta │ ├── module.meta │ ├── module │ ├── 4399 │ │ ├── 4399.fire │ │ ├── 4399.fire.meta │ │ ├── 4399.js │ │ └── 4399.js.meta │ ├── 4399.meta │ ├── Inspector.meta │ ├── Inspector │ │ ├── InspectorScript.js │ │ └── InspectorScript.js.meta │ ├── bezier.meta │ ├── bezier │ │ ├── BezierScene.fire │ │ ├── BezierScene.fire.meta │ │ ├── BezierScene.js │ │ ├── BezierScene.js.meta │ │ ├── CustomAni.js │ │ ├── CustomAni.js.meta │ │ ├── CustomBezier.js │ │ └── CustomBezier.js.meta │ ├── bitMap.meta │ ├── bitMap │ │ ├── BMFontScene.fire │ │ └── BMFontScene.fire.meta │ ├── bugly.meta │ ├── bugly │ │ ├── BuglyTest.fire │ │ ├── BuglyTest.fire.meta │ │ ├── BuglyTest.js │ │ └── BuglyTest.js.meta │ ├── customUI.meta │ ├── customUI │ │ ├── CustomUI.fire │ │ ├── CustomUI.fire.meta │ │ ├── MyTestUI.js │ │ └── MyTestUI.js.meta │ ├── encryption.meta │ ├── encryption │ │ ├── ImageEncryption.fire │ │ ├── ImageEncryption.fire.meta │ │ ├── ImageEncryption.js │ │ └── ImageEncryption.js.meta │ ├── hello.meta │ ├── hello │ │ ├── Hello.js │ │ ├── Hello.js.meta │ │ ├── Hello.prefab │ │ └── Hello.prefab.meta │ ├── hotUpDate.meta │ ├── index.meta │ ├── index │ │ ├── IndexScene.fire │ │ ├── IndexScene.fire.meta │ │ ├── IndexScene.js │ │ └── IndexScene.js.meta │ ├── main.meta │ ├── main │ │ ├── MainPrefab.js │ │ ├── MainPrefab.js.meta │ │ ├── MainPrefab.prefab │ │ └── MainPrefab.prefab.meta │ ├── mp3Compress.meta │ ├── mp3Compress │ │ ├── testcase.mp3 │ │ └── testcase.mp3.meta │ └── test │ │ ├── HelloWorld.js │ │ ├── HelloWorld.js.meta │ │ ├── TestScene.fire │ │ ├── TestScene.fire.meta │ │ ├── TestScene.js │ │ └── TestScene.js.meta │ ├── res.meta │ ├── res │ ├── bg.meta │ ├── bg │ │ ├── bg.jpg │ │ └── bg.jpg.meta │ ├── common.meta │ ├── common │ │ ├── AutoAtlas.pac │ │ ├── AutoAtlas.pac.meta │ │ ├── btn1Normal.png │ │ ├── btn1Normal.png.meta │ │ ├── btn1Pressed.png │ │ ├── btn1Pressed.png.meta │ │ ├── btn2Normal.png │ │ ├── btn2Normal.png.meta │ │ ├── btn2Pressed.png │ │ ├── btn2Pressed.png.meta │ │ ├── btnCloseNormal.png │ │ ├── btnCloseNormal.png.meta │ │ ├── btnClosePressed.png │ │ ├── btnClosePressed.png.meta │ │ ├── frame8.png │ │ ├── frame8.png.meta │ │ ├── frame9.png │ │ ├── frame9.png.meta │ │ ├── test11.png │ │ ├── test11.png.meta │ │ ├── tipsBg.png │ │ └── tipsBg.png.meta │ └── test │ │ ├── AutoAtlas.pac │ │ ├── AutoAtlas.pac.meta │ │ ├── btn_blue.png │ │ ├── btn_blue.png.meta │ │ ├── btn_green.png │ │ ├── btn_green.png.meta │ │ ├── btn_yellow.png │ │ └── btn_yellow.png.meta │ ├── testCase.meta │ └── testCase │ ├── TestCaseModule.js │ ├── TestCaseModule.js.meta │ ├── TestCaseScene.fire │ ├── TestCaseScene.fire.meta │ ├── TestCaseScene.js │ ├── TestCaseScene.js.meta │ ├── TestPrefab.js │ ├── TestPrefab.js.meta │ ├── TestPrefab.prefab │ └── TestPrefab.prefab.meta ├── auto ├── README.md ├── build-config │ └── build-ios.json ├── core │ └── util.js ├── deal-builded.js ├── gulpfile-builder.js ├── gulpfile.js ├── package-lock.json ├── package.json ├── packagePluginUtil.js ├── proto │ └── test.proto ├── res │ ├── assets.png │ └── package.png └── test-package.json ├── creator.d.ts ├── doc ├── 4399原创平台SDK │ ├── h5api.js │ ├── icon.png │ ├── scene.png │ └── 参数.png ├── 7niu │ ├── 1ace0297.png │ ├── 22688144.png │ ├── 422bc03b.png │ ├── 566c44c0.png │ ├── b6b70c10.png │ └── f13ec681.png ├── CreatorInspector │ ├── icon.png │ ├── install │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── README.md │ ├── package │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ └── 5.gif │ ├── scene1.png │ ├── scene2.png │ ├── scene3.png │ ├── scenePreview.png │ └── showHideNode.gif ├── GlobalMsg.js ├── bitmap-font │ ├── README.md │ ├── bug1.png │ ├── gen1.gif │ ├── gen2.gif │ ├── install-example.png │ └── scene2.png ├── bugly │ ├── icon.png │ └── scene.png ├── canvasToImage.js ├── cc-inspector-v2 │ ├── 0f4cc827.png │ ├── 111.png │ ├── 1e964faf.png │ ├── 2b42a3f2.png │ ├── bd67c8f1.png │ ├── icon.png │ ├── index.md │ ├── issue.md │ ├── scene1.png │ ├── timg.gif │ ├── timg.jpg │ ├── use.gif │ └── 提交资料 │ │ ├── icon.png │ │ ├── inspector+.psd │ │ ├── scene1.png │ │ └── scene2.png ├── cocos2dx 如何切换横竖屏幕.pdf ├── excel-killer │ ├── 1 │ │ ├── Fruit.xlsx │ │ ├── Test.xlsx │ │ └── ada.xlsx │ ├── icon.png │ ├── icon.psd │ ├── scene.png │ ├── scene.psd │ ├── scene_happy.png │ └── test.xlsx ├── installPlugin.md ├── plist盗图工具 │ └── haha.jpg ├── res-Compress │ ├── code │ │ ├── ReadMe.md │ │ ├── toMp3Andcompress.js │ │ └── toMp3Andcompress2.js │ ├── mac.png │ ├── pngquant版本 │ │ ├── README.md │ │ ├── pngquant-2.7.1.tar.gz │ │ ├── pngquant-mac.tar.bz2 │ │ ├── pngquant-mac │ │ │ ├── COPYRIGHT │ │ │ ├── README.md │ │ │ ├── pngquant │ │ │ └── pngquant-openmp │ │ ├── pngquant-windows.zip │ │ └── pngquant-windows │ │ │ ├── COPYRIGHT │ │ │ ├── Drag PNG here to reduce palette automatically.bat │ │ │ ├── Drag PNG here to reduce palette to 256.bat │ │ │ ├── README.txt │ │ │ └── pngquant.exe │ ├── test-compress.jpg │ ├── test-compress.png │ ├── test.jpg │ ├── test.png │ ├── testcase-compress.mp3 │ ├── testcase.mp3 │ ├── testcase.wav │ ├── 提交内容 │ │ ├── icon.png │ │ └── scene1.jpg │ └── 插件使用.gif ├── ttf │ ├── README.md │ ├── SuggestString.txt │ ├── example1.png │ ├── index.png │ └── num.txt ├── 图标替换 │ └── icon512.png └── 热更新 │ ├── desc │ ├── issue1.png │ ├── issue2.png │ ├── issue3.png │ └── 热更新工作原理.png │ ├── hot1.png │ ├── hot21.png │ ├── hot22.png │ ├── hot31.png │ └── icon.png ├── jsconfig.json ├── package.json ├── packages ├── amazing-ui │ ├── main.js │ ├── package.json │ └── panel │ │ ├── index.css │ │ ├── index.html │ │ └── index.js ├── bezier │ ├── README.md │ ├── inspector.js │ ├── main.js │ ├── package.json │ └── panel │ │ └── index.js ├── creator-chat-room │ ├── README.md │ ├── main.js │ ├── package-lock.json │ ├── package.json │ ├── panel │ │ ├── index.css │ │ ├── index.html │ │ └── index.js │ ├── test.css │ ├── test.html │ └── timg.jpg ├── excel-killer │ ├── README.md │ ├── core │ │ ├── CfgUtil.js │ │ └── excel.js │ ├── main.js │ ├── package-lock.json │ ├── package.json │ └── panel │ │ ├── index.css │ │ ├── index.html │ │ ├── index.js │ │ └── item │ │ ├── excelItem.html │ │ └── excelItem.js ├── foobar │ ├── inspector.css │ ├── inspector.html │ ├── inspector.js │ ├── main.js │ ├── package.json │ └── panel │ │ └── index.js ├── plugin-4399-web-js-sdk │ ├── README.md │ ├── core │ │ └── CfgUtil.js │ ├── i18n │ │ ├── en.js │ │ └── zh.js │ ├── main.js │ ├── package.json │ └── panel │ │ ├── index.css │ │ ├── index.html │ │ └── index.js ├── plugin-bugly │ ├── README.md │ ├── bugly │ │ └── 1.4.3 │ │ │ ├── bugly │ │ │ ├── Android.mk │ │ │ ├── CrashReport.h │ │ │ ├── CrashReport.mm │ │ │ ├── js │ │ │ │ ├── Android.mk │ │ │ │ ├── BuglyJSAgent.cpp │ │ │ │ └── BuglyJSAgent.h │ │ │ └── lua │ │ │ │ ├── Android.mk │ │ │ │ ├── BuglyLuaAgent.cpp │ │ │ │ └── BuglyLuaAgent.h │ │ │ ├── libs │ │ │ ├── bugly_agent.jar │ │ │ └── bugly_crash_release.jar │ │ │ └── prebuilt │ │ │ ├── arm64-v8a │ │ │ └── libBugly.so │ │ │ ├── armeabi-v7a │ │ │ └── libBugly.so │ │ │ ├── armeabi │ │ │ └── libBugly.so │ │ │ ├── x86 │ │ │ └── libBugly.so │ │ │ └── x86_64 │ │ │ └── libBugly.so │ ├── buglySymbolAndroid │ │ ├── buglySymbolAndroid.bat │ │ ├── buglySymbolAndroid.jar │ │ ├── buglySymbolAndroid.sh │ │ ├── settings.txt │ │ └── 符号表工具Android版-使用指南.pdf │ ├── core │ │ └── CfgUtil.js │ ├── i18n │ │ ├── en.js │ │ └── zh.js │ ├── main.js │ ├── package.json │ └── panel │ │ ├── index.css │ │ ├── index.html │ │ └── index.js ├── psd-convert-to-node │ ├── BaumElements.js │ ├── BaumPrefabCreator.js │ ├── OnionRing.js │ ├── README-zh.md │ ├── README.md │ ├── convert.js │ ├── main.js │ ├── package-lock.json │ ├── package.json │ ├── panel │ │ ├── index.css │ │ ├── index.html │ │ └── index.js │ └── res │ │ └── Baum.js ├── qiniu │ ├── README.md │ ├── main.js │ ├── package-lock.json │ ├── package.json │ └── panel-7niu │ │ ├── file-item.html │ │ ├── file-item.js │ │ ├── index.css │ │ ├── index.html │ │ ├── index.js │ │ └── testCode.js ├── replace-icons │ ├── README.md │ ├── docs │ │ └── panel.png │ ├── i18n │ │ ├── en.js │ │ └── zh.js │ ├── main.js │ ├── package.json │ └── panel │ │ └── panel.js ├── res-compress │ ├── README.md │ ├── i18n │ │ ├── en.js │ │ └── zh.js │ ├── main.js │ ├── package.json │ ├── panel │ │ ├── index.css │ │ ├── index.html │ │ ├── index.js │ │ ├── item │ │ │ ├── image-item.html │ │ │ ├── image-item.js │ │ │ ├── mp3item.html │ │ │ └── mp3item.js │ │ └── msg.js │ └── tools │ │ ├── jpegtran │ │ ├── jpegtran │ │ └── win │ │ │ ├── x64 │ │ │ ├── jpegtran.exe │ │ │ └── libjpeg-62.dll │ │ │ └── x86 │ │ │ ├── jpegtran.exe │ │ │ └── libjpeg-62.dll │ │ ├── lame │ │ ├── lame │ │ ├── lame.exe │ │ └── lame_enc.dll │ │ ├── pngquant │ │ ├── pngquant │ │ └── pngquant.exe │ │ └── tools.js ├── resize-image │ ├── main.js │ ├── package.json │ └── panel │ │ ├── index.css │ │ ├── index.html │ │ ├── index.js │ │ └── item │ │ ├── item.html │ │ └── item.js ├── resource-looker │ ├── README.md │ ├── main.js │ ├── package.json │ └── panel │ │ ├── index.css │ │ ├── index.html │ │ ├── index.js │ │ ├── result-item.html │ │ └── result-item.js ├── resource │ ├── README.MD │ ├── main.js │ ├── package.json │ └── panel │ │ ├── less.css │ │ ├── panel.html │ │ ├── panel.js │ │ ├── scene.js │ │ └── style │ │ └── index.less ├── ts-demo │ ├── .npmrc │ ├── package.json │ ├── src │ │ ├── main.ts │ │ └── panel │ │ │ ├── index.less │ │ │ ├── index.ts │ │ │ └── index.vue │ ├── tsconfig.json │ └── webpack.config.js └── unpack-textureatlas │ ├── .eslintrc.json │ ├── LICENSE │ ├── README.md │ ├── main.js │ ├── package-lock.json │ ├── package.json │ └── panel │ ├── index.css │ ├── index.html │ ├── index.js │ └── item │ ├── item.css │ ├── item.html │ └── item.js ├── project.json ├── server ├── index.js ├── package-lock.json ├── package.json └── proto │ └── proto.js ├── settings └── builder.panel.json ├── shell └── buld.sh ├── template-banner.png └── template.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/.gitignore -------------------------------------------------------------------------------- /ABOUTME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/ABOUTME.md -------------------------------------------------------------------------------- /Clone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/Clone.md -------------------------------------------------------------------------------- /CocosCreatorInspector/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/.babelrc -------------------------------------------------------------------------------- /CocosCreatorInspector/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/.editorconfig -------------------------------------------------------------------------------- /CocosCreatorInspector/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/.gitignore -------------------------------------------------------------------------------- /CocosCreatorInspector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/README.md -------------------------------------------------------------------------------- /CocosCreatorInspector/Update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/Update.md -------------------------------------------------------------------------------- /CocosCreatorInspector/bin/dist.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/bin/dist.pem -------------------------------------------------------------------------------- /CocosCreatorInspector/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/gulpfile.js -------------------------------------------------------------------------------- /CocosCreatorInspector/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/package-lock.json -------------------------------------------------------------------------------- /CocosCreatorInspector/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/package.json -------------------------------------------------------------------------------- /CocosCreatorInspector/src/assets/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/assets/images/github.png -------------------------------------------------------------------------------- /CocosCreatorInspector/src/assets/images/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/assets/images/icon48.png -------------------------------------------------------------------------------- /CocosCreatorInspector/src/assets/images/money.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/assets/images/money.jpg -------------------------------------------------------------------------------- /CocosCreatorInspector/src/assets/images/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/assets/images/qq.png -------------------------------------------------------------------------------- /CocosCreatorInspector/src/assets/images/tiezi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/assets/images/tiezi.png -------------------------------------------------------------------------------- /CocosCreatorInspector/src/dev/backgroundScripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/dev/backgroundScripts.js -------------------------------------------------------------------------------- /CocosCreatorInspector/src/dev/contentScripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/dev/contentScripts.js -------------------------------------------------------------------------------- /CocosCreatorInspector/src/dev/dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/dev/dev.html -------------------------------------------------------------------------------- /CocosCreatorInspector/src/dev/dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/dev/dev.js -------------------------------------------------------------------------------- /CocosCreatorInspector/src/dev/devInspector/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/dev/devInspector/App.vue -------------------------------------------------------------------------------- /CocosCreatorInspector/src/dev/devInspector/ccType/ComponentsProperty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/dev/devInspector/ccType/ComponentsProperty.vue -------------------------------------------------------------------------------- /CocosCreatorInspector/src/dev/devInspector/ccType/NodeBaseProperty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/dev/devInspector/ccType/NodeBaseProperty.vue -------------------------------------------------------------------------------- /CocosCreatorInspector/src/dev/devInspector/ccType/SceneProperty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/dev/devInspector/ccType/SceneProperty.vue -------------------------------------------------------------------------------- /CocosCreatorInspector/src/dev/devInspector/devInspector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/dev/devInspector/devInspector.html -------------------------------------------------------------------------------- /CocosCreatorInspector/src/dev/devInspector/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/dev/devInspector/main.js -------------------------------------------------------------------------------- /CocosCreatorInspector/src/dev/devInspector/ui/colorPicker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/dev/devInspector/ui/colorPicker.vue -------------------------------------------------------------------------------- /CocosCreatorInspector/src/dev/devInspector/ui/ui-prop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/dev/devInspector/ui/ui-prop.vue -------------------------------------------------------------------------------- /CocosCreatorInspector/src/dev/injectScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/dev/injectScript.js -------------------------------------------------------------------------------- /CocosCreatorInspector/src/dev/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/dev/util.js -------------------------------------------------------------------------------- /CocosCreatorInspector/src/index/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/index/App.vue -------------------------------------------------------------------------------- /CocosCreatorInspector/src/index/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/index/index.html -------------------------------------------------------------------------------- /CocosCreatorInspector/src/index/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/index/main.js -------------------------------------------------------------------------------- /CocosCreatorInspector/src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/manifest.json -------------------------------------------------------------------------------- /CocosCreatorInspector/src/popup/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/popup/App.vue -------------------------------------------------------------------------------- /CocosCreatorInspector/src/popup/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/popup/main.js -------------------------------------------------------------------------------- /CocosCreatorInspector/src/popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/src/popup/popup.html -------------------------------------------------------------------------------- /CocosCreatorInspector/version/cc-inspector-v1.2.crx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/version/cc-inspector-v1.2.crx -------------------------------------------------------------------------------- /CocosCreatorInspector/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/webpack.config.js -------------------------------------------------------------------------------- /CocosCreatorInspector/如何运行项目.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/如何运行项目.md -------------------------------------------------------------------------------- /CocosCreatorInspector/数据结构设计思路.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/CocosCreatorInspector/数据结构设计思路.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/README.md -------------------------------------------------------------------------------- /assets/MainScene.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/MainScene.fire -------------------------------------------------------------------------------- /assets/MainScene.fire.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/MainScene.fire.meta -------------------------------------------------------------------------------- /assets/MainScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/MainScene.js -------------------------------------------------------------------------------- /assets/MainScene.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/MainScene.js.meta -------------------------------------------------------------------------------- /assets/migration.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/migration.meta -------------------------------------------------------------------------------- /assets/migration/use_reversed_rotateBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/migration/use_reversed_rotateBy.js -------------------------------------------------------------------------------- /assets/migration/use_reversed_rotateBy.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/migration/use_reversed_rotateBy.js.meta -------------------------------------------------------------------------------- /assets/migration/use_v2.1-2.2.1_cc.Toggle_event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/migration/use_v2.1-2.2.1_cc.Toggle_event.js -------------------------------------------------------------------------------- /assets/migration/use_v2.1-2.2.1_cc.Toggle_event.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/migration/use_v2.1-2.2.1_cc.Toggle_event.js.meta -------------------------------------------------------------------------------- /assets/resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources.meta -------------------------------------------------------------------------------- /assets/resources/bitMap.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/bitMap.meta -------------------------------------------------------------------------------- /assets/resources/bitMap/testBMFont.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/bitMap/testBMFont.fnt -------------------------------------------------------------------------------- /assets/resources/bitMap/testBMFont.fnt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/bitMap/testBMFont.fnt.meta -------------------------------------------------------------------------------- /assets/resources/bitMap/testBMFont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/bitMap/testBMFont.png -------------------------------------------------------------------------------- /assets/resources/bitMap/testBMFont.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/bitMap/testBMFont.png.meta -------------------------------------------------------------------------------- /assets/resources/cfg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/cfg.meta -------------------------------------------------------------------------------- /assets/resources/cfg/channelInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/cfg/channelInfo.json -------------------------------------------------------------------------------- /assets/resources/cfg/channelInfo.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/cfg/channelInfo.json.meta -------------------------------------------------------------------------------- /assets/resources/cfg/versionInfo.json: -------------------------------------------------------------------------------- 1 | { 2 | "version":"2.0.2.3" 3 | } 4 | -------------------------------------------------------------------------------- /assets/resources/cfg/versionInfo.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/cfg/versionInfo.json.meta -------------------------------------------------------------------------------- /assets/resources/font.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/font.meta -------------------------------------------------------------------------------- /assets/resources/font/fzcyt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/font/fzcyt.ttf -------------------------------------------------------------------------------- /assets/resources/font/fzcyt.ttf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/font/fzcyt.ttf.meta -------------------------------------------------------------------------------- /assets/resources/prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/prefab.meta -------------------------------------------------------------------------------- /assets/resources/prefab/CommonPrefab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/prefab/CommonPrefab.js -------------------------------------------------------------------------------- /assets/resources/prefab/CommonPrefab.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/prefab/CommonPrefab.js.meta -------------------------------------------------------------------------------- /assets/resources/prefab/CommonPrefab.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/prefab/CommonPrefab.prefab -------------------------------------------------------------------------------- /assets/resources/prefab/CommonPrefab.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/prefab/CommonPrefab.prefab.meta -------------------------------------------------------------------------------- /assets/resources/prefab/dialog.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/prefab/dialog.meta -------------------------------------------------------------------------------- /assets/resources/prefab/dialog/DialogLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/prefab/dialog/DialogLayer.js -------------------------------------------------------------------------------- /assets/resources/prefab/dialog/DialogLayer.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/prefab/dialog/DialogLayer.js.meta -------------------------------------------------------------------------------- /assets/resources/prefab/dialog/DialogLayer.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/prefab/dialog/DialogLayer.prefab -------------------------------------------------------------------------------- /assets/resources/prefab/dialog/DialogLayer.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/prefab/dialog/DialogLayer.prefab.meta -------------------------------------------------------------------------------- /assets/resources/prefab/uiMask.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/prefab/uiMask.meta -------------------------------------------------------------------------------- /assets/resources/prefab/uiMask/ComUIBg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/prefab/uiMask/ComUIBg.js -------------------------------------------------------------------------------- /assets/resources/prefab/uiMask/ComUIBg.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/prefab/uiMask/ComUIBg.js.meta -------------------------------------------------------------------------------- /assets/resources/prefab/uiMask/ComUIBg.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/prefab/uiMask/ComUIBg.prefab -------------------------------------------------------------------------------- /assets/resources/prefab/uiMask/ComUIBg.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/prefab/uiMask/ComUIBg.prefab.meta -------------------------------------------------------------------------------- /assets/resources/test.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/test.meta -------------------------------------------------------------------------------- /assets/resources/test/HelloWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/test/HelloWorld.png -------------------------------------------------------------------------------- /assets/resources/test/HelloWorld.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/test/HelloWorld.png.meta -------------------------------------------------------------------------------- /assets/resources/test/hello.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/test/hello.png -------------------------------------------------------------------------------- /assets/resources/test/hello.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/test/hello.png.meta -------------------------------------------------------------------------------- /assets/resources/test/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/test/icon.png -------------------------------------------------------------------------------- /assets/resources/test/icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/test/icon.png.meta -------------------------------------------------------------------------------- /assets/resources/test/singleColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/test/singleColor.png -------------------------------------------------------------------------------- /assets/resources/test/singleColor.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/resources/test/singleColor.png.meta -------------------------------------------------------------------------------- /assets/subpack.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack.meta -------------------------------------------------------------------------------- /assets/subpack/core.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core.meta -------------------------------------------------------------------------------- /assets/subpack/core/GameMsg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/GameMsg.js -------------------------------------------------------------------------------- /assets/subpack/core/GameMsg.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/GameMsg.js.meta -------------------------------------------------------------------------------- /assets/subpack/core/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/Module.js -------------------------------------------------------------------------------- /assets/subpack/core/Module.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/Module.js.meta -------------------------------------------------------------------------------- /assets/subpack/core/Observer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/Observer.js -------------------------------------------------------------------------------- /assets/subpack/core/Observer.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/Observer.js.meta -------------------------------------------------------------------------------- /assets/subpack/core/ObserverMgr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/ObserverMgr.js -------------------------------------------------------------------------------- /assets/subpack/core/ObserverMgr.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/ObserverMgr.js.meta -------------------------------------------------------------------------------- /assets/subpack/core/msg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/msg.meta -------------------------------------------------------------------------------- /assets/subpack/core/msg/GameLocalStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/msg/GameLocalStorage.js -------------------------------------------------------------------------------- /assets/subpack/core/msg/GameLocalStorage.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/msg/GameLocalStorage.js.meta -------------------------------------------------------------------------------- /assets/subpack/core/msg/GameMsgGlobal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/msg/GameMsgGlobal.js -------------------------------------------------------------------------------- /assets/subpack/core/msg/GameMsgGlobal.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/msg/GameMsgGlobal.js.meta -------------------------------------------------------------------------------- /assets/subpack/core/native.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/native.meta -------------------------------------------------------------------------------- /assets/subpack/core/native/Native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/native/Native.js -------------------------------------------------------------------------------- /assets/subpack/core/native/Native.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/native/Native.js.meta -------------------------------------------------------------------------------- /assets/subpack/core/ui.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/ui.meta -------------------------------------------------------------------------------- /assets/subpack/core/ui/DialogMgr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/ui/DialogMgr.js -------------------------------------------------------------------------------- /assets/subpack/core/ui/DialogMgr.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/ui/DialogMgr.js.meta -------------------------------------------------------------------------------- /assets/subpack/core/ui/UIMgr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/ui/UIMgr.js -------------------------------------------------------------------------------- /assets/subpack/core/ui/UIMgr.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/ui/UIMgr.js.meta -------------------------------------------------------------------------------- /assets/subpack/core/util.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/util.meta -------------------------------------------------------------------------------- /assets/subpack/core/util/Util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/util/Util.js -------------------------------------------------------------------------------- /assets/subpack/core/util/Util.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/core/util/Util.js.meta -------------------------------------------------------------------------------- /assets/subpack/module.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module.meta -------------------------------------------------------------------------------- /assets/subpack/module/4399.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/4399.meta -------------------------------------------------------------------------------- /assets/subpack/module/4399/4399.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/4399/4399.fire -------------------------------------------------------------------------------- /assets/subpack/module/4399/4399.fire.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/4399/4399.fire.meta -------------------------------------------------------------------------------- /assets/subpack/module/4399/4399.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/4399/4399.js -------------------------------------------------------------------------------- /assets/subpack/module/4399/4399.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/4399/4399.js.meta -------------------------------------------------------------------------------- /assets/subpack/module/Inspector.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/Inspector.meta -------------------------------------------------------------------------------- /assets/subpack/module/Inspector/InspectorScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/Inspector/InspectorScript.js -------------------------------------------------------------------------------- /assets/subpack/module/Inspector/InspectorScript.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/Inspector/InspectorScript.js.meta -------------------------------------------------------------------------------- /assets/subpack/module/bezier.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/bezier.meta -------------------------------------------------------------------------------- /assets/subpack/module/bezier/BezierScene.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/bezier/BezierScene.fire -------------------------------------------------------------------------------- /assets/subpack/module/bezier/BezierScene.fire.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/bezier/BezierScene.fire.meta -------------------------------------------------------------------------------- /assets/subpack/module/bezier/BezierScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/bezier/BezierScene.js -------------------------------------------------------------------------------- /assets/subpack/module/bezier/BezierScene.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/bezier/BezierScene.js.meta -------------------------------------------------------------------------------- /assets/subpack/module/bezier/CustomAni.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/bezier/CustomAni.js -------------------------------------------------------------------------------- /assets/subpack/module/bezier/CustomAni.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/bezier/CustomAni.js.meta -------------------------------------------------------------------------------- /assets/subpack/module/bezier/CustomBezier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/bezier/CustomBezier.js -------------------------------------------------------------------------------- /assets/subpack/module/bezier/CustomBezier.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/bezier/CustomBezier.js.meta -------------------------------------------------------------------------------- /assets/subpack/module/bitMap.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/bitMap.meta -------------------------------------------------------------------------------- /assets/subpack/module/bitMap/BMFontScene.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/bitMap/BMFontScene.fire -------------------------------------------------------------------------------- /assets/subpack/module/bitMap/BMFontScene.fire.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/bitMap/BMFontScene.fire.meta -------------------------------------------------------------------------------- /assets/subpack/module/bugly.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/bugly.meta -------------------------------------------------------------------------------- /assets/subpack/module/bugly/BuglyTest.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/bugly/BuglyTest.fire -------------------------------------------------------------------------------- /assets/subpack/module/bugly/BuglyTest.fire.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/bugly/BuglyTest.fire.meta -------------------------------------------------------------------------------- /assets/subpack/module/bugly/BuglyTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/bugly/BuglyTest.js -------------------------------------------------------------------------------- /assets/subpack/module/bugly/BuglyTest.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/bugly/BuglyTest.js.meta -------------------------------------------------------------------------------- /assets/subpack/module/customUI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/customUI.meta -------------------------------------------------------------------------------- /assets/subpack/module/customUI/CustomUI.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/customUI/CustomUI.fire -------------------------------------------------------------------------------- /assets/subpack/module/customUI/CustomUI.fire.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/customUI/CustomUI.fire.meta -------------------------------------------------------------------------------- /assets/subpack/module/customUI/MyTestUI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/customUI/MyTestUI.js -------------------------------------------------------------------------------- /assets/subpack/module/customUI/MyTestUI.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/customUI/MyTestUI.js.meta -------------------------------------------------------------------------------- /assets/subpack/module/encryption.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/encryption.meta -------------------------------------------------------------------------------- /assets/subpack/module/encryption/ImageEncryption.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/encryption/ImageEncryption.fire -------------------------------------------------------------------------------- /assets/subpack/module/encryption/ImageEncryption.fire.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/encryption/ImageEncryption.fire.meta -------------------------------------------------------------------------------- /assets/subpack/module/encryption/ImageEncryption.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/encryption/ImageEncryption.js -------------------------------------------------------------------------------- /assets/subpack/module/encryption/ImageEncryption.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/encryption/ImageEncryption.js.meta -------------------------------------------------------------------------------- /assets/subpack/module/hello.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/hello.meta -------------------------------------------------------------------------------- /assets/subpack/module/hello/Hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/hello/Hello.js -------------------------------------------------------------------------------- /assets/subpack/module/hello/Hello.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/hello/Hello.js.meta -------------------------------------------------------------------------------- /assets/subpack/module/hello/Hello.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/hello/Hello.prefab -------------------------------------------------------------------------------- /assets/subpack/module/hello/Hello.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/hello/Hello.prefab.meta -------------------------------------------------------------------------------- /assets/subpack/module/hotUpDate.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/hotUpDate.meta -------------------------------------------------------------------------------- /assets/subpack/module/index.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/index.meta -------------------------------------------------------------------------------- /assets/subpack/module/index/IndexScene.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/index/IndexScene.fire -------------------------------------------------------------------------------- /assets/subpack/module/index/IndexScene.fire.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/index/IndexScene.fire.meta -------------------------------------------------------------------------------- /assets/subpack/module/index/IndexScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/index/IndexScene.js -------------------------------------------------------------------------------- /assets/subpack/module/index/IndexScene.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/index/IndexScene.js.meta -------------------------------------------------------------------------------- /assets/subpack/module/main.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/main.meta -------------------------------------------------------------------------------- /assets/subpack/module/main/MainPrefab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/main/MainPrefab.js -------------------------------------------------------------------------------- /assets/subpack/module/main/MainPrefab.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/main/MainPrefab.js.meta -------------------------------------------------------------------------------- /assets/subpack/module/main/MainPrefab.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/main/MainPrefab.prefab -------------------------------------------------------------------------------- /assets/subpack/module/main/MainPrefab.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/main/MainPrefab.prefab.meta -------------------------------------------------------------------------------- /assets/subpack/module/mp3Compress.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/mp3Compress.meta -------------------------------------------------------------------------------- /assets/subpack/module/mp3Compress/testcase.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/mp3Compress/testcase.mp3 -------------------------------------------------------------------------------- /assets/subpack/module/mp3Compress/testcase.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/mp3Compress/testcase.mp3.meta -------------------------------------------------------------------------------- /assets/subpack/module/test/HelloWorld.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/test/HelloWorld.js -------------------------------------------------------------------------------- /assets/subpack/module/test/HelloWorld.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/test/HelloWorld.js.meta -------------------------------------------------------------------------------- /assets/subpack/module/test/TestScene.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/test/TestScene.fire -------------------------------------------------------------------------------- /assets/subpack/module/test/TestScene.fire.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/test/TestScene.fire.meta -------------------------------------------------------------------------------- /assets/subpack/module/test/TestScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/test/TestScene.js -------------------------------------------------------------------------------- /assets/subpack/module/test/TestScene.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/module/test/TestScene.js.meta -------------------------------------------------------------------------------- /assets/subpack/res.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res.meta -------------------------------------------------------------------------------- /assets/subpack/res/bg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/bg.meta -------------------------------------------------------------------------------- /assets/subpack/res/bg/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/bg/bg.jpg -------------------------------------------------------------------------------- /assets/subpack/res/bg/bg.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/bg/bg.jpg.meta -------------------------------------------------------------------------------- /assets/subpack/res/common.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/common.meta -------------------------------------------------------------------------------- /assets/subpack/res/common/AutoAtlas.pac: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteAtlas" 3 | } -------------------------------------------------------------------------------- /assets/subpack/res/common/AutoAtlas.pac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/common/AutoAtlas.pac.meta -------------------------------------------------------------------------------- /assets/subpack/res/common/btn1Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/common/btn1Normal.png -------------------------------------------------------------------------------- /assets/subpack/res/common/btn1Normal.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/common/btn1Normal.png.meta -------------------------------------------------------------------------------- /assets/subpack/res/common/btn1Pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/common/btn1Pressed.png -------------------------------------------------------------------------------- /assets/subpack/res/common/btn1Pressed.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/common/btn1Pressed.png.meta -------------------------------------------------------------------------------- /assets/subpack/res/common/btn2Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/common/btn2Normal.png -------------------------------------------------------------------------------- /assets/subpack/res/common/btn2Normal.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/common/btn2Normal.png.meta -------------------------------------------------------------------------------- /assets/subpack/res/common/btn2Pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/common/btn2Pressed.png -------------------------------------------------------------------------------- /assets/subpack/res/common/btn2Pressed.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/common/btn2Pressed.png.meta -------------------------------------------------------------------------------- /assets/subpack/res/common/btnCloseNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/common/btnCloseNormal.png -------------------------------------------------------------------------------- /assets/subpack/res/common/btnCloseNormal.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/common/btnCloseNormal.png.meta -------------------------------------------------------------------------------- /assets/subpack/res/common/btnClosePressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/common/btnClosePressed.png -------------------------------------------------------------------------------- /assets/subpack/res/common/btnClosePressed.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/common/btnClosePressed.png.meta -------------------------------------------------------------------------------- /assets/subpack/res/common/frame8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/common/frame8.png -------------------------------------------------------------------------------- /assets/subpack/res/common/frame8.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/common/frame8.png.meta -------------------------------------------------------------------------------- /assets/subpack/res/common/frame9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/common/frame9.png -------------------------------------------------------------------------------- /assets/subpack/res/common/frame9.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/common/frame9.png.meta -------------------------------------------------------------------------------- /assets/subpack/res/common/test11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/common/test11.png -------------------------------------------------------------------------------- /assets/subpack/res/common/test11.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/common/test11.png.meta -------------------------------------------------------------------------------- /assets/subpack/res/common/tipsBg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/common/tipsBg.png -------------------------------------------------------------------------------- /assets/subpack/res/common/tipsBg.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/common/tipsBg.png.meta -------------------------------------------------------------------------------- /assets/subpack/res/test/AutoAtlas.pac: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.SpriteAtlas" 3 | } -------------------------------------------------------------------------------- /assets/subpack/res/test/AutoAtlas.pac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/test/AutoAtlas.pac.meta -------------------------------------------------------------------------------- /assets/subpack/res/test/btn_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/test/btn_blue.png -------------------------------------------------------------------------------- /assets/subpack/res/test/btn_blue.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/test/btn_blue.png.meta -------------------------------------------------------------------------------- /assets/subpack/res/test/btn_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/test/btn_green.png -------------------------------------------------------------------------------- /assets/subpack/res/test/btn_green.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/test/btn_green.png.meta -------------------------------------------------------------------------------- /assets/subpack/res/test/btn_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/test/btn_yellow.png -------------------------------------------------------------------------------- /assets/subpack/res/test/btn_yellow.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/res/test/btn_yellow.png.meta -------------------------------------------------------------------------------- /assets/subpack/testCase.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/testCase.meta -------------------------------------------------------------------------------- /assets/subpack/testCase/TestCaseModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/testCase/TestCaseModule.js -------------------------------------------------------------------------------- /assets/subpack/testCase/TestCaseModule.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/testCase/TestCaseModule.js.meta -------------------------------------------------------------------------------- /assets/subpack/testCase/TestCaseScene.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/testCase/TestCaseScene.fire -------------------------------------------------------------------------------- /assets/subpack/testCase/TestCaseScene.fire.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/testCase/TestCaseScene.fire.meta -------------------------------------------------------------------------------- /assets/subpack/testCase/TestCaseScene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/testCase/TestCaseScene.js -------------------------------------------------------------------------------- /assets/subpack/testCase/TestCaseScene.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/testCase/TestCaseScene.js.meta -------------------------------------------------------------------------------- /assets/subpack/testCase/TestPrefab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/testCase/TestPrefab.js -------------------------------------------------------------------------------- /assets/subpack/testCase/TestPrefab.js.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/testCase/TestPrefab.js.meta -------------------------------------------------------------------------------- /assets/subpack/testCase/TestPrefab.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/testCase/TestPrefab.prefab -------------------------------------------------------------------------------- /assets/subpack/testCase/TestPrefab.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/assets/subpack/testCase/TestPrefab.prefab.meta -------------------------------------------------------------------------------- /auto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/auto/README.md -------------------------------------------------------------------------------- /auto/build-config/build-ios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/auto/build-config/build-ios.json -------------------------------------------------------------------------------- /auto/core/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/auto/core/util.js -------------------------------------------------------------------------------- /auto/deal-builded.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/auto/deal-builded.js -------------------------------------------------------------------------------- /auto/gulpfile-builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/auto/gulpfile-builder.js -------------------------------------------------------------------------------- /auto/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/auto/gulpfile.js -------------------------------------------------------------------------------- /auto/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/auto/package-lock.json -------------------------------------------------------------------------------- /auto/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/auto/package.json -------------------------------------------------------------------------------- /auto/packagePluginUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/auto/packagePluginUtil.js -------------------------------------------------------------------------------- /auto/proto/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/auto/proto/test.proto -------------------------------------------------------------------------------- /auto/res/assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/auto/res/assets.png -------------------------------------------------------------------------------- /auto/res/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/auto/res/package.png -------------------------------------------------------------------------------- /auto/test-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/auto/test-package.json -------------------------------------------------------------------------------- /creator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/creator.d.ts -------------------------------------------------------------------------------- /doc/4399原创平台SDK/h5api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/4399原创平台SDK/h5api.js -------------------------------------------------------------------------------- /doc/4399原创平台SDK/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/4399原创平台SDK/icon.png -------------------------------------------------------------------------------- /doc/4399原创平台SDK/scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/4399原创平台SDK/scene.png -------------------------------------------------------------------------------- /doc/4399原创平台SDK/参数.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/4399原创平台SDK/参数.png -------------------------------------------------------------------------------- /doc/7niu/1ace0297.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/7niu/1ace0297.png -------------------------------------------------------------------------------- /doc/7niu/22688144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/7niu/22688144.png -------------------------------------------------------------------------------- /doc/7niu/422bc03b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/7niu/422bc03b.png -------------------------------------------------------------------------------- /doc/7niu/566c44c0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/7niu/566c44c0.png -------------------------------------------------------------------------------- /doc/7niu/b6b70c10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/7niu/b6b70c10.png -------------------------------------------------------------------------------- /doc/7niu/f13ec681.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/7niu/f13ec681.png -------------------------------------------------------------------------------- /doc/CreatorInspector/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/CreatorInspector/icon.png -------------------------------------------------------------------------------- /doc/CreatorInspector/install/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/CreatorInspector/install/1.png -------------------------------------------------------------------------------- /doc/CreatorInspector/install/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/CreatorInspector/install/2.png -------------------------------------------------------------------------------- /doc/CreatorInspector/install/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/CreatorInspector/install/3.png -------------------------------------------------------------------------------- /doc/CreatorInspector/install/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/CreatorInspector/install/4.png -------------------------------------------------------------------------------- /doc/CreatorInspector/install/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/CreatorInspector/install/5.png -------------------------------------------------------------------------------- /doc/CreatorInspector/install/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/CreatorInspector/install/6.png -------------------------------------------------------------------------------- /doc/CreatorInspector/install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/CreatorInspector/install/README.md -------------------------------------------------------------------------------- /doc/CreatorInspector/package/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/CreatorInspector/package/1.png -------------------------------------------------------------------------------- /doc/CreatorInspector/package/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/CreatorInspector/package/2.png -------------------------------------------------------------------------------- /doc/CreatorInspector/package/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/CreatorInspector/package/3.png -------------------------------------------------------------------------------- /doc/CreatorInspector/package/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/CreatorInspector/package/4.png -------------------------------------------------------------------------------- /doc/CreatorInspector/package/5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/CreatorInspector/package/5.gif -------------------------------------------------------------------------------- /doc/CreatorInspector/scene1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/CreatorInspector/scene1.png -------------------------------------------------------------------------------- /doc/CreatorInspector/scene2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/CreatorInspector/scene2.png -------------------------------------------------------------------------------- /doc/CreatorInspector/scene3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/CreatorInspector/scene3.png -------------------------------------------------------------------------------- /doc/CreatorInspector/scenePreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/CreatorInspector/scenePreview.png -------------------------------------------------------------------------------- /doc/CreatorInspector/showHideNode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/CreatorInspector/showHideNode.gif -------------------------------------------------------------------------------- /doc/GlobalMsg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/GlobalMsg.js -------------------------------------------------------------------------------- /doc/bitmap-font/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/bitmap-font/README.md -------------------------------------------------------------------------------- /doc/bitmap-font/bug1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/bitmap-font/bug1.png -------------------------------------------------------------------------------- /doc/bitmap-font/gen1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/bitmap-font/gen1.gif -------------------------------------------------------------------------------- /doc/bitmap-font/gen2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/bitmap-font/gen2.gif -------------------------------------------------------------------------------- /doc/bitmap-font/install-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/bitmap-font/install-example.png -------------------------------------------------------------------------------- /doc/bitmap-font/scene2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/bitmap-font/scene2.png -------------------------------------------------------------------------------- /doc/bugly/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/bugly/icon.png -------------------------------------------------------------------------------- /doc/bugly/scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/bugly/scene.png -------------------------------------------------------------------------------- /doc/canvasToImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/canvasToImage.js -------------------------------------------------------------------------------- /doc/cc-inspector-v2/0f4cc827.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/cc-inspector-v2/0f4cc827.png -------------------------------------------------------------------------------- /doc/cc-inspector-v2/111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/cc-inspector-v2/111.png -------------------------------------------------------------------------------- /doc/cc-inspector-v2/1e964faf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/cc-inspector-v2/1e964faf.png -------------------------------------------------------------------------------- /doc/cc-inspector-v2/2b42a3f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/cc-inspector-v2/2b42a3f2.png -------------------------------------------------------------------------------- /doc/cc-inspector-v2/bd67c8f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/cc-inspector-v2/bd67c8f1.png -------------------------------------------------------------------------------- /doc/cc-inspector-v2/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/cc-inspector-v2/icon.png -------------------------------------------------------------------------------- /doc/cc-inspector-v2/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/cc-inspector-v2/index.md -------------------------------------------------------------------------------- /doc/cc-inspector-v2/issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/cc-inspector-v2/issue.md -------------------------------------------------------------------------------- /doc/cc-inspector-v2/scene1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/cc-inspector-v2/scene1.png -------------------------------------------------------------------------------- /doc/cc-inspector-v2/timg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/cc-inspector-v2/timg.gif -------------------------------------------------------------------------------- /doc/cc-inspector-v2/timg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/cc-inspector-v2/timg.jpg -------------------------------------------------------------------------------- /doc/cc-inspector-v2/use.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/cc-inspector-v2/use.gif -------------------------------------------------------------------------------- /doc/cc-inspector-v2/提交资料/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/cc-inspector-v2/提交资料/icon.png -------------------------------------------------------------------------------- /doc/cc-inspector-v2/提交资料/inspector+.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/cc-inspector-v2/提交资料/inspector+.psd -------------------------------------------------------------------------------- /doc/cc-inspector-v2/提交资料/scene1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/cc-inspector-v2/提交资料/scene1.png -------------------------------------------------------------------------------- /doc/cc-inspector-v2/提交资料/scene2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/cc-inspector-v2/提交资料/scene2.png -------------------------------------------------------------------------------- /doc/cocos2dx 如何切换横竖屏幕.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/cocos2dx 如何切换横竖屏幕.pdf -------------------------------------------------------------------------------- /doc/excel-killer/1/Fruit.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/excel-killer/1/Fruit.xlsx -------------------------------------------------------------------------------- /doc/excel-killer/1/Test.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/excel-killer/1/Test.xlsx -------------------------------------------------------------------------------- /doc/excel-killer/1/ada.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/excel-killer/1/ada.xlsx -------------------------------------------------------------------------------- /doc/excel-killer/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/excel-killer/icon.png -------------------------------------------------------------------------------- /doc/excel-killer/icon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/excel-killer/icon.psd -------------------------------------------------------------------------------- /doc/excel-killer/scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/excel-killer/scene.png -------------------------------------------------------------------------------- /doc/excel-killer/scene.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/excel-killer/scene.psd -------------------------------------------------------------------------------- /doc/excel-killer/scene_happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/excel-killer/scene_happy.png -------------------------------------------------------------------------------- /doc/excel-killer/test.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/excel-killer/test.xlsx -------------------------------------------------------------------------------- /doc/installPlugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/installPlugin.md -------------------------------------------------------------------------------- /doc/plist盗图工具/haha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/plist盗图工具/haha.jpg -------------------------------------------------------------------------------- /doc/res-Compress/code/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/code/ReadMe.md -------------------------------------------------------------------------------- /doc/res-Compress/code/toMp3Andcompress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/code/toMp3Andcompress.js -------------------------------------------------------------------------------- /doc/res-Compress/code/toMp3Andcompress2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/code/toMp3Andcompress2.js -------------------------------------------------------------------------------- /doc/res-Compress/mac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/mac.png -------------------------------------------------------------------------------- /doc/res-Compress/pngquant版本/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/pngquant版本/README.md -------------------------------------------------------------------------------- /doc/res-Compress/pngquant版本/pngquant-2.7.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/pngquant版本/pngquant-2.7.1.tar.gz -------------------------------------------------------------------------------- /doc/res-Compress/pngquant版本/pngquant-mac.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/pngquant版本/pngquant-mac.tar.bz2 -------------------------------------------------------------------------------- /doc/res-Compress/pngquant版本/pngquant-mac/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/pngquant版本/pngquant-mac/COPYRIGHT -------------------------------------------------------------------------------- /doc/res-Compress/pngquant版本/pngquant-mac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/pngquant版本/pngquant-mac/README.md -------------------------------------------------------------------------------- /doc/res-Compress/pngquant版本/pngquant-mac/pngquant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/pngquant版本/pngquant-mac/pngquant -------------------------------------------------------------------------------- /doc/res-Compress/pngquant版本/pngquant-mac/pngquant-openmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/pngquant版本/pngquant-mac/pngquant-openmp -------------------------------------------------------------------------------- /doc/res-Compress/pngquant版本/pngquant-windows.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/pngquant版本/pngquant-windows.zip -------------------------------------------------------------------------------- /doc/res-Compress/pngquant版本/pngquant-windows/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/pngquant版本/pngquant-windows/COPYRIGHT -------------------------------------------------------------------------------- /doc/res-Compress/pngquant版本/pngquant-windows/Drag PNG here to reduce palette automatically.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/pngquant版本/pngquant-windows/Drag PNG here to reduce palette automatically.bat -------------------------------------------------------------------------------- /doc/res-Compress/pngquant版本/pngquant-windows/Drag PNG here to reduce palette to 256.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/pngquant版本/pngquant-windows/Drag PNG here to reduce palette to 256.bat -------------------------------------------------------------------------------- /doc/res-Compress/pngquant版本/pngquant-windows/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/pngquant版本/pngquant-windows/README.txt -------------------------------------------------------------------------------- /doc/res-Compress/pngquant版本/pngquant-windows/pngquant.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/pngquant版本/pngquant-windows/pngquant.exe -------------------------------------------------------------------------------- /doc/res-Compress/test-compress.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/test-compress.jpg -------------------------------------------------------------------------------- /doc/res-Compress/test-compress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/test-compress.png -------------------------------------------------------------------------------- /doc/res-Compress/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/test.jpg -------------------------------------------------------------------------------- /doc/res-Compress/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/test.png -------------------------------------------------------------------------------- /doc/res-Compress/testcase-compress.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/testcase-compress.mp3 -------------------------------------------------------------------------------- /doc/res-Compress/testcase.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/testcase.mp3 -------------------------------------------------------------------------------- /doc/res-Compress/testcase.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/testcase.wav -------------------------------------------------------------------------------- /doc/res-Compress/提交内容/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/提交内容/icon.png -------------------------------------------------------------------------------- /doc/res-Compress/提交内容/scene1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/提交内容/scene1.jpg -------------------------------------------------------------------------------- /doc/res-Compress/插件使用.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/res-Compress/插件使用.gif -------------------------------------------------------------------------------- /doc/ttf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/ttf/README.md -------------------------------------------------------------------------------- /doc/ttf/SuggestString.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/ttf/SuggestString.txt -------------------------------------------------------------------------------- /doc/ttf/example1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/ttf/example1.png -------------------------------------------------------------------------------- /doc/ttf/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/ttf/index.png -------------------------------------------------------------------------------- /doc/ttf/num.txt: -------------------------------------------------------------------------------- 1 | 0.123456789 -------------------------------------------------------------------------------- /doc/图标替换/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/图标替换/icon512.png -------------------------------------------------------------------------------- /doc/热更新/desc/issue1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/热更新/desc/issue1.png -------------------------------------------------------------------------------- /doc/热更新/desc/issue2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/热更新/desc/issue2.png -------------------------------------------------------------------------------- /doc/热更新/desc/issue3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/热更新/desc/issue3.png -------------------------------------------------------------------------------- /doc/热更新/desc/热更新工作原理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/热更新/desc/热更新工作原理.png -------------------------------------------------------------------------------- /doc/热更新/hot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/热更新/hot1.png -------------------------------------------------------------------------------- /doc/热更新/hot21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/热更新/hot21.png -------------------------------------------------------------------------------- /doc/热更新/hot22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/热更新/hot22.png -------------------------------------------------------------------------------- /doc/热更新/hot31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/热更新/hot31.png -------------------------------------------------------------------------------- /doc/热更新/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/doc/热更新/icon.png -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/package.json -------------------------------------------------------------------------------- /packages/amazing-ui/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/amazing-ui/main.js -------------------------------------------------------------------------------- /packages/amazing-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/amazing-ui/package.json -------------------------------------------------------------------------------- /packages/amazing-ui/panel/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/amazing-ui/panel/index.css -------------------------------------------------------------------------------- /packages/amazing-ui/panel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/amazing-ui/panel/index.html -------------------------------------------------------------------------------- /packages/amazing-ui/panel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/amazing-ui/panel/index.js -------------------------------------------------------------------------------- /packages/bezier/README.md: -------------------------------------------------------------------------------- 1 | # 贝塞尔编辑工具 2 | ## 说明 3 | 目前仅仅有了一个简单的思路,还没有完善,具体演示[参考代码](../../assets/module/bezier) -------------------------------------------------------------------------------- /packages/bezier/inspector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/bezier/inspector.js -------------------------------------------------------------------------------- /packages/bezier/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/bezier/main.js -------------------------------------------------------------------------------- /packages/bezier/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/bezier/package.json -------------------------------------------------------------------------------- /packages/bezier/panel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/bezier/panel/index.js -------------------------------------------------------------------------------- /packages/creator-chat-room/README.md: -------------------------------------------------------------------------------- 1 | # 说明 2 | creator聊天插件,方便开发者在线吹水,嘿嘿 3 | 4 | # 技术支持 5 | - 野狗 wilddog -------------------------------------------------------------------------------- /packages/creator-chat-room/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/creator-chat-room/main.js -------------------------------------------------------------------------------- /packages/creator-chat-room/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/creator-chat-room/package-lock.json -------------------------------------------------------------------------------- /packages/creator-chat-room/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/creator-chat-room/package.json -------------------------------------------------------------------------------- /packages/creator-chat-room/panel/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/creator-chat-room/panel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/creator-chat-room/panel/index.html -------------------------------------------------------------------------------- /packages/creator-chat-room/panel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/creator-chat-room/panel/index.js -------------------------------------------------------------------------------- /packages/creator-chat-room/test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/creator-chat-room/test.css -------------------------------------------------------------------------------- /packages/creator-chat-room/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/creator-chat-room/test.html -------------------------------------------------------------------------------- /packages/creator-chat-room/timg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/creator-chat-room/timg.jpg -------------------------------------------------------------------------------- /packages/excel-killer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/excel-killer/README.md -------------------------------------------------------------------------------- /packages/excel-killer/core/CfgUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/excel-killer/core/CfgUtil.js -------------------------------------------------------------------------------- /packages/excel-killer/core/excel.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; -------------------------------------------------------------------------------- /packages/excel-killer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/excel-killer/main.js -------------------------------------------------------------------------------- /packages/excel-killer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/excel-killer/package-lock.json -------------------------------------------------------------------------------- /packages/excel-killer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/excel-killer/package.json -------------------------------------------------------------------------------- /packages/excel-killer/panel/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/excel-killer/panel/index.css -------------------------------------------------------------------------------- /packages/excel-killer/panel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/excel-killer/panel/index.html -------------------------------------------------------------------------------- /packages/excel-killer/panel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/excel-killer/panel/index.js -------------------------------------------------------------------------------- /packages/excel-killer/panel/item/excelItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/excel-killer/panel/item/excelItem.html -------------------------------------------------------------------------------- /packages/excel-killer/panel/item/excelItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/excel-killer/panel/item/excelItem.js -------------------------------------------------------------------------------- /packages/foobar/inspector.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | color: #ff342e; 3 | } -------------------------------------------------------------------------------- /packages/foobar/inspector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/foobar/inspector.html -------------------------------------------------------------------------------- /packages/foobar/inspector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/foobar/inspector.js -------------------------------------------------------------------------------- /packages/foobar/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/foobar/main.js -------------------------------------------------------------------------------- /packages/foobar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/foobar/package.json -------------------------------------------------------------------------------- /packages/foobar/panel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/foobar/panel/index.js -------------------------------------------------------------------------------- /packages/plugin-4399-web-js-sdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-4399-web-js-sdk/README.md -------------------------------------------------------------------------------- /packages/plugin-4399-web-js-sdk/core/CfgUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-4399-web-js-sdk/core/CfgUtil.js -------------------------------------------------------------------------------- /packages/plugin-4399-web-js-sdk/i18n/en.js: -------------------------------------------------------------------------------- 1 | module.exports={ 2 | title:'4399WebJSSdkPlugin', 3 | }; -------------------------------------------------------------------------------- /packages/plugin-4399-web-js-sdk/i18n/zh.js: -------------------------------------------------------------------------------- 1 | module.exports={ 2 | title:'4399WebSdk插件', 3 | } -------------------------------------------------------------------------------- /packages/plugin-4399-web-js-sdk/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-4399-web-js-sdk/main.js -------------------------------------------------------------------------------- /packages/plugin-4399-web-js-sdk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-4399-web-js-sdk/package.json -------------------------------------------------------------------------------- /packages/plugin-4399-web-js-sdk/panel/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/plugin-4399-web-js-sdk/panel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-4399-web-js-sdk/panel/index.html -------------------------------------------------------------------------------- /packages/plugin-4399-web-js-sdk/panel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-4399-web-js-sdk/panel/index.js -------------------------------------------------------------------------------- /packages/plugin-bugly/README.md: -------------------------------------------------------------------------------- 1 | # 说明 2 | 更详细的文档请参考: http://forum.cocos.com/t/bugly/52947 3 | -------------------------------------------------------------------------------- /packages/plugin-bugly/bugly/1.4.3/bugly/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/bugly/1.4.3/bugly/Android.mk -------------------------------------------------------------------------------- /packages/plugin-bugly/bugly/1.4.3/bugly/CrashReport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/bugly/1.4.3/bugly/CrashReport.h -------------------------------------------------------------------------------- /packages/plugin-bugly/bugly/1.4.3/bugly/CrashReport.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/bugly/1.4.3/bugly/CrashReport.mm -------------------------------------------------------------------------------- /packages/plugin-bugly/bugly/1.4.3/bugly/js/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/bugly/1.4.3/bugly/js/Android.mk -------------------------------------------------------------------------------- /packages/plugin-bugly/bugly/1.4.3/bugly/js/BuglyJSAgent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/bugly/1.4.3/bugly/js/BuglyJSAgent.cpp -------------------------------------------------------------------------------- /packages/plugin-bugly/bugly/1.4.3/bugly/js/BuglyJSAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/bugly/1.4.3/bugly/js/BuglyJSAgent.h -------------------------------------------------------------------------------- /packages/plugin-bugly/bugly/1.4.3/bugly/lua/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/bugly/1.4.3/bugly/lua/Android.mk -------------------------------------------------------------------------------- /packages/plugin-bugly/bugly/1.4.3/bugly/lua/BuglyLuaAgent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/bugly/1.4.3/bugly/lua/BuglyLuaAgent.cpp -------------------------------------------------------------------------------- /packages/plugin-bugly/bugly/1.4.3/bugly/lua/BuglyLuaAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/bugly/1.4.3/bugly/lua/BuglyLuaAgent.h -------------------------------------------------------------------------------- /packages/plugin-bugly/bugly/1.4.3/libs/bugly_agent.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/bugly/1.4.3/libs/bugly_agent.jar -------------------------------------------------------------------------------- /packages/plugin-bugly/bugly/1.4.3/libs/bugly_crash_release.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/bugly/1.4.3/libs/bugly_crash_release.jar -------------------------------------------------------------------------------- /packages/plugin-bugly/bugly/1.4.3/prebuilt/arm64-v8a/libBugly.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/bugly/1.4.3/prebuilt/arm64-v8a/libBugly.so -------------------------------------------------------------------------------- /packages/plugin-bugly/bugly/1.4.3/prebuilt/armeabi-v7a/libBugly.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/bugly/1.4.3/prebuilt/armeabi-v7a/libBugly.so -------------------------------------------------------------------------------- /packages/plugin-bugly/bugly/1.4.3/prebuilt/armeabi/libBugly.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/bugly/1.4.3/prebuilt/armeabi/libBugly.so -------------------------------------------------------------------------------- /packages/plugin-bugly/bugly/1.4.3/prebuilt/x86/libBugly.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/bugly/1.4.3/prebuilt/x86/libBugly.so -------------------------------------------------------------------------------- /packages/plugin-bugly/bugly/1.4.3/prebuilt/x86_64/libBugly.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/bugly/1.4.3/prebuilt/x86_64/libBugly.so -------------------------------------------------------------------------------- /packages/plugin-bugly/buglySymbolAndroid/buglySymbolAndroid.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/buglySymbolAndroid/buglySymbolAndroid.bat -------------------------------------------------------------------------------- /packages/plugin-bugly/buglySymbolAndroid/buglySymbolAndroid.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/buglySymbolAndroid/buglySymbolAndroid.jar -------------------------------------------------------------------------------- /packages/plugin-bugly/buglySymbolAndroid/buglySymbolAndroid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/buglySymbolAndroid/buglySymbolAndroid.sh -------------------------------------------------------------------------------- /packages/plugin-bugly/buglySymbolAndroid/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/buglySymbolAndroid/settings.txt -------------------------------------------------------------------------------- /packages/plugin-bugly/buglySymbolAndroid/符号表工具Android版-使用指南.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/buglySymbolAndroid/符号表工具Android版-使用指南.pdf -------------------------------------------------------------------------------- /packages/plugin-bugly/core/CfgUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/core/CfgUtil.js -------------------------------------------------------------------------------- /packages/plugin-bugly/i18n/en.js: -------------------------------------------------------------------------------- 1 | module.exports={ 2 | title:'Bugly Tools', 3 | }; -------------------------------------------------------------------------------- /packages/plugin-bugly/i18n/zh.js: -------------------------------------------------------------------------------- 1 | module.exports={ 2 | title:'Bugly 工具', 3 | } -------------------------------------------------------------------------------- /packages/plugin-bugly/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/main.js -------------------------------------------------------------------------------- /packages/plugin-bugly/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/package.json -------------------------------------------------------------------------------- /packages/plugin-bugly/panel/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/panel/index.css -------------------------------------------------------------------------------- /packages/plugin-bugly/panel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/panel/index.html -------------------------------------------------------------------------------- /packages/plugin-bugly/panel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/plugin-bugly/panel/index.js -------------------------------------------------------------------------------- /packages/psd-convert-to-node/BaumElements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/psd-convert-to-node/BaumElements.js -------------------------------------------------------------------------------- /packages/psd-convert-to-node/BaumPrefabCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/psd-convert-to-node/BaumPrefabCreator.js -------------------------------------------------------------------------------- /packages/psd-convert-to-node/OnionRing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/psd-convert-to-node/OnionRing.js -------------------------------------------------------------------------------- /packages/psd-convert-to-node/README-zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/psd-convert-to-node/README-zh.md -------------------------------------------------------------------------------- /packages/psd-convert-to-node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/psd-convert-to-node/README.md -------------------------------------------------------------------------------- /packages/psd-convert-to-node/convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/psd-convert-to-node/convert.js -------------------------------------------------------------------------------- /packages/psd-convert-to-node/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/psd-convert-to-node/main.js -------------------------------------------------------------------------------- /packages/psd-convert-to-node/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/psd-convert-to-node/package-lock.json -------------------------------------------------------------------------------- /packages/psd-convert-to-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/psd-convert-to-node/package.json -------------------------------------------------------------------------------- /packages/psd-convert-to-node/panel/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/psd-convert-to-node/panel/index.css -------------------------------------------------------------------------------- /packages/psd-convert-to-node/panel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/psd-convert-to-node/panel/index.html -------------------------------------------------------------------------------- /packages/psd-convert-to-node/panel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/psd-convert-to-node/panel/index.js -------------------------------------------------------------------------------- /packages/psd-convert-to-node/res/Baum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/psd-convert-to-node/res/Baum.js -------------------------------------------------------------------------------- /packages/qiniu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/qiniu/README.md -------------------------------------------------------------------------------- /packages/qiniu/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/qiniu/main.js -------------------------------------------------------------------------------- /packages/qiniu/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/qiniu/package-lock.json -------------------------------------------------------------------------------- /packages/qiniu/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/qiniu/package.json -------------------------------------------------------------------------------- /packages/qiniu/panel-7niu/file-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/qiniu/panel-7niu/file-item.html -------------------------------------------------------------------------------- /packages/qiniu/panel-7niu/file-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/qiniu/panel-7niu/file-item.js -------------------------------------------------------------------------------- /packages/qiniu/panel-7niu/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/qiniu/panel-7niu/index.css -------------------------------------------------------------------------------- /packages/qiniu/panel-7niu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/qiniu/panel-7niu/index.html -------------------------------------------------------------------------------- /packages/qiniu/panel-7niu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/qiniu/panel-7niu/index.js -------------------------------------------------------------------------------- /packages/qiniu/panel-7niu/testCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/qiniu/panel-7niu/testCode.js -------------------------------------------------------------------------------- /packages/replace-icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/replace-icons/README.md -------------------------------------------------------------------------------- /packages/replace-icons/docs/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/replace-icons/docs/panel.png -------------------------------------------------------------------------------- /packages/replace-icons/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/replace-icons/i18n/en.js -------------------------------------------------------------------------------- /packages/replace-icons/i18n/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/replace-icons/i18n/zh.js -------------------------------------------------------------------------------- /packages/replace-icons/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/replace-icons/main.js -------------------------------------------------------------------------------- /packages/replace-icons/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/replace-icons/package.json -------------------------------------------------------------------------------- /packages/replace-icons/panel/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/replace-icons/panel/panel.js -------------------------------------------------------------------------------- /packages/res-compress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/README.md -------------------------------------------------------------------------------- /packages/res-compress/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/i18n/en.js -------------------------------------------------------------------------------- /packages/res-compress/i18n/zh.js: -------------------------------------------------------------------------------- 1 | module.exports={ 2 | title:'资源压缩', 3 | }; -------------------------------------------------------------------------------- /packages/res-compress/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/main.js -------------------------------------------------------------------------------- /packages/res-compress/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/package.json -------------------------------------------------------------------------------- /packages/res-compress/panel/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/panel/index.css -------------------------------------------------------------------------------- /packages/res-compress/panel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/panel/index.html -------------------------------------------------------------------------------- /packages/res-compress/panel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/panel/index.js -------------------------------------------------------------------------------- /packages/res-compress/panel/item/image-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/panel/item/image-item.html -------------------------------------------------------------------------------- /packages/res-compress/panel/item/image-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/panel/item/image-item.js -------------------------------------------------------------------------------- /packages/res-compress/panel/item/mp3item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/panel/item/mp3item.html -------------------------------------------------------------------------------- /packages/res-compress/panel/item/mp3item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/panel/item/mp3item.js -------------------------------------------------------------------------------- /packages/res-compress/panel/msg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/panel/msg.js -------------------------------------------------------------------------------- /packages/res-compress/tools/jpegtran/jpegtran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/tools/jpegtran/jpegtran -------------------------------------------------------------------------------- /packages/res-compress/tools/jpegtran/win/x64/jpegtran.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/tools/jpegtran/win/x64/jpegtran.exe -------------------------------------------------------------------------------- /packages/res-compress/tools/jpegtran/win/x64/libjpeg-62.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/tools/jpegtran/win/x64/libjpeg-62.dll -------------------------------------------------------------------------------- /packages/res-compress/tools/jpegtran/win/x86/jpegtran.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/tools/jpegtran/win/x86/jpegtran.exe -------------------------------------------------------------------------------- /packages/res-compress/tools/jpegtran/win/x86/libjpeg-62.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/tools/jpegtran/win/x86/libjpeg-62.dll -------------------------------------------------------------------------------- /packages/res-compress/tools/lame/lame: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/tools/lame/lame -------------------------------------------------------------------------------- /packages/res-compress/tools/lame/lame.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/tools/lame/lame.exe -------------------------------------------------------------------------------- /packages/res-compress/tools/lame/lame_enc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/tools/lame/lame_enc.dll -------------------------------------------------------------------------------- /packages/res-compress/tools/pngquant/pngquant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/tools/pngquant/pngquant -------------------------------------------------------------------------------- /packages/res-compress/tools/pngquant/pngquant.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/tools/pngquant/pngquant.exe -------------------------------------------------------------------------------- /packages/res-compress/tools/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/res-compress/tools/tools.js -------------------------------------------------------------------------------- /packages/resize-image/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resize-image/main.js -------------------------------------------------------------------------------- /packages/resize-image/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resize-image/package.json -------------------------------------------------------------------------------- /packages/resize-image/panel/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resize-image/panel/index.css -------------------------------------------------------------------------------- /packages/resize-image/panel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resize-image/panel/index.html -------------------------------------------------------------------------------- /packages/resize-image/panel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resize-image/panel/index.js -------------------------------------------------------------------------------- /packages/resize-image/panel/item/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resize-image/panel/item/item.html -------------------------------------------------------------------------------- /packages/resize-image/panel/item/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resize-image/panel/item/item.js -------------------------------------------------------------------------------- /packages/resource-looker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resource-looker/README.md -------------------------------------------------------------------------------- /packages/resource-looker/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resource-looker/main.js -------------------------------------------------------------------------------- /packages/resource-looker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resource-looker/package.json -------------------------------------------------------------------------------- /packages/resource-looker/panel/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resource-looker/panel/index.css -------------------------------------------------------------------------------- /packages/resource-looker/panel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resource-looker/panel/index.html -------------------------------------------------------------------------------- /packages/resource-looker/panel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resource-looker/panel/index.js -------------------------------------------------------------------------------- /packages/resource-looker/panel/result-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resource-looker/panel/result-item.html -------------------------------------------------------------------------------- /packages/resource-looker/panel/result-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resource-looker/panel/result-item.js -------------------------------------------------------------------------------- /packages/resource/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resource/README.MD -------------------------------------------------------------------------------- /packages/resource/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resource/main.js -------------------------------------------------------------------------------- /packages/resource/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resource/package.json -------------------------------------------------------------------------------- /packages/resource/panel/less.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resource/panel/less.css -------------------------------------------------------------------------------- /packages/resource/panel/panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resource/panel/panel.html -------------------------------------------------------------------------------- /packages/resource/panel/panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resource/panel/panel.js -------------------------------------------------------------------------------- /packages/resource/panel/scene.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resource/panel/scene.js -------------------------------------------------------------------------------- /packages/resource/panel/style/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/resource/panel/style/index.less -------------------------------------------------------------------------------- /packages/ts-demo/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/ts-demo/.npmrc -------------------------------------------------------------------------------- /packages/ts-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/ts-demo/package.json -------------------------------------------------------------------------------- /packages/ts-demo/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/ts-demo/src/main.ts -------------------------------------------------------------------------------- /packages/ts-demo/src/panel/index.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/ts-demo/src/panel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/ts-demo/src/panel/index.ts -------------------------------------------------------------------------------- /packages/ts-demo/src/panel/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/ts-demo/src/panel/index.vue -------------------------------------------------------------------------------- /packages/ts-demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/ts-demo/tsconfig.json -------------------------------------------------------------------------------- /packages/ts-demo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/ts-demo/webpack.config.js -------------------------------------------------------------------------------- /packages/unpack-textureatlas/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/unpack-textureatlas/.eslintrc.json -------------------------------------------------------------------------------- /packages/unpack-textureatlas/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/unpack-textureatlas/LICENSE -------------------------------------------------------------------------------- /packages/unpack-textureatlas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/unpack-textureatlas/README.md -------------------------------------------------------------------------------- /packages/unpack-textureatlas/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/unpack-textureatlas/main.js -------------------------------------------------------------------------------- /packages/unpack-textureatlas/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/unpack-textureatlas/package-lock.json -------------------------------------------------------------------------------- /packages/unpack-textureatlas/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/unpack-textureatlas/package.json -------------------------------------------------------------------------------- /packages/unpack-textureatlas/panel/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/unpack-textureatlas/panel/index.css -------------------------------------------------------------------------------- /packages/unpack-textureatlas/panel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/unpack-textureatlas/panel/index.html -------------------------------------------------------------------------------- /packages/unpack-textureatlas/panel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/unpack-textureatlas/panel/index.js -------------------------------------------------------------------------------- /packages/unpack-textureatlas/panel/item/item.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/unpack-textureatlas/panel/item/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/unpack-textureatlas/panel/item/item.html -------------------------------------------------------------------------------- /packages/unpack-textureatlas/panel/item/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/packages/unpack-textureatlas/panel/item/item.js -------------------------------------------------------------------------------- /project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/project.json -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/server/index.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/server/package.json -------------------------------------------------------------------------------- /server/proto/proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/server/proto/proto.js -------------------------------------------------------------------------------- /settings/builder.panel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/settings/builder.panel.json -------------------------------------------------------------------------------- /shell/buld.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/shell/buld.sh -------------------------------------------------------------------------------- /template-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/template-banner.png -------------------------------------------------------------------------------- /template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tidys/CocosCreatorPlugins/HEAD/template.json --------------------------------------------------------------------------------