Files
memory-manager-concurrent/games/laya-snakes/index.html
Cola-Echo 6b80f1b755 feat: 支持 Lore-char 命名的总结世界书识别
- isSummaryBook 函数新增对 Lore-char/lore-char 的检测
- 修复启用记忆搜索助手时进度条重复显示总结世界书任务的问题
- 更新错误提示信息,说明支持的命名规则

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-17 00:49:28 +08:00

63 lines
2.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<title>贪吃蛇小作战</title>
<meta name='viewport' content='width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no'
/>
<meta name='apple-mobile-web-app-capable' content='yes' />
<meta name='full-screen' content='true' />
<meta name='screen-orientation' content='portrait' />
<meta name='x5-fullscreen' content='true' />
<meta name='360-fullscreen' content='true' />
<meta name="x5-orientation" content="landscape">
<meta http-equiv='expires' content='0' />
<meta name='laya' screenorientation='landscape' cacheid='fffffffff' />
</head>
<body style="background-color:#555555">
<!-- Protobuf -->
<!--<script type="text/javascript" src="libs/bytebuffer.js"></script>
<script type="text/javascript" src="libs/protobuf.js"></script>-->
<!--核心包,封装了显示对象渲染,事件,时间管理,时间轴动画,缓动,消息交互,socket本地存储鼠标触摸声音加载颜色滤镜位图字体等-->
<script type="text/javascript" src="libs/laya.core.js"></script>
<!--封装了webgl渲染管线如果使用webgl渲染可以在初始化时调用Laya.init(1000,800,laya.webgl.WebGL);-->
<script type="text/javascript" src="libs/laya.webgl.js"></script>
<!--是动画模块包含了swf动画骨骼动画等-->
<script type="text/javascript" src="libs/laya.ani.js"></script>
<!--包含更多webgl滤镜比如外发光阴影模糊以及更多-->
<script type="text/javascript" src="libs/laya.filter.js"></script>
<!--封装了html动态排版功能-->
<script type="text/javascript" src="libs/laya.html.js"></script>
<!--粒子类库-->
<script type="text/javascript" src="libs/laya.particle.js"></script>
<!--提供tileMap解析支持-->
<script type="text/javascript" src="libs/laya.tiledmap.js"></script>
<!--提供了制作UI的各种组件实现-->
<script type="text/javascript" src="libs/laya.ui.js"></script>
<!-- 物理引擎matter.js -->
<script type="text/javascript" src="libs/matter.js"></script>
<script type="text/javascript" src="libs/matter-RenderLaya.js"></script>
<!--用户自定义顺序文件添加到这里-->
<!--jsfile--Custom-->
<!--jsfile--Custom-->
<!--自定义的js(src文件夹下)文件自动添加到下面jsfile模块标签里面里-->
<!--删除标签ide不会自动添加js文件请谨慎操作-->
<!--jsfile--startTag-->
<script src="js/Bean.js"></script>
<script src="js/ui/layaUI.max.all.js"></script>
<script src="js/GameMain.js"></script>
<script src="js/GameStart.js"></script>
<script src="js/Snake.js"></script>
<!--jsfile--endTag-->
<!--启动类添加到这里-->
<!--jsfile--Main-->
<script src="js/Game.js"></script>
<!--jsfile--Main-->
</body>
</html>