cocos creater
weixin_44235418
这个作者很懒,什么都没留下…
展开
-
cocos creator FairyGUI(日常踩坑)
FGUI日常使用原创 2022-10-14 12:02:50 · 1499 阅读 · 0 评论 -
cocos creator FairyGUI(Gtween动画的使用)
最近编写剧情,用到了Gtween动画,用于改变透明度、位置、缩放、颜色,还有对Gtween动画的加速和销毁(1)改变组件透明度fgui.GTween.to(0, 1, time).setTarget(this.ui, alpha).setEase(fgui.EaseType.CubicOut).onComplete(() => {//透明度改变完成}, this);(2)改变位...原创 2020-12-17 18:39:43 · 4041 阅读 · 3 评论 -
ts Map容器的使用
interface Map<K, V> {//清空clear(): void;//删除:通过key来删除valuedelete(key: K): boolean;//遍历forEach(callbackfn: (value: V, key: K, map: Map<K, V>) => void, thisArg?: any): void;//通过key获...原创 2020-04-01 16:10:48 · 6747 阅读 · 0 评论 -
cocos creator FairyGUI(替身拖拽的实现)
这里是用一个组件作为替身,实现一个组件拖拽到另一个组件身上实现交换的效果this.ui.m_RightPad.m_HeroAdd.m_Paint.draggable = true;//设置可拖拽 this.ui.m_RightPad.m_HeroAdd.m_Paint.on(fgui.Event.DRAG_START, this.onDragStart, this);//拖动开始回调this...原创 2020-03-31 16:27:02 · 1177 阅读 · 0 评论 -
cocos creator FairyGUI虚拟列表的使用
this.ui.m_List.setVirtual();//开启虚拟列表this.ui.m_List.itemRenderer = this.renderAchListItem.bind(this);//设置列表item的渲染函数this.ui.m_List.itemProvider = this.getListItemResource.bind(this);//设置这个函数为列表的item提...原创 2020-03-31 16:09:23 · 1082 阅读 · 0 评论 -
creator改变正在执行动作的速度
let moveBy = cc.speed(cc.moveBy(10, 1000,0),1);this.picNode.runAction(moveBy);//1秒后速度变为3倍(需要将原来的动作用speed包一下,动作属性里才会有_speed)setTimeout(() => {console.log(moveBy);moveBy._speed = 3;}, 1000);...原创 2019-11-23 11:31:53 · 335 阅读 · 0 评论