会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
kekit-rei
博客园
首页
新随笔
联系
订阅
管理
2023年11月21日
forEach 中使用await没用,不会等待异步
摘要: 今天遇到一个问题,在forEach中不会等待异步完成 ActivityImgPath[this.activityName].forEach((path,index) => async () => { const key = ActivityImgName[this.activityName][ind
阅读全文
posted @ 2023-11-21 17:58 赋流
阅读(114)
评论(0)
推荐(0)
2023年11月9日
资源释放踩坑2
摘要: https://www.chuyouxiang.com/archives/940 引用这段: 以使用最广泛的资源图片为例,引擎每加载一张新的图片,都会在内存中为3种对象各创建一个实例,分别是 SpriteFrame、Texture2D、ImageAsset。在动态合图开启的情况下,这3个实例自动记录
阅读全文
posted @ 2023-11-09 14:23 赋流
阅读(28)
评论(0)
推荐(0)
2023年11月8日
动态加载资源 释放时要注意 引入引用计数统计
摘要: 今天开发时,释放了预制体资源引起报错,这里直接使用了bundle.release 因为预制体的精灵图片是动态加载的,释放时将精灵图片一并释放了,引起错误 改为引用计数,解决问题 cocos资源释放文档:https://docs.cocos.com/creator/manual/zh/asset/re
阅读全文
posted @ 2023-11-08 17:11 赋流
阅读(140)
评论(0)
推荐(0)
2023年8月4日
vector<int> locationVec; locationVec[i] 和 locationVec.at(i) 的区别
摘要: 在C++中,vector<int>是一个动态数组,可以存储整数类型的元素。locationVec是一个vector<int>类型的对象。 locationVec.at(i)和locationVec[i]都用于访问locationVec中的元素,但它们有一些区别。 locationVec.at(i):
阅读全文
posted @ 2023-08-04 10:12 赋流
阅读(19)
评论(0)
推荐(0)
2023年8月2日
TypeScript 之 Record
摘要: 在 TS 中,类似数组、字符串、数组、接口这些常见的类型都非常常见,但是如果要定义一个对象的 key 和 value 类型该怎么做呢?这时候就需要用到 TS 的 Record 了。 来自TypeScript 之 Record - 简书 (jianshu.com) 【TypeScript】TypeSc
阅读全文
posted @ 2023-08-02 10:02 赋流
阅读(538)
评论(0)
推荐(0)
2023年7月26日
TypeScript小知识:遍历enum (暂时记录)
摘要: enum BlockPrefab{ BLOCK2 = 0, BLOCK4, BLOCK8, BLOCK16, BLOCK32, BLOCK64, BLOCK128, BLOCK256, BLOCK512, BLOCK1024, BLOCK2048 } let num = BlockPrefab.BL
阅读全文
posted @ 2023-07-26 16:48 赋流
阅读(566)
评论(0)
推荐(0)
2023年7月24日
cocos creator 资源加载函数 resources.load 注意该函数为异步
摘要: const animationComponent = i.addComponent(Animation); if(animationComponent){ const component = animationComponent.getComponent(Animation); if(compone
阅读全文
posted @ 2023-07-24 20:03 赋流
阅读(371)
评论(0)
推荐(0)
TypeScript的深拷贝与浅拷贝
摘要: 今天在开发过程中遇到深拷贝与浅拷贝的问题 const userData1: number[][] = this.dataMangager.getUserDataMap(); 该行代码中的userData1 是一个指向 this.dataMangager.getUserDataMap() 返回的二维数
阅读全文
posted @ 2023-07-24 15:11 赋流
阅读(524)
评论(0)
推荐(0)
2023年7月21日
cocos creator错误记录: base-node.ts:555 Uncaught TypeError: Cannot read properties of undefined (reading 'setParent
摘要: 出现这种情况一般为节点未成功创建
阅读全文
posted @ 2023-07-21 09:16 赋流
阅读(219)
评论(0)
推荐(0)
2023年7月20日
TypeScript 二维数组生成 要注意初始化 TypeError: Cannot set properties of undefined (setting '1')
摘要: private _dataMap:Vec3[][] = []; private _userDataMap:number[][] = []; init() { for(let i = 1; i <= 4; i++){ for(let j = 1; j <= 4; j++){this._dataMap[
阅读全文
posted @ 2023-07-20 19:49 赋流
阅读(1184)
评论(0)
推荐(0)
公告