
ts
淡乄
这个作者很懒,什么都没留下…
展开
-
cocos creator 实现文件读写功能 网页版本(一)
功能尚未整理完全,会慢慢加入:网页版:/** * 文件操作 * 点击按钮进行操作 * */import FileMgr from "./FileMgr";const {ccclass, property} = cc._decorator;// import fs from `./fs`;@ccclassexport default class WriteFile extends cc.Component { // LIFE-CYCLE CALLBACKS:原创 2020-12-31 17:19:43 · 2859 阅读 · 2 评论 -
cocoscreator 方形进度条
const {ccclass, property} = cc._decorator;@ccclassexport default class Prog extends cc.Component { @property(cc.Sprite) SpriteProg : cc.Sprite = null; @property(cc.Node) NodePoint : cc.Node = null; // LIFE-CYCLE CALLBACKS: ...转载 2020-12-23 14:23:08 · 390 阅读 · 0 评论 -
简单的椭圆效果
const {ccclass, property} = cc._decorator;let NodeItems = new Array();@ccclassexport default class EffectOval extends cc.Component { // LIFE-CYCLE CALLBACKS: @property(cc.Node) NodeItem : cc.Node; /** 轴长a */ @property a : ...原创 2020-12-14 14:55:20 · 208 阅读 · 0 评论