插件
保存时格式化代码
搜索格式化;
常用网站
100个在线小工具
https://www.toolhelper.cn/
新媒派
https://pidoutv.com/sites/7865.html
常用软件
截图软件
https://zh.snipaste.com/download.html
typora
https://typoraio.cn
typora激活
- 打开typora文件夹 按以下路径打开许可证文件
/Typora.app/Contents/Resources/TypeMark/page-dist/static/js/
搜索:hasActivated="true"e.hasActivated,
并将这段替换为 hasActivated=“true”“true”。
TexturePacker
https://www.codeandweb.com/texturepacker
shoeBox
官方下载.air文件
http://renderhjs.net/shoebox/
要安装 air 后缀的文件必须先下载 Adobe 的 AIR 运行时(Runtime)。
参考文档:
https://huotuyouxi.com/2022/01/15/unity-tips-029/#ShoeBox-介绍
配置常用代码
eg: /* @author: liqi @change:
* @date: 2024/09/14 18:46 */
用法 ctrl+p 搜索>,输入snipp,配置:新建全局代码片段
{
"Print to console": {
"scope": "javascript,typescript",
"prefix": "/.",
"body": [
"/* @author: liqi @change:$1",
" * @date: ${CURRENT_YEAR}/${CURRENT_MONTH}/${CURRENT_DATE} ${CURRENT_HOUR}:${CURRENT_MINUTE} */",
],
"description": "头部信息"
},
"Print to console2": {
"scope": "lua",
"prefix": "-.",
"body": [
"-- @author: liqi @change:$1",
"-- @date: ${CURRENT_YEAR}/${CURRENT_MONTH}/${CURRENT_DATE} ${CURRENT_HOUR}:${CURRENT_MINUTE} ",
],
"description": "头部信息"
}
}
说明:
prefix 快捷键/.
快捷键设置
参考文章:https://blog.youkuaiyun.com/pyf09/article/details/111569398