The Differences Between Package and Bundle
In the YooAsset asset management framework, Package and Bundle are two core concepts representing different levels of asset management. Below are their definitions, difference…
On Lua Config Files Optimization
There are numerous formats for configuration tables: XML, JSON, SQLite, ScriptableObject, Protobuf, and more. In Lua-based projects, many developers still export configuration…
How to fix the shader variants issue?
question: The collection of missing variants is causing the game package to fail to find matching variants, resulting in errors. How can this variant omission problem be solve…
Analysis of Memory via Three Types of Charts
Question: What is untracked memory in Unity's Memory Profiler? Do you know? Let's explore this question together. Three types of diagrams: Three different types of diagrams to…
Web的Ant-Design框架的Table表格组件(2)
9.固定列 对于列数很多的数据,可以固定前后的列,横向滚动查看其它数据,需要和 scroll.x 配合使用。通过columns的fixed: 'left'属性实现。 import { Table } from 'antd'; import type { ColumnsType } from 'antd/es/table'; im…
Web的Ant-Design框架的Table表格组件(1)
Web的Ant-Design框架的Table表格组件,用于前端显示表格:当大量结构化的数据需要展示,需要对数据进行排序、搜索、自定义操作等行为时,可以使用Table组件。 1.简单的使用 首先定义数据源dataSource,数组格式,然后定义第一行字段columns,如下 const dataSource = [ { key: '1', n…