-
学习某块完整知识点
-
方便复习复盘
-
开发心得
-
新知识猎奇
-
(2024.3.9月启用)
- test2 -- test3 --- test4 ---- test5
- test2 -- test3 --- test4 ---- test5
- [Axmol Engine 从v4分支](Axmol Engine)
- Axmol wasm版本demo
- Axmol fgui版本demo
Axmol Engine是 Cocos2d-x-4.0 的另一个更激进的分支,它完全支持所有平台的 OpenAL、单纹理多 GPU 纹理处理程序、C++ 17/20
以下是自 cocos2d-x 分叉以来发生的一些重要变化:
C++ 17/20 standard
工具适用于 python 3
Apple M1, Android x64, Apple tvOS
Windows x64 构建支持
Windows video player using Microsoft Media Foundation
Openal on all platforms, extended wav formats including: MS-ADPCM, ADPCM
Use modern GL loader glad
Google Angle renderer backend
ASTC 4x4/6x6/8x8 and ETC2 RGB/RGBA
Extensions - e.g. Effekseer, FairyGUI, Live2D, Spine
Modularized optional extension
⭐扩展知识
🌕🌖🌗🌘🌑
- 常用emoji图标
- 在docs下功能对应的文件夹内新增md文件
- 修改_sidebar.md,插入新增的条目
- nojekyll:用于阻止 GitHub Pages 忽略掉下划线开头的文件。
- 用命令行初始化doc环境
npm i docsify-cli -g
docsify init ./docs
cd docs & docsify serve
其他网页服务器工具:
npm install -g live-server anywhere
anywhere 9110
live-server ./ --port=9110
- live-server的代码方式
var liveServer = require("live-server");
var params = {
port: 8181, // 设置服务器端口。 默认为 8080
host: "0.0.0.0", // 设置要绑定的地址。 默认为 0.0.0.0 或 process.env.IP
root: "/public", // 设置正在服务的根目录。 默认为 cwd。
open: false, // 为 false 时,默认情况下不会加载您的浏览器。
ignore: 'scss,my/templates', // 要忽略的路径的逗号分隔字符串
file: "index.html", //设置后,为每个 404 提供此文件(对单页应用程序有用)
wait: 1000, // 等待所有更改,然后重新加载。 默认为 0 秒。
mount: [['/components', './node_modules']], // 将目录挂载到路由。
logLevel: 2, // 0 = errors only, 1 = some, 2 = lots
middleware: [function(req, res, next) { next(); }] // 采用一系列与连接兼容的中间件,这些中间件被注入到服务器中间件堆栈中
};
liveServer.start(params);