mirror of
https://gitee.com/yeshao2069/cocos-creator-shader.git
synced 2026-05-07 00:59:56 +08:00
update to 3.6.2
This commit is contained in:
@@ -45,7 +45,7 @@ Cocos Creator v3.6.x
|
||||
| 16 | 3D | [模型特效](#modeleffect) | 17 | 3D | [3D导航线](#guideline) | 18 | 3D | [模型透视](#modelperspective) |
|
||||
| 19 | 3D | [屏幕后处理特效](#snapshot) | 20 | 3D | [模型边缘光](#modelrimlight) | 21 | 3D | [武器发光](#weaponglow) |
|
||||
| 22 | 3D | [模型辉光](#modelbloom) | 23 | 3D | [雨滴滑落](#raindrop) | 24 | 3D | [模型贴花](#graffiti) |
|
||||
| 25 | 3D | [模型拖尾](#rolemotionvertex) | 26 | 3D | [SSAO后效](#ssao) |
|
||||
| 25 | 3D | [模型拖尾](#rolemotionvertex) | 26 | 3D | [后处理效果-SSAO](#ssao) |
|
||||
|
||||
## Examples
|
||||
### FlashLight
|
||||
@@ -381,7 +381,7 @@ Cocos Creator v3.6.x
|
||||
### SSAO
|
||||
| 编号 | 类目 | 项目 | 编辑器版本 | 返回顶部 | 模式 | 备注 |
|
||||
| :---: | :---: | :---: | :---: | :---: | :---: | :---: |
|
||||
| 2.26 | 3D | [SSAO后效](https://gitee.com/yeshao2069/cocos-creator-shader/tree/v3.6.x/demo/3d/Creator3.6.1_3D_SSAO) | 3.6.1 | [返回顶部](#3d) | 中 | 无 |
|
||||
| 2.26 | 3D | [后处理效果-SSAO](https://gitee.com/yeshao2069/cocos-creator-shader/tree/v3.6.x/demo/3d/Creator3.6.2_3D_DeferredPipeline_SSAO) | 3.6.2 | [返回顶部](#3d) | 中 | 无 |
|
||||
<div align=center><img src="./image/202210/2022101701.jpg" width="400" height="300" /></div>
|
||||
|
||||
### Transition
|
||||
|
||||
@@ -1,67 +0,0 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<link rel="icon" href="./favicon.ico" />
|
||||
<meta charset="utf-8" />
|
||||
<title>
|
||||
<%=title%>
|
||||
</title>
|
||||
<meta name="viewport"
|
||||
content="width=device-width,user-scalable=no,initial-scale=1,minimum-scale=1,maximum-scale=1,minimal-ui=true" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="full-screen" content="yes" />
|
||||
<meta name="screen-orientation" content="portrait" />
|
||||
<meta name="x5-fullscreen" content="true" />
|
||||
<meta name="360-fullscreen" content="true" />
|
||||
<meta name="renderer" content="webkit" />
|
||||
<meta name="force-rendering" content="webkit" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
||||
<link rel="stylesheet" type="text/css" href="./index.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<%- include(cocosToolBar, {config: config}) %>
|
||||
<div id="content" class="content">
|
||||
<div class="contentWrap">
|
||||
<div id="GameDiv" class="wrapper">
|
||||
<div id="Cocos3dGameContainer">
|
||||
<canvas id="GameCanvas" tabindex="-1" style="background-color: '';"></canvas>
|
||||
</div>
|
||||
<div id="splash">
|
||||
<div class="progress-bar stripes"><span></span></div>
|
||||
</div>
|
||||
<div id="bulletin">
|
||||
<div id="sceneIsEmpty" class="inner">
|
||||
<%=tip_sceneIsEmpty%>
|
||||
</div>
|
||||
</div>
|
||||
<div class="error" id="error">
|
||||
<div class="title">Error <i>(Please open the console to see detailed errors)</i></div>
|
||||
<div class="error-main"></div>
|
||||
<div class="error-stack"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p class="footer">
|
||||
Created with <a href="https://www.cocos.com/products" target="_blank" title="Cocos Creator">Cocos
|
||||
Creator</a>
|
||||
</p>
|
||||
</div>
|
||||
<%- include(cocosTemplate, {}) %>
|
||||
<script>
|
||||
(async function () {
|
||||
let cc = await System.import('cc');
|
||||
let func = cc.game.init;
|
||||
cc.game.init = async function (config) {
|
||||
let _this = this;
|
||||
return Promise.resolve().then(() => {
|
||||
return System.import("cce:/internal/x/prerequisite-imports");
|
||||
}).then(() => {
|
||||
return func.call(_this, config);
|
||||
});
|
||||
};
|
||||
})();
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -1,5 +1,5 @@
|
||||
### 简介
|
||||
基于 CocosCreator 3.6.1 版本创建的 **SSAO后效** 工程。
|
||||
基于 CocosCreator 3.6.2 版本创建的 **后处理效果-SSAO** 工程。
|
||||
|
||||
### 效果预览
|
||||

|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"ver": "1.0.13",
|
||||
"ver": "1.0.16",
|
||||
"importer": "material",
|
||||
"imported": true,
|
||||
"uuid": "5eecec0c-b7c7-4165-aa94-722bed8b7034",
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"ver": "1.0.13",
|
||||
"ver": "1.0.16",
|
||||
"importer": "material",
|
||||
"imported": true,
|
||||
"uuid": "664c856b-ec2e-4cab-9718-4b64ecf32c30",
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"ver": "1.0.6",
|
||||
"ver": "1.0.7",
|
||||
"importer": "effect-header",
|
||||
"imported": true,
|
||||
"uuid": "f1c96db2-3e04-47cb-b0a2-c0c75aca21ed",
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"ver": "1.5.9",
|
||||
"ver": "1.6.0",
|
||||
"importer": "effect",
|
||||
"imported": true,
|
||||
"uuid": "7acca9de-ecf4-4d9a-bdf6-223c99828586",
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"ver": "1.5.9",
|
||||
"ver": "1.6.0",
|
||||
"importer": "effect",
|
||||
"imported": true,
|
||||
"uuid": "6fa0b545-1356-40ae-9242-97536cf04d42",
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"ver": "1.0.13",
|
||||
"ver": "1.0.16",
|
||||
"importer": "material",
|
||||
"imported": true,
|
||||
"uuid": "3115386a-8331-4b3b-909a-e8c48fd52421",
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"ver": "1.0.13",
|
||||
"ver": "1.0.16",
|
||||
"importer": "material",
|
||||
"imported": true,
|
||||
"uuid": "10ff50d1-2561-4b93-97aa-083c40f1736b",
|
||||
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"author": "yanjifa",
|
||||
"creator": {
|
||||
"version": "3.6.1"
|
||||
"version": "3.6.2"
|
||||
},
|
||||
"license": "GPL-3.0",
|
||||
"name": "cc-ssao-demo",
|
||||
"type": "3d",
|
||||
"uuid": "e34f6d2b-61e0-4452-bab2-4a5d9c143cd0",
|
||||
"version": "3.6.1"
|
||||
"version": "3.6.2"
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"game": {
|
||||
"name": "UNKNOW GAME",
|
||||
"name": "未知游戏",
|
||||
"app_id": "UNKNOW",
|
||||
"c_id": "0"
|
||||
},
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"__version__": "1.0.6",
|
||||
"__version__": "1.0.7",
|
||||
"modules": {
|
||||
"cache": {
|
||||
"base": {
|
||||
Reference in New Issue
Block a user