vollen
vollen
[main.zip](https://github.com/Agamnentzar/ag-psd/files/13389136/main.zip) in my psd, the label is 22 pixel, but while readPsd, the font size is 1.528. show as image:  
### Cocos Creator version 3.8.1 ### System information any ### Issue description 每一个 Tile格子的顶点数据应该是 4*9(pos,uv,color)=36 位,但是计算最大格子数量时,除的是 6   ### Relevant error log output _No response_ ### Steps to reproduce...
### Cocos Creator version 3.8.1 ### System information any ### Issue description 真实使用场景,基于label的长度,动态设置背景的宽度。 //可复现问题的代码 private onLoad(){ this.titlelabel.node.on(Node.EventType.SIZE_CHANGED, () => { this.onTextSizeChange() }); } private onTextSizeChange(){ this.bg.node.transform.width = this.titlelabel.transform.width + 50...
### Cocos Creator version 3.8.1 ### System information any ### Issue description 1. tiled-layer 监听CameraNode的NodeEventType.TRANSFORM_CHANGED来触发自己的updateCulling. 2. updateCulling内部使用的 camera.screenToWorld 3. camera.screenToWorld 依赖_matViewProjInv属性。 4. 而正常情况下,camera._matViewProjInv会在每一帧渲染时才更新。 5. 所以在 camera 修改位置后立即调用 updateCulling时计算的裁剪区域是不对的。 1可以在这个函数里主动调用 camera.update...