├── .creator └── asset-template │ └── typescript │ └── Custom Script Template Help Documentation.url ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── cases.meta ├── cases │ ├── post-process.meta │ └── post-process │ │ ├── custom-pass.ts │ │ ├── custom-pass.ts.meta │ │ ├── post-process.scene │ │ └── post-process.scene.meta ├── shared-res.meta └── shared-res │ ├── cube-maps.meta │ ├── material.meta │ ├── material │ ├── custom.effect │ ├── custom.effect.meta │ ├── custom.mtl │ ├── custom.mtl.meta │ ├── dot.effect │ ├── dot.effect.meta │ ├── dot.mtl │ └── dot.mtl.meta │ ├── models.meta │ ├── models │ ├── sponza.meta │ └── sponza │ │ ├── scene.bin │ │ ├── scene.bin.meta │ │ ├── scene.gltf │ │ ├── scene.gltf.meta │ │ ├── textures.meta │ │ └── textures │ │ ├── material_0_baseColor.png │ │ ├── material_0_baseColor.png.meta │ │ ├── material_0_metallicRoughness.png │ │ ├── material_0_metallicRoughness.png.meta │ │ ├── material_0_normal.jpeg │ │ ├── material_0_normal.jpeg.meta │ │ ├── material_10_baseColor.jpeg │ │ ├── material_10_baseColor.jpeg.meta │ │ ├── material_10_metallicRoughness.png │ │ ├── material_10_metallicRoughness.png.meta │ │ ├── material_10_normal.jpeg │ │ ├── material_10_normal.jpeg.meta │ │ ├── material_11_baseColor.jpeg │ │ ├── material_11_baseColor.jpeg.meta │ │ ├── material_11_metallicRoughness.png │ │ ├── material_11_metallicRoughness.png.meta │ │ ├── material_11_normal.jpeg │ │ ├── material_11_normal.jpeg.meta │ │ ├── material_12_baseColor.png │ │ ├── material_12_baseColor.png.meta │ │ ├── material_13_baseColor.jpeg │ │ ├── material_13_baseColor.jpeg.meta │ │ ├── material_13_metallicRoughness.png │ │ ├── material_13_metallicRoughness.png.meta │ │ ├── material_13_normal.jpeg │ │ ├── material_13_normal.jpeg.meta │ │ ├── material_14_baseColor.jpeg │ │ ├── material_14_baseColor.jpeg.meta │ │ ├── material_14_metallicRoughness.png │ │ ├── material_14_metallicRoughness.png.meta │ │ ├── material_14_normal.jpeg │ │ ├── material_14_normal.jpeg.meta │ │ ├── material_15_baseColor.jpeg │ │ ├── material_15_baseColor.jpeg.meta │ │ ├── material_15_normal.jpeg │ │ ├── material_15_normal.jpeg.meta │ │ ├── material_16_baseColor.jpeg │ │ ├── material_16_baseColor.jpeg.meta │ │ ├── material_16_normal.jpeg │ │ ├── material_16_normal.jpeg.meta │ │ ├── material_17_baseColor.jpeg │ │ ├── material_17_baseColor.jpeg.meta │ │ ├── material_17_metallicRoughness.png │ │ ├── material_17_metallicRoughness.png.meta │ │ ├── material_17_normal.jpeg │ │ ├── material_17_normal.jpeg.meta │ │ ├── material_18_baseColor.jpeg │ │ ├── material_18_baseColor.jpeg.meta │ │ ├── material_18_normal.jpeg │ │ ├── material_18_normal.jpeg.meta │ │ ├── material_19_baseColor.jpeg │ │ ├── material_19_baseColor.jpeg.meta │ │ ├── material_19_normal.jpeg │ │ ├── material_19_normal.jpeg.meta │ │ ├── material_1_baseColor.png │ │ ├── material_1_baseColor.png.meta │ │ ├── material_1_metallicRoughness.png │ │ ├── material_1_metallicRoughness.png.meta │ │ ├── material_1_normal.jpeg │ │ ├── material_1_normal.jpeg.meta │ │ ├── material_20_baseColor.png │ │ ├── material_20_baseColor.png.meta │ │ ├── material_20_metallicRoughness.png │ │ ├── material_20_metallicRoughness.png.meta │ │ ├── material_20_normal.jpeg │ │ ├── material_20_normal.jpeg.meta │ │ ├── material_21_baseColor.jpeg │ │ ├── material_21_baseColor.jpeg.meta │ │ ├── material_21_metallicRoughness.png │ │ ├── material_21_metallicRoughness.png.meta │ │ ├── material_21_normal.jpeg │ │ ├── material_21_normal.jpeg.meta │ │ ├── material_22_baseColor.jpeg │ │ ├── material_22_baseColor.jpeg.meta │ │ ├── material_22_metallicRoughness.png │ │ ├── material_22_metallicRoughness.png.meta │ │ ├── material_22_normal.jpeg │ │ ├── material_22_normal.jpeg.meta │ │ ├── material_23_baseColor.jpeg │ │ ├── material_23_baseColor.jpeg.meta │ │ ├── material_23_metallicRoughness.png │ │ ├── material_23_metallicRoughness.png.meta │ │ ├── material_23_normal.jpeg │ │ ├── material_23_normal.jpeg.meta │ │ ├── material_24_baseColor.jpeg │ │ ├── material_24_baseColor.jpeg.meta │ │ ├── material_24_metallicRoughness.png │ │ ├── material_24_metallicRoughness.png.meta │ │ ├── material_24_normal.jpeg │ │ ├── material_24_normal.jpeg.meta │ │ ├── material_2_baseColor.jpeg │ │ ├── material_2_baseColor.jpeg.meta │ │ ├── material_2_metallicRoughness.png │ │ ├── material_2_metallicRoughness.png.meta │ │ ├── material_2_normal.jpeg │ │ ├── material_2_normal.jpeg.meta │ │ ├── material_3_baseColor.jpeg │ │ ├── material_3_baseColor.jpeg.meta │ │ ├── material_3_metallicRoughness.png │ │ ├── material_3_metallicRoughness.png.meta │ │ ├── material_3_normal.jpeg │ │ ├── material_3_normal.jpeg.meta │ │ ├── material_4_baseColor.jpeg │ │ ├── material_4_baseColor.jpeg.meta │ │ ├── material_4_metallicRoughness.png │ │ ├── material_4_metallicRoughness.png.meta │ │ ├── material_4_normal.jpeg │ │ ├── material_4_normal.jpeg.meta │ │ ├── material_5_baseColor.jpeg │ │ ├── material_5_baseColor.jpeg.meta │ │ ├── material_5_metallicRoughness.png │ │ ├── material_5_metallicRoughness.png.meta │ │ ├── material_5_normal.jpeg │ │ ├── material_5_normal.jpeg.meta │ │ ├── material_6_baseColor.jpeg │ │ ├── material_6_baseColor.jpeg.meta │ │ ├── material_6_metallicRoughness.png │ │ ├── material_6_metallicRoughness.png.meta │ │ ├── material_6_normal.jpeg │ │ ├── material_6_normal.jpeg.meta │ │ ├── material_7_baseColor.jpeg │ │ ├── material_7_baseColor.jpeg.meta │ │ ├── material_7_metallicRoughness.png │ │ ├── material_7_metallicRoughness.png.meta │ │ ├── material_7_normal.jpeg │ │ ├── material_7_normal.jpeg.meta │ │ ├── material_8_baseColor.jpeg │ │ ├── material_8_baseColor.jpeg.meta │ │ ├── material_8_metallicRoughness.png │ │ ├── material_8_metallicRoughness.png.meta │ │ ├── material_8_normal.jpeg │ │ ├── material_8_normal.jpeg.meta │ │ ├── material_9_baseColor.jpeg │ │ ├── material_9_baseColor.jpeg.meta │ │ ├── material_9_metallicRoughness.png │ │ ├── material_9_metallicRoughness.png.meta │ │ ├── material_9_normal.jpeg │ │ └── material_9_normal.jpeg.meta │ ├── textures.meta │ └── textures │ ├── lut.meta │ └── lut │ ├── lut_test_custom.png │ └── lut_test_custom.png.meta ├── package.json ├── settings └── v2 │ └── packages │ ├── builder.json │ ├── cocos-service.json │ ├── device.json │ ├── engine.json │ └── program.json └── tsconfig.json /.creator/asset-template/typescript/Custom Script Template Help Documentation.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=https://docs.cocos.com/creator/manual/en/scripting/setup.html#custom-script-template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | #/////////////////////////// 3 | # Cocos Creator 3D Project 4 | #/////////////////////////// 5 | 6 | /library/ 7 | /temp/ 8 | /local/ 9 | /build/ 10 | /profiles/ 11 | /native/engine/android/**/*/assets 12 | 13 | #////////////////////////// 14 | # NPM 15 | #////////////////////////// 16 | node_modules/ 17 | 18 | #////////////////////////// 19 | # VSCode 20 | #////////////////////////// 21 | .vscode/ 22 | 23 | #////////////////////////// 24 | # WebStorm 25 | #////////////////////////// 26 | .idea/ 27 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Cocos 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Example Render Pipeline 2 | 3 | demos, materials and render effects for new render pipeline -------------------------------------------------------------------------------- /assets/cases.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "f75d54d2-3c57-4d9c-a994-1ac42bab2d1a", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/cases/post-process.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "a5cf29aa-18e4-4be1-8dd5-e120323ee5f7", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/cases/post-process/custom-pass.ts: -------------------------------------------------------------------------------- 1 | import { _decorator, Component, Node, rendering, Material, renderer, Vec4, gfx, input, postProcess } from 'cc'; 2 | const { ccclass, property, menu } = _decorator; 3 | 4 | const { SettingPass, PostProcessSetting, BlitScreenPass,ForwardPass, }=postProcess 5 | 6 | @ccclass('CustomPostProcess') 7 | @menu('PostProcess/CustomPostProcess') 8 | export class CustomPostProcess extends PostProcessSetting { 9 | @property 10 | blueIntensity = 1 11 | 12 | @property 13 | showDepth = false 14 | 15 | @property 16 | depthRange = 30 17 | 18 | @property(Material) 19 | _material: Material | undefined 20 | 21 | @property(Material) 22 | get material () { 23 | return this._material; 24 | } 25 | set material (v) { 26 | this._material = v; 27 | } 28 | } 29 | 30 | 31 | export class CustomPass extends SettingPass { 32 | name = 'CustomPass' 33 | outputNames: string[] = ['CustomPassColor'] 34 | 35 | get setting () { return this.getSetting(CustomPostProcess); } 36 | 37 | checkEnable(camera: renderer.scene.Camera): boolean { 38 | let setting = this.setting; 39 | return setting.material && super.checkEnable(camera); 40 | } 41 | 42 | params = new Vec4 43 | 44 | render (camera: renderer.scene.Camera, ppl: rendering.Pipeline) { 45 | const cameraID = this.getCameraUniqueID(camera); 46 | 47 | let context = this.context; 48 | context.clearBlack() 49 | 50 | let input0 = this.lastPass.slotName(camera, 0); 51 | let output = this.slotName(camera); 52 | 53 | let setting = this.setting; 54 | let forwardPass = builder.getPass(ForwardPass); 55 | let depth = forwardPass.slotName(camera, 1); 56 | 57 | this.params.x = setting.blueIntensity 58 | this.params.y = setting.showDepth ? 1 : 0; 59 | this.params.z = setting.depthRange; 60 | setting.material.setProperty('params', this.params); 61 | 62 | // if (setting.showDepth) { 63 | // input0 = depth; 64 | // } 65 | 66 | context.material = setting.material; 67 | context 68 | .updatePassViewPort() 69 | .addRenderPass('post-process', `${this.name}${cameraID}`) 70 | .setPassInput(input0, 'inputTexture') 71 | .setPassInput(depth, 'depthTexture') 72 | .addRasterView(output, gfx.Format.RGBA8) 73 | .blitScreen(0) 74 | .version(); 75 | } 76 | } 77 | 78 | let builder = rendering.getCustomPipeline('Custom') as postProcess.PostProcessBuilder; 79 | if (builder) { 80 | builder.insertPass(new CustomPass, BlitScreenPass); 81 | } 82 | -------------------------------------------------------------------------------- /assets/cases/post-process/custom-pass.ts.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "4.0.23", 3 | "importer": "typescript", 4 | "imported": true, 5 | "uuid": "f9e401a5-b4f9-4e5b-8656-0aa88dc8bc9e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/cases/post-process/post-process.scene: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "__type__": "cc.SceneAsset", 4 | "_name": "post-process", 5 | "_objFlags": 0, 6 | "__editorExtras__": {}, 7 | "_native": "", 8 | "scene": { 9 | "__id__": 1 10 | } 11 | }, 12 | { 13 | "__type__": "cc.Scene", 14 | "_name": "post-process", 15 | "_objFlags": 0, 16 | "__editorExtras__": {}, 17 | "_parent": null, 18 | "_children": [ 19 | { 20 | "__id__": 2 21 | }, 22 | { 23 | "__id__": 5 24 | }, 25 | { 26 | "__id__": 7 27 | }, 28 | { 29 | "__id__": 16 30 | } 31 | ], 32 | "_active": true, 33 | "_components": [], 34 | "_prefab": { 35 | "__id__": 119 36 | }, 37 | "_lpos": { 38 | "__type__": "cc.Vec3", 39 | "x": 0, 40 | "y": 0, 41 | "z": 0 42 | }, 43 | "_lrot": { 44 | "__type__": "cc.Quat", 45 | "x": 0, 46 | "y": 0, 47 | "z": 0, 48 | "w": 1 49 | }, 50 | "_lscale": { 51 | "__type__": "cc.Vec3", 52 | "x": 1, 53 | "y": 1, 54 | "z": 1 55 | }, 56 | "_mobility": 0, 57 | "_layer": 1073741824, 58 | "_euler": { 59 | "__type__": "cc.Vec3", 60 | "x": 0, 61 | "y": 0, 62 | "z": 0 63 | }, 64 | "autoReleaseAssets": false, 65 | "_globals": { 66 | "__id__": 120 67 | }, 68 | "_id": "5d722be7-00a3-4597-b829-22703640b7d3" 69 | }, 70 | { 71 | "__type__": "cc.Node", 72 | "_name": "Main Light", 73 | "_objFlags": 0, 74 | "__editorExtras__": {}, 75 | "_parent": { 76 | "__id__": 1 77 | }, 78 | "_children": [], 79 | "_active": true, 80 | "_components": [ 81 | { 82 | "__id__": 3 83 | } 84 | ], 85 | "_prefab": null, 86 | "_lpos": { 87 | "__type__": "cc.Vec3", 88 | "x": -1.797, 89 | "y": 0.181, 90 | "z": 0.023 91 | }, 92 | "_lrot": { 93 | "__type__": "cc.Quat", 94 | "x": -0.13294101082096624, 95 | "y": -0.6052277163065894, 96 | "z": -0.715195642746834, 97 | "w": -0.3232975280637838 98 | }, 99 | "_lscale": { 100 | "__type__": "cc.Vec3", 101 | "x": 1, 102 | "y": 1, 103 | "z": 1 104 | }, 105 | "_mobility": 0, 106 | "_layer": 1073741824, 107 | "_euler": { 108 | "__type__": "cc.Vec3", 109 | "x": -94.28, 110 | "y": -194.909, 111 | "z": 38.562 112 | }, 113 | "_id": "c0y6F5f+pAvI805TdmxIjx" 114 | }, 115 | { 116 | "__type__": "cc.DirectionalLight", 117 | "_name": "", 118 | "_objFlags": 0, 119 | "__editorExtras__": {}, 120 | "node": { 121 | "__id__": 2 122 | }, 123 | "_enabled": true, 124 | "__prefab": null, 125 | "_color": { 126 | "__type__": "cc.Color", 127 | "r": 255, 128 | "g": 250, 129 | "b": 240, 130 | "a": 255 131 | }, 132 | "_useColorTemperature": false, 133 | "_colorTemperature": 6550, 134 | "_staticSettings": { 135 | "__id__": 4 136 | }, 137 | "_visibility": -325058561, 138 | "_illuminanceHDR": 65000, 139 | "_illuminance": 65000, 140 | "_illuminanceLDR": 1.6927083333333335, 141 | "_shadowEnabled": true, 142 | "_shadowPcf": 3, 143 | "_shadowBias": 0.00001, 144 | "_shadowNormalBias": 0, 145 | "_shadowSaturation": 1, 146 | "_shadowDistance": 10, 147 | "_shadowInvisibleOcclusionRange": 200, 148 | "_csmLevel": 4, 149 | "_csmLayerLambda": 0.75, 150 | "_csmOptimizationMode": 2, 151 | "_csmAdvancedOptions": false, 152 | "_csmLayersTransition": false, 153 | "_csmTransitionRange": 0.05, 154 | "_shadowFixedArea": false, 155 | "_shadowNear": 0.1, 156 | "_shadowFar": 10, 157 | "_shadowOrthoSize": 5, 158 | "_id": "597uMYCbhEtJQc0ffJlcgA" 159 | }, 160 | { 161 | "__type__": "cc.StaticLightSettings", 162 | "_baked": false, 163 | "_editorOnly": false, 164 | "_castShadow": false 165 | }, 166 | { 167 | "__type__": "cc.Node", 168 | "_name": "Main Camera", 169 | "_objFlags": 0, 170 | "__editorExtras__": {}, 171 | "_parent": { 172 | "__id__": 1 173 | }, 174 | "_children": [], 175 | "_active": true, 176 | "_components": [ 177 | { 178 | "__id__": 6 179 | } 180 | ], 181 | "_prefab": null, 182 | "_lpos": { 183 | "__type__": "cc.Vec3", 184 | "x": -1.3664290547474367, 185 | "y": 0.4137937378759224, 186 | "z": -0.18931732440252633 187 | }, 188 | "_lrot": { 189 | "__type__": "cc.Quat", 190 | "x": -0.03744565068088134, 191 | "y": -0.7295128097718536, 192 | "z": -0.04006818260231904, 193 | "w": 0.6817649333654585 194 | }, 195 | "_lscale": { 196 | "__type__": "cc.Vec3", 197 | "x": 1, 198 | "y": 1, 199 | "z": 1 200 | }, 201 | "_mobility": 0, 202 | "_layer": 1073741824, 203 | "_euler": { 204 | "__type__": "cc.Vec3", 205 | "x": -6.287575407239291, 206 | "y": -93.87550739360903, 207 | "z": 7.951386703658792e-16 208 | }, 209 | "_id": "c9DMICJLFO5IeO07EPon7U" 210 | }, 211 | { 212 | "__type__": "cc.Camera", 213 | "_name": "", 214 | "_objFlags": 0, 215 | "__editorExtras__": {}, 216 | "node": { 217 | "__id__": 5 218 | }, 219 | "_enabled": true, 220 | "__prefab": null, 221 | "_projection": 1, 222 | "_priority": 0, 223 | "_fov": 45, 224 | "_fovAxis": 0, 225 | "_orthoHeight": 10, 226 | "_near": 0.1, 227 | "_far": 1000, 228 | "_color": { 229 | "__type__": "cc.Color", 230 | "r": 51, 231 | "g": 51, 232 | "b": 51, 233 | "a": 255 234 | }, 235 | "_depth": 1, 236 | "_stencil": 0, 237 | "_clearFlags": 14, 238 | "_rect": { 239 | "__type__": "cc.Rect", 240 | "x": 0, 241 | "y": 0, 242 | "width": 1, 243 | "height": 1 244 | }, 245 | "_aperture": 19, 246 | "_shutter": 7, 247 | "_iso": 0, 248 | "_screenScale": 1, 249 | "_visibility": 1822425087, 250 | "_targetTexture": null, 251 | "_postProcess": null, 252 | "_usePostProcess": true, 253 | "_cameraType": -1, 254 | "_trackingType": 0, 255 | "_id": "7dWQTpwS5LrIHnc1zAPUtf" 256 | }, 257 | { 258 | "__type__": "cc.Node", 259 | "_name": "PostProcess", 260 | "_objFlags": 0, 261 | "__editorExtras__": {}, 262 | "_parent": { 263 | "__id__": 1 264 | }, 265 | "_children": [], 266 | "_active": true, 267 | "_components": [ 268 | { 269 | "__id__": 8 270 | }, 271 | { 272 | "__id__": 9 273 | }, 274 | { 275 | "__id__": 10 276 | }, 277 | { 278 | "__id__": 11 279 | }, 280 | { 281 | "__id__": 12 282 | }, 283 | { 284 | "__id__": 13 285 | }, 286 | { 287 | "__id__": 15 288 | } 289 | ], 290 | "_prefab": null, 291 | "_lpos": { 292 | "__type__": "cc.Vec3", 293 | "x": 0, 294 | "y": 0, 295 | "z": 0 296 | }, 297 | "_lrot": { 298 | "__type__": "cc.Quat", 299 | "x": 0, 300 | "y": 0, 301 | "z": 0, 302 | "w": 1 303 | }, 304 | "_lscale": { 305 | "__type__": "cc.Vec3", 306 | "x": 1, 307 | "y": 1, 308 | "z": 1 309 | }, 310 | "_mobility": 0, 311 | "_layer": 1073741824, 312 | "_euler": { 313 | "__type__": "cc.Vec3", 314 | "x": 0, 315 | "y": 0, 316 | "z": 0 317 | }, 318 | "_id": "b4Lxig8uNK7K2WgwXlno6B" 319 | }, 320 | { 321 | "__type__": "cc.PostProcess", 322 | "_name": "", 323 | "_objFlags": 0, 324 | "__editorExtras__": {}, 325 | "node": { 326 | "__id__": 7 327 | }, 328 | "_enabled": true, 329 | "__prefab": null, 330 | "_shadingScale": 1, 331 | "_id": "c9NapT/XRI/7igytdVg1yE" 332 | }, 333 | { 334 | "__type__": "cc.Bloom", 335 | "_name": "", 336 | "_objFlags": 0, 337 | "__editorExtras__": {}, 338 | "node": { 339 | "__id__": 7 340 | }, 341 | "_enabled": true, 342 | "__prefab": null, 343 | "_threshold": 0.6, 344 | "_iterations": 3, 345 | "_intensity": 2.3, 346 | "_id": "3frZMuv+lLo4WAe7xnbcNP" 347 | }, 348 | { 349 | "__type__": "cc.ColorGrading", 350 | "_name": "", 351 | "_objFlags": 0, 352 | "__editorExtras__": {}, 353 | "node": { 354 | "__id__": 7 355 | }, 356 | "_enabled": true, 357 | "__prefab": null, 358 | "_contribute": 0.5, 359 | "_colorGradingMap": { 360 | "__uuid__": "d2d99fdf-cee6-4a4f-8937-c74164b05f23@6c48a", 361 | "__expectedType__": "cc.Texture2D" 362 | }, 363 | "_id": "91ieGkBv9AZ7NiNS/K0RvE" 364 | }, 365 | { 366 | "__type__": "cc.HBAO", 367 | "_name": "", 368 | "_objFlags": 0, 369 | "__editorExtras__": {}, 370 | "node": { 371 | "__id__": 7 372 | }, 373 | "_enabled": true, 374 | "__prefab": null, 375 | "_radiusScale": 1, 376 | "_angleBiasDegree": 10, 377 | "_blurSharpness": 3, 378 | "_aoSaturation": 1, 379 | "_needBlur": true, 380 | "_id": "984P4wW4RMu7jUhbXsitf4" 381 | }, 382 | { 383 | "__type__": "cc.Fxaa", 384 | "_name": "", 385 | "_objFlags": 0, 386 | "__editorExtras__": {}, 387 | "node": { 388 | "__id__": 7 389 | }, 390 | "_enabled": true, 391 | "__prefab": null, 392 | "_id": "4doUUIH1hL5KnmD0X8LywN" 393 | }, 394 | { 395 | "__type__": "cc.BlitScreen", 396 | "_name": "", 397 | "_objFlags": 0, 398 | "__editorExtras__": {}, 399 | "node": { 400 | "__id__": 7 401 | }, 402 | "_enabled": false, 403 | "__prefab": null, 404 | "_activeMaterials": [ 405 | { 406 | "__uuid__": "ba4008dd-6116-43b7-b03e-7440c234e8ca", 407 | "__expectedType__": "cc.Material" 408 | } 409 | ], 410 | "_materials": [ 411 | { 412 | "__id__": 14 413 | } 414 | ], 415 | "_id": "53kkSeI35JsKC4HhDGgS/3" 416 | }, 417 | { 418 | "__type__": "cc.BlitScreenMaterial", 419 | "_material": { 420 | "__uuid__": "ba4008dd-6116-43b7-b03e-7440c234e8ca", 421 | "__expectedType__": "cc.Material" 422 | }, 423 | "enable": true 424 | }, 425 | { 426 | "__type__": "f9e40GltPlOW4ZWCqiNyLye", 427 | "_name": "", 428 | "_objFlags": 0, 429 | "__editorExtras__": {}, 430 | "node": { 431 | "__id__": 7 432 | }, 433 | "_enabled": false, 434 | "__prefab": null, 435 | "blueIntensity": 3, 436 | "showDepth": true, 437 | "depthRange": 50, 438 | "_material": { 439 | "__uuid__": "f7566fd2-4d67-4ad6-ad03-b0d218c86202", 440 | "__expectedType__": "cc.Material" 441 | }, 442 | "_id": "cb7yB8O1FK2K18OTL2zHQq" 443 | }, 444 | { 445 | "__type__": "cc.Node", 446 | "_objFlags": 0, 447 | "_parent": { 448 | "__id__": 1 449 | }, 450 | "_prefab": { 451 | "__id__": 17 452 | }, 453 | "__editorExtras__": {} 454 | }, 455 | { 456 | "__type__": "cc.PrefabInfo", 457 | "root": { 458 | "__id__": 16 459 | }, 460 | "asset": { 461 | "__uuid__": "6c6e8b79-828d-4a90-9d1e-26d92e9db900@d1932", 462 | "__expectedType__": "cc.Prefab" 463 | }, 464 | "fileId": "bf4CEPZVpZAbOIxEUDmEgQ", 465 | "instance": { 466 | "__id__": 18 467 | }, 468 | "targetOverrides": null, 469 | "nestedPrefabInstanceRoots": null 470 | }, 471 | { 472 | "__type__": "cc.PrefabInstance", 473 | "fileId": "edlsePAEtFw600ER27peXy", 474 | "prefabRootNode": null, 475 | "mountedChildren": [], 476 | "mountedComponents": [], 477 | "propertyOverrides": [ 478 | { 479 | "__id__": 19 480 | }, 481 | { 482 | "__id__": 21 483 | }, 484 | { 485 | "__id__": 22 486 | }, 487 | { 488 | "__id__": 23 489 | }, 490 | { 491 | "__id__": 24 492 | }, 493 | { 494 | "__id__": 25 495 | }, 496 | { 497 | "__id__": 27 498 | }, 499 | { 500 | "__id__": 29 501 | }, 502 | { 503 | "__id__": 31 504 | }, 505 | { 506 | "__id__": 33 507 | }, 508 | { 509 | "__id__": 35 510 | }, 511 | { 512 | "__id__": 37 513 | }, 514 | { 515 | "__id__": 39 516 | }, 517 | { 518 | "__id__": 41 519 | }, 520 | { 521 | "__id__": 43 522 | }, 523 | { 524 | "__id__": 45 525 | }, 526 | { 527 | "__id__": 47 528 | }, 529 | { 530 | "__id__": 49 531 | }, 532 | { 533 | "__id__": 51 534 | }, 535 | { 536 | "__id__": 53 537 | }, 538 | { 539 | "__id__": 55 540 | }, 541 | { 542 | "__id__": 57 543 | }, 544 | { 545 | "__id__": 59 546 | }, 547 | { 548 | "__id__": 61 549 | }, 550 | { 551 | "__id__": 63 552 | }, 553 | { 554 | "__id__": 65 555 | }, 556 | { 557 | "__id__": 67 558 | }, 559 | { 560 | "__id__": 69 561 | }, 562 | { 563 | "__id__": 71 564 | }, 565 | { 566 | "__id__": 73 567 | }, 568 | { 569 | "__id__": 75 570 | }, 571 | { 572 | "__id__": 77 573 | }, 574 | { 575 | "__id__": 79 576 | }, 577 | { 578 | "__id__": 81 579 | }, 580 | { 581 | "__id__": 83 582 | }, 583 | { 584 | "__id__": 85 585 | }, 586 | { 587 | "__id__": 87 588 | }, 589 | { 590 | "__id__": 89 591 | }, 592 | { 593 | "__id__": 91 594 | }, 595 | { 596 | "__id__": 93 597 | }, 598 | { 599 | "__id__": 95 600 | }, 601 | { 602 | "__id__": 97 603 | }, 604 | { 605 | "__id__": 99 606 | }, 607 | { 608 | "__id__": 101 609 | }, 610 | { 611 | "__id__": 103 612 | }, 613 | { 614 | "__id__": 105 615 | }, 616 | { 617 | "__id__": 107 618 | }, 619 | { 620 | "__id__": 109 621 | }, 622 | { 623 | "__id__": 111 624 | }, 625 | { 626 | "__id__": 113 627 | }, 628 | { 629 | "__id__": 115 630 | }, 631 | { 632 | "__id__": 117 633 | } 634 | ], 635 | "removedComponents": [] 636 | }, 637 | { 638 | "__type__": "CCPropertyOverrideInfo", 639 | "targetInfo": { 640 | "__id__": 20 641 | }, 642 | "propertyPath": [ 643 | "_name" 644 | ], 645 | "value": "scene" 646 | }, 647 | { 648 | "__type__": "cc.TargetInfo", 649 | "localID": [ 650 | "bf4CEPZVpZAbOIxEUDmEgQ" 651 | ] 652 | }, 653 | { 654 | "__type__": "CCPropertyOverrideInfo", 655 | "targetInfo": { 656 | "__id__": 20 657 | }, 658 | "propertyPath": [ 659 | "_lpos" 660 | ], 661 | "value": { 662 | "__type__": "cc.Vec3", 663 | "x": 0, 664 | "y": 0, 665 | "z": 0 666 | } 667 | }, 668 | { 669 | "__type__": "CCPropertyOverrideInfo", 670 | "targetInfo": { 671 | "__id__": 20 672 | }, 673 | "propertyPath": [ 674 | "_lrot" 675 | ], 676 | "value": { 677 | "__type__": "cc.Quat", 678 | "x": 0, 679 | "y": 0, 680 | "z": 0, 681 | "w": 1 682 | } 683 | }, 684 | { 685 | "__type__": "CCPropertyOverrideInfo", 686 | "targetInfo": { 687 | "__id__": 20 688 | }, 689 | "propertyPath": [ 690 | "_euler" 691 | ], 692 | "value": { 693 | "__type__": "cc.Vec3", 694 | "x": 0, 695 | "y": 0, 696 | "z": 0 697 | } 698 | }, 699 | { 700 | "__type__": "CCPropertyOverrideInfo", 701 | "targetInfo": { 702 | "__id__": 20 703 | }, 704 | "propertyPath": [ 705 | "_lscale" 706 | ], 707 | "value": { 708 | "__type__": "cc.Vec3", 709 | "x": 0.2, 710 | "y": 0.2, 711 | "z": 0.2 712 | } 713 | }, 714 | { 715 | "__type__": "CCPropertyOverrideInfo", 716 | "targetInfo": { 717 | "__id__": 26 718 | }, 719 | "propertyPath": [ 720 | "_shadowCastingMode" 721 | ], 722 | "value": 1 723 | }, 724 | { 725 | "__type__": "cc.TargetInfo", 726 | "localID": [ 727 | "d3zE2My69Y06CQ6bRCtgXE" 728 | ] 729 | }, 730 | { 731 | "__type__": "CCPropertyOverrideInfo", 732 | "targetInfo": { 733 | "__id__": 28 734 | }, 735 | "propertyPath": [ 736 | "_shadowCastingMode" 737 | ], 738 | "value": 1 739 | }, 740 | { 741 | "__type__": "cc.TargetInfo", 742 | "localID": [ 743 | "ceZX+Klw5VOIHvfxraEOrZ" 744 | ] 745 | }, 746 | { 747 | "__type__": "CCPropertyOverrideInfo", 748 | "targetInfo": { 749 | "__id__": 30 750 | }, 751 | "propertyPath": [ 752 | "_shadowCastingMode" 753 | ], 754 | "value": 1 755 | }, 756 | { 757 | "__type__": "cc.TargetInfo", 758 | "localID": [ 759 | "b0V9y186RTDIuW2IiaIwoG" 760 | ] 761 | }, 762 | { 763 | "__type__": "CCPropertyOverrideInfo", 764 | "targetInfo": { 765 | "__id__": 32 766 | }, 767 | "propertyPath": [ 768 | "_shadowCastingMode" 769 | ], 770 | "value": 1 771 | }, 772 | { 773 | "__type__": "cc.TargetInfo", 774 | "localID": [ 775 | "acsLIHCy1Qg5qRLDDT41FY" 776 | ] 777 | }, 778 | { 779 | "__type__": "CCPropertyOverrideInfo", 780 | "targetInfo": { 781 | "__id__": 34 782 | }, 783 | "propertyPath": [ 784 | "_shadowCastingMode" 785 | ], 786 | "value": 1 787 | }, 788 | { 789 | "__type__": "cc.TargetInfo", 790 | "localID": [ 791 | "4fWOLAIqhejKH8EaGpnJsS" 792 | ] 793 | }, 794 | { 795 | "__type__": "CCPropertyOverrideInfo", 796 | "targetInfo": { 797 | "__id__": 36 798 | }, 799 | "propertyPath": [ 800 | "_shadowCastingMode" 801 | ], 802 | "value": 1 803 | }, 804 | { 805 | "__type__": "cc.TargetInfo", 806 | "localID": [ 807 | "70cpcYbUBRcIopRMQOtY6k" 808 | ] 809 | }, 810 | { 811 | "__type__": "CCPropertyOverrideInfo", 812 | "targetInfo": { 813 | "__id__": 38 814 | }, 815 | "propertyPath": [ 816 | "_shadowCastingMode" 817 | ], 818 | "value": 1 819 | }, 820 | { 821 | "__type__": "cc.TargetInfo", 822 | "localID": [ 823 | "dbVKiwJ9VUvrScRGgpm0zb" 824 | ] 825 | }, 826 | { 827 | "__type__": "CCPropertyOverrideInfo", 828 | "targetInfo": { 829 | "__id__": 40 830 | }, 831 | "propertyPath": [ 832 | "_shadowCastingMode" 833 | ], 834 | "value": 1 835 | }, 836 | { 837 | "__type__": "cc.TargetInfo", 838 | "localID": [ 839 | "acbcofL89S/7jz5ZWotKZe" 840 | ] 841 | }, 842 | { 843 | "__type__": "CCPropertyOverrideInfo", 844 | "targetInfo": { 845 | "__id__": 42 846 | }, 847 | "propertyPath": [ 848 | "_shadowCastingMode" 849 | ], 850 | "value": 1 851 | }, 852 | { 853 | "__type__": "cc.TargetInfo", 854 | "localID": [ 855 | "99IQYvI55fnrIJW0ye/EZQ" 856 | ] 857 | }, 858 | { 859 | "__type__": "CCPropertyOverrideInfo", 860 | "targetInfo": { 861 | "__id__": 44 862 | }, 863 | "propertyPath": [ 864 | "_shadowCastingMode" 865 | ], 866 | "value": 1 867 | }, 868 | { 869 | "__type__": "cc.TargetInfo", 870 | "localID": [ 871 | "64k1E10rRaq67i7zuCPSJq" 872 | ] 873 | }, 874 | { 875 | "__type__": "CCPropertyOverrideInfo", 876 | "targetInfo": { 877 | "__id__": 46 878 | }, 879 | "propertyPath": [ 880 | "_shadowCastingMode" 881 | ], 882 | "value": 1 883 | }, 884 | { 885 | "__type__": "cc.TargetInfo", 886 | "localID": [ 887 | "05VcZS9utcv7ELeS5K7Y6E" 888 | ] 889 | }, 890 | { 891 | "__type__": "CCPropertyOverrideInfo", 892 | "targetInfo": { 893 | "__id__": 48 894 | }, 895 | "propertyPath": [ 896 | "_shadowCastingMode" 897 | ], 898 | "value": 1 899 | }, 900 | { 901 | "__type__": "cc.TargetInfo", 902 | "localID": [ 903 | "48LMtenaNcRIePE0ml9POh" 904 | ] 905 | }, 906 | { 907 | "__type__": "CCPropertyOverrideInfo", 908 | "targetInfo": { 909 | "__id__": 50 910 | }, 911 | "propertyPath": [ 912 | "_shadowCastingMode" 913 | ], 914 | "value": 1 915 | }, 916 | { 917 | "__type__": "cc.TargetInfo", 918 | "localID": [ 919 | "77bFYbniVSiqjUz/WBnah4" 920 | ] 921 | }, 922 | { 923 | "__type__": "CCPropertyOverrideInfo", 924 | "targetInfo": { 925 | "__id__": 52 926 | }, 927 | "propertyPath": [ 928 | "_shadowCastingMode" 929 | ], 930 | "value": 1 931 | }, 932 | { 933 | "__type__": "cc.TargetInfo", 934 | "localID": [ 935 | "04egg7xRtU27oDRu5BhVeJ" 936 | ] 937 | }, 938 | { 939 | "__type__": "CCPropertyOverrideInfo", 940 | "targetInfo": { 941 | "__id__": 54 942 | }, 943 | "propertyPath": [ 944 | "_shadowCastingMode" 945 | ], 946 | "value": 1 947 | }, 948 | { 949 | "__type__": "cc.TargetInfo", 950 | "localID": [ 951 | "80W1GT1a9WtYhjaBOTZAky" 952 | ] 953 | }, 954 | { 955 | "__type__": "CCPropertyOverrideInfo", 956 | "targetInfo": { 957 | "__id__": 56 958 | }, 959 | "propertyPath": [ 960 | "_shadowCastingMode" 961 | ], 962 | "value": 1 963 | }, 964 | { 965 | "__type__": "cc.TargetInfo", 966 | "localID": [ 967 | "0aKShGWzZWeLtNyeSLZ2IB" 968 | ] 969 | }, 970 | { 971 | "__type__": "CCPropertyOverrideInfo", 972 | "targetInfo": { 973 | "__id__": 58 974 | }, 975 | "propertyPath": [ 976 | "_shadowCastingMode" 977 | ], 978 | "value": 1 979 | }, 980 | { 981 | "__type__": "cc.TargetInfo", 982 | "localID": [ 983 | "19IQoehrhYzZbQT+nN2rLp" 984 | ] 985 | }, 986 | { 987 | "__type__": "CCPropertyOverrideInfo", 988 | "targetInfo": { 989 | "__id__": 60 990 | }, 991 | "propertyPath": [ 992 | "_shadowCastingMode" 993 | ], 994 | "value": 1 995 | }, 996 | { 997 | "__type__": "cc.TargetInfo", 998 | "localID": [ 999 | "69Vdz9UbZYgqqaZQwM+1O4" 1000 | ] 1001 | }, 1002 | { 1003 | "__type__": "CCPropertyOverrideInfo", 1004 | "targetInfo": { 1005 | "__id__": 62 1006 | }, 1007 | "propertyPath": [ 1008 | "_shadowCastingMode" 1009 | ], 1010 | "value": 1 1011 | }, 1012 | { 1013 | "__type__": "cc.TargetInfo", 1014 | "localID": [ 1015 | "cclCle/DFQmZHyy6U7SiKc" 1016 | ] 1017 | }, 1018 | { 1019 | "__type__": "CCPropertyOverrideInfo", 1020 | "targetInfo": { 1021 | "__id__": 64 1022 | }, 1023 | "propertyPath": [ 1024 | "_shadowCastingMode" 1025 | ], 1026 | "value": 1 1027 | }, 1028 | { 1029 | "__type__": "cc.TargetInfo", 1030 | "localID": [ 1031 | "84I36g1ZVdjbbt8JPbIDYt" 1032 | ] 1033 | }, 1034 | { 1035 | "__type__": "CCPropertyOverrideInfo", 1036 | "targetInfo": { 1037 | "__id__": 66 1038 | }, 1039 | "propertyPath": [ 1040 | "_shadowCastingMode" 1041 | ], 1042 | "value": 1 1043 | }, 1044 | { 1045 | "__type__": "cc.TargetInfo", 1046 | "localID": [ 1047 | "9564VaQyNX2bVdGWemU+wu" 1048 | ] 1049 | }, 1050 | { 1051 | "__type__": "CCPropertyOverrideInfo", 1052 | "targetInfo": { 1053 | "__id__": 68 1054 | }, 1055 | "propertyPath": [ 1056 | "_shadowCastingMode" 1057 | ], 1058 | "value": 1 1059 | }, 1060 | { 1061 | "__type__": "cc.TargetInfo", 1062 | "localID": [ 1063 | "35ArmTjL9d0JzUjKHjYL/H" 1064 | ] 1065 | }, 1066 | { 1067 | "__type__": "CCPropertyOverrideInfo", 1068 | "targetInfo": { 1069 | "__id__": 70 1070 | }, 1071 | "propertyPath": [ 1072 | "_shadowCastingMode" 1073 | ], 1074 | "value": 1 1075 | }, 1076 | { 1077 | "__type__": "cc.TargetInfo", 1078 | "localID": [ 1079 | "46aoep5P1WAYg7ePKO8N0r" 1080 | ] 1081 | }, 1082 | { 1083 | "__type__": "CCPropertyOverrideInfo", 1084 | "targetInfo": { 1085 | "__id__": 72 1086 | }, 1087 | "propertyPath": [ 1088 | "_shadowCastingMode" 1089 | ], 1090 | "value": 1 1091 | }, 1092 | { 1093 | "__type__": "cc.TargetInfo", 1094 | "localID": [ 1095 | "1dwZHmpolfYYaglueiaamH" 1096 | ] 1097 | }, 1098 | { 1099 | "__type__": "CCPropertyOverrideInfo", 1100 | "targetInfo": { 1101 | "__id__": 74 1102 | }, 1103 | "propertyPath": [ 1104 | "_shadowCastingMode" 1105 | ], 1106 | "value": 1 1107 | }, 1108 | { 1109 | "__type__": "cc.TargetInfo", 1110 | "localID": [ 1111 | "d9GM6Xi4xcWrhCDEditNT5" 1112 | ] 1113 | }, 1114 | { 1115 | "__type__": "CCPropertyOverrideInfo", 1116 | "targetInfo": { 1117 | "__id__": 76 1118 | }, 1119 | "propertyPath": [ 1120 | "_shadowCastingMode" 1121 | ], 1122 | "value": 1 1123 | }, 1124 | { 1125 | "__type__": "cc.TargetInfo", 1126 | "localID": [ 1127 | "b9MFhtjPdZ56azQW5BVmnl" 1128 | ] 1129 | }, 1130 | { 1131 | "__type__": "CCPropertyOverrideInfo", 1132 | "targetInfo": { 1133 | "__id__": 78 1134 | }, 1135 | "propertyPath": [ 1136 | "_shadowCastingMode" 1137 | ], 1138 | "value": 1 1139 | }, 1140 | { 1141 | "__type__": "cc.TargetInfo", 1142 | "localID": [ 1143 | "a9RFbftxZQmbpKSJK1wZWV" 1144 | ] 1145 | }, 1146 | { 1147 | "__type__": "CCPropertyOverrideInfo", 1148 | "targetInfo": { 1149 | "__id__": 80 1150 | }, 1151 | "propertyPath": [ 1152 | "_shadowCastingMode" 1153 | ], 1154 | "value": 1 1155 | }, 1156 | { 1157 | "__type__": "cc.TargetInfo", 1158 | "localID": [ 1159 | "1blQ820b9Ty4y2uE7eY81J" 1160 | ] 1161 | }, 1162 | { 1163 | "__type__": "CCPropertyOverrideInfo", 1164 | "targetInfo": { 1165 | "__id__": 82 1166 | }, 1167 | "propertyPath": [ 1168 | "_shadowCastingMode" 1169 | ], 1170 | "value": 1 1171 | }, 1172 | { 1173 | "__type__": "cc.TargetInfo", 1174 | "localID": [ 1175 | "07ptfvvlNabYEIey5fRPYg" 1176 | ] 1177 | }, 1178 | { 1179 | "__type__": "CCPropertyOverrideInfo", 1180 | "targetInfo": { 1181 | "__id__": 84 1182 | }, 1183 | "propertyPath": [ 1184 | "_shadowCastingMode" 1185 | ], 1186 | "value": 1 1187 | }, 1188 | { 1189 | "__type__": "cc.TargetInfo", 1190 | "localID": [ 1191 | "05AlS3aEhavKBG0WXaqUJD" 1192 | ] 1193 | }, 1194 | { 1195 | "__type__": "CCPropertyOverrideInfo", 1196 | "targetInfo": { 1197 | "__id__": 86 1198 | }, 1199 | "propertyPath": [ 1200 | "_shadowCastingMode" 1201 | ], 1202 | "value": 1 1203 | }, 1204 | { 1205 | "__type__": "cc.TargetInfo", 1206 | "localID": [ 1207 | "76U3YzcxRZ4LT7Jhw15Jcz" 1208 | ] 1209 | }, 1210 | { 1211 | "__type__": "CCPropertyOverrideInfo", 1212 | "targetInfo": { 1213 | "__id__": 88 1214 | }, 1215 | "propertyPath": [ 1216 | "_shadowCastingMode" 1217 | ], 1218 | "value": 1 1219 | }, 1220 | { 1221 | "__type__": "cc.TargetInfo", 1222 | "localID": [ 1223 | "80Pher7a5UWYT+Ve0GWZ6u" 1224 | ] 1225 | }, 1226 | { 1227 | "__type__": "CCPropertyOverrideInfo", 1228 | "targetInfo": { 1229 | "__id__": 90 1230 | }, 1231 | "propertyPath": [ 1232 | "_shadowCastingMode" 1233 | ], 1234 | "value": 1 1235 | }, 1236 | { 1237 | "__type__": "cc.TargetInfo", 1238 | "localID": [ 1239 | "9emwLshdZQeon95gVUfYZ4" 1240 | ] 1241 | }, 1242 | { 1243 | "__type__": "CCPropertyOverrideInfo", 1244 | "targetInfo": { 1245 | "__id__": 92 1246 | }, 1247 | "propertyPath": [ 1248 | "_shadowCastingMode" 1249 | ], 1250 | "value": 1 1251 | }, 1252 | { 1253 | "__type__": "cc.TargetInfo", 1254 | "localID": [ 1255 | "5302VTky5WtbAhdjAVc+dI" 1256 | ] 1257 | }, 1258 | { 1259 | "__type__": "CCPropertyOverrideInfo", 1260 | "targetInfo": { 1261 | "__id__": 94 1262 | }, 1263 | "propertyPath": [ 1264 | "_shadowCastingMode" 1265 | ], 1266 | "value": 1 1267 | }, 1268 | { 1269 | "__type__": "cc.TargetInfo", 1270 | "localID": [ 1271 | "f0zRhSAWBXOJYYHtnNm+eR" 1272 | ] 1273 | }, 1274 | { 1275 | "__type__": "CCPropertyOverrideInfo", 1276 | "targetInfo": { 1277 | "__id__": 96 1278 | }, 1279 | "propertyPath": [ 1280 | "_shadowCastingMode" 1281 | ], 1282 | "value": 1 1283 | }, 1284 | { 1285 | "__type__": "cc.TargetInfo", 1286 | "localID": [ 1287 | "38aIYeQttX5rXYTt1/XeDx" 1288 | ] 1289 | }, 1290 | { 1291 | "__type__": "CCPropertyOverrideInfo", 1292 | "targetInfo": { 1293 | "__id__": 98 1294 | }, 1295 | "propertyPath": [ 1296 | "_shadowCastingMode" 1297 | ], 1298 | "value": 1 1299 | }, 1300 | { 1301 | "__type__": "cc.TargetInfo", 1302 | "localID": [ 1303 | "43K7oAzT1W16zQyXfUN07Y" 1304 | ] 1305 | }, 1306 | { 1307 | "__type__": "CCPropertyOverrideInfo", 1308 | "targetInfo": { 1309 | "__id__": 100 1310 | }, 1311 | "propertyPath": [ 1312 | "_shadowCastingMode" 1313 | ], 1314 | "value": 1 1315 | }, 1316 | { 1317 | "__type__": "cc.TargetInfo", 1318 | "localID": [ 1319 | "3bw2kAZsZRn5o15/LXhPpt" 1320 | ] 1321 | }, 1322 | { 1323 | "__type__": "CCPropertyOverrideInfo", 1324 | "targetInfo": { 1325 | "__id__": 102 1326 | }, 1327 | "propertyPath": [ 1328 | "_shadowCastingMode" 1329 | ], 1330 | "value": 1 1331 | }, 1332 | { 1333 | "__type__": "cc.TargetInfo", 1334 | "localID": [ 1335 | "e75bfjCYJZvYyqMT63LSZW" 1336 | ] 1337 | }, 1338 | { 1339 | "__type__": "CCPropertyOverrideInfo", 1340 | "targetInfo": { 1341 | "__id__": 104 1342 | }, 1343 | "propertyPath": [ 1344 | "_shadowCastingMode" 1345 | ], 1346 | "value": 1 1347 | }, 1348 | { 1349 | "__type__": "cc.TargetInfo", 1350 | "localID": [ 1351 | "72Xt1DnLxfKY6ilFAjK6Qk" 1352 | ] 1353 | }, 1354 | { 1355 | "__type__": "CCPropertyOverrideInfo", 1356 | "targetInfo": { 1357 | "__id__": 106 1358 | }, 1359 | "propertyPath": [ 1360 | "_shadowCastingMode" 1361 | ], 1362 | "value": 1 1363 | }, 1364 | { 1365 | "__type__": "cc.TargetInfo", 1366 | "localID": [ 1367 | "88w36lSppd/6tjyAt+Dgaq" 1368 | ] 1369 | }, 1370 | { 1371 | "__type__": "CCPropertyOverrideInfo", 1372 | "targetInfo": { 1373 | "__id__": 108 1374 | }, 1375 | "propertyPath": [ 1376 | "_shadowCastingMode" 1377 | ], 1378 | "value": 1 1379 | }, 1380 | { 1381 | "__type__": "cc.TargetInfo", 1382 | "localID": [ 1383 | "9ewp2LvgRZt4h0rUT48ydR" 1384 | ] 1385 | }, 1386 | { 1387 | "__type__": "CCPropertyOverrideInfo", 1388 | "targetInfo": { 1389 | "__id__": 110 1390 | }, 1391 | "propertyPath": [ 1392 | "_shadowCastingMode" 1393 | ], 1394 | "value": 1 1395 | }, 1396 | { 1397 | "__type__": "cc.TargetInfo", 1398 | "localID": [ 1399 | "6fPO6qRZ5fjqqJd3/PLhs7" 1400 | ] 1401 | }, 1402 | { 1403 | "__type__": "CCPropertyOverrideInfo", 1404 | "targetInfo": { 1405 | "__id__": 112 1406 | }, 1407 | "propertyPath": [ 1408 | "_shadowCastingMode" 1409 | ], 1410 | "value": 1 1411 | }, 1412 | { 1413 | "__type__": "cc.TargetInfo", 1414 | "localID": [ 1415 | "f10yRkc5NZUpgkIHyaYFzx" 1416 | ] 1417 | }, 1418 | { 1419 | "__type__": "CCPropertyOverrideInfo", 1420 | "targetInfo": { 1421 | "__id__": 114 1422 | }, 1423 | "propertyPath": [ 1424 | "_shadowCastingMode" 1425 | ], 1426 | "value": 1 1427 | }, 1428 | { 1429 | "__type__": "cc.TargetInfo", 1430 | "localID": [ 1431 | "5agZgMwG1VSqWcVZDISv4S" 1432 | ] 1433 | }, 1434 | { 1435 | "__type__": "CCPropertyOverrideInfo", 1436 | "targetInfo": { 1437 | "__id__": 116 1438 | }, 1439 | "propertyPath": [ 1440 | "_shadowCastingMode" 1441 | ], 1442 | "value": 1 1443 | }, 1444 | { 1445 | "__type__": "cc.TargetInfo", 1446 | "localID": [ 1447 | "64ql/YL0RVfYHwoTEfzVz4" 1448 | ] 1449 | }, 1450 | { 1451 | "__type__": "CCPropertyOverrideInfo", 1452 | "targetInfo": { 1453 | "__id__": 118 1454 | }, 1455 | "propertyPath": [ 1456 | "_shadowCastingMode" 1457 | ], 1458 | "value": 1 1459 | }, 1460 | { 1461 | "__type__": "cc.TargetInfo", 1462 | "localID": [ 1463 | "fdeGTGLS9ebYyLNxhDbsNG" 1464 | ] 1465 | }, 1466 | { 1467 | "__type__": "cc.PrefabInfo", 1468 | "root": null, 1469 | "asset": null, 1470 | "fileId": "f46876e4-e81b-4931-b493-6d367be385e7", 1471 | "instance": null, 1472 | "targetOverrides": null, 1473 | "nestedPrefabInstanceRoots": [ 1474 | { 1475 | "__id__": 16 1476 | } 1477 | ] 1478 | }, 1479 | { 1480 | "__type__": "cc.SceneGlobals", 1481 | "ambient": { 1482 | "__id__": 121 1483 | }, 1484 | "shadows": { 1485 | "__id__": 122 1486 | }, 1487 | "_skybox": { 1488 | "__id__": 123 1489 | }, 1490 | "fog": { 1491 | "__id__": 124 1492 | }, 1493 | "octree": { 1494 | "__id__": 125 1495 | }, 1496 | "skin": { 1497 | "__id__": 126 1498 | }, 1499 | "lightProbeInfo": { 1500 | "__id__": 127 1501 | }, 1502 | "bakedWithStationaryMainLight": false, 1503 | "bakedWithHighpLightmap": false 1504 | }, 1505 | { 1506 | "__type__": "cc.AmbientInfo", 1507 | "_skyColorHDR": { 1508 | "__type__": "cc.Vec4", 1509 | "x": 0.365754, 1510 | "y": 0.568107, 1511 | "z": 0.908079, 1512 | "w": 0.520833125 1513 | }, 1514 | "_skyColor": { 1515 | "__type__": "cc.Vec4", 1516 | "x": 0.365754, 1517 | "y": 0.568107, 1518 | "z": 0.908079, 1519 | "w": 0.520833125 1520 | }, 1521 | "_skyIllumHDR": 20000, 1522 | "_skyIllum": 20000, 1523 | "_groundAlbedoHDR": { 1524 | "__type__": "cc.Vec4", 1525 | "x": 0.455624, 1526 | "y": 0.403274, 1527 | "z": 0.370948, 1528 | "w": 0 1529 | }, 1530 | "_groundAlbedo": { 1531 | "__type__": "cc.Vec4", 1532 | "x": 0.455624, 1533 | "y": 0.403274, 1534 | "z": 0.370948, 1535 | "w": 0 1536 | }, 1537 | "_skyColorLDR": { 1538 | "__type__": "cc.Vec4", 1539 | "x": 0.452588, 1540 | "y": 0.607642, 1541 | "z": 0.755699, 1542 | "w": 0 1543 | }, 1544 | "_skyIllumLDR": 0.8, 1545 | "_groundAlbedoLDR": { 1546 | "__type__": "cc.Vec4", 1547 | "x": 0.618555, 1548 | "y": 0.577848, 1549 | "z": 0.544564, 1550 | "w": 0 1551 | } 1552 | }, 1553 | { 1554 | "__type__": "cc.ShadowsInfo", 1555 | "_enabled": true, 1556 | "_type": 1, 1557 | "_normal": { 1558 | "__type__": "cc.Vec3", 1559 | "x": 0, 1560 | "y": 1, 1561 | "z": 0 1562 | }, 1563 | "_distance": 0, 1564 | "_shadowColor": { 1565 | "__type__": "cc.Color", 1566 | "r": 76, 1567 | "g": 76, 1568 | "b": 76, 1569 | "a": 255 1570 | }, 1571 | "_maxReceived": 4, 1572 | "_size": { 1573 | "__type__": "cc.Vec2", 1574 | "x": 1024, 1575 | "y": 1024 1576 | } 1577 | }, 1578 | { 1579 | "__type__": "cc.SkyboxInfo", 1580 | "_envLightingType": 1, 1581 | "_envmapHDR": { 1582 | "__uuid__": "d032ac98-05e1-4090-88bb-eb640dcb5fc1@b47c0", 1583 | "__expectedType__": "cc.TextureCube" 1584 | }, 1585 | "_envmap": { 1586 | "__uuid__": "d032ac98-05e1-4090-88bb-eb640dcb5fc1@b47c0", 1587 | "__expectedType__": "cc.TextureCube" 1588 | }, 1589 | "_envmapLDR": { 1590 | "__uuid__": "6f01cf7f-81bf-4a7e-bd5d-0afc19696480@b47c0", 1591 | "__expectedType__": "cc.TextureCube" 1592 | }, 1593 | "_diffuseMapHDR": null, 1594 | "_diffuseMapLDR": null, 1595 | "_enabled": true, 1596 | "_useHDR": true, 1597 | "_editableMaterial": null, 1598 | "_reflectionHDR": null, 1599 | "_reflectionLDR": null, 1600 | "_rotationAngle": 0 1601 | }, 1602 | { 1603 | "__type__": "cc.FogInfo", 1604 | "_type": 0, 1605 | "_fogColor": { 1606 | "__type__": "cc.Color", 1607 | "r": 200, 1608 | "g": 200, 1609 | "b": 200, 1610 | "a": 255 1611 | }, 1612 | "_enabled": false, 1613 | "_fogDensity": 0.3, 1614 | "_fogStart": 0.5, 1615 | "_fogEnd": 300, 1616 | "_fogAtten": 5, 1617 | "_fogTop": 1.5, 1618 | "_fogRange": 1.2, 1619 | "_accurate": false 1620 | }, 1621 | { 1622 | "__type__": "cc.OctreeInfo", 1623 | "_enabled": false, 1624 | "_minPos": { 1625 | "__type__": "cc.Vec3", 1626 | "x": -1024, 1627 | "y": -1024, 1628 | "z": -1024 1629 | }, 1630 | "_maxPos": { 1631 | "__type__": "cc.Vec3", 1632 | "x": 1024, 1633 | "y": 1024, 1634 | "z": 1024 1635 | }, 1636 | "_depth": 8 1637 | }, 1638 | { 1639 | "__type__": "cc.SkinInfo", 1640 | "_enabled": false, 1641 | "_blurRadius": 0.01, 1642 | "_sssIntensity": 5 1643 | }, 1644 | { 1645 | "__type__": "cc.LightProbeInfo", 1646 | "_giScale": 1, 1647 | "_giSamples": 1024, 1648 | "_bounces": 2, 1649 | "_reduceRinging": 0, 1650 | "_showProbe": true, 1651 | "_showWireframe": true, 1652 | "_showConvex": false, 1653 | "_data": null, 1654 | "_lightProbeSphereVolume": 1 1655 | } 1656 | ] -------------------------------------------------------------------------------- /assets/cases/post-process/post-process.scene.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.1.45", 3 | "importer": "scene", 4 | "imported": true, 5 | "uuid": "5d722be7-00a3-4597-b829-22703640b7d3", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/shared-res.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "1df2eb02-7d2f-4d36-aa5f-81dd1da86a09", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/shared-res/cube-maps.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "12a03e70-361c-4a42-9190-8f1b0039bd83", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/shared-res/material.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "5c5de3bf-a616-4736-8e5d-ba4b4c3a476e", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/shared-res/material/custom.effect: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2017-2020 Xiamen Yaji Software Co., Ltd. 2 | 3 | CCEffect %{ 4 | techniques: 5 | - passes: 6 | - vert: vs 7 | frag: fs 8 | pass: post-process 9 | rasterizerState: 10 | cullMode: none 11 | depthStencilState: 12 | depthTest: false 13 | depthWrite: false 14 | blendState: 15 | targets: 16 | - blend: true 17 | blendSrc: one 18 | blendDst: zero 19 | properties: 20 | intensity: { value: 1, target: params.x } 21 | depthRange: { value: 30, target: params.z } 22 | 23 | }% 24 | 25 | 26 | CCProgram vs %{ 27 | 28 | precision highp float; 29 | 30 | #include 31 | #include 32 | #include 33 | 34 | out vec2 v_uv; 35 | 36 | void main () { 37 | StandardVertInput In; 38 | CCDecode(In); 39 | CC_HANDLE_GET_CLIP_FLIP(In.position.xy); 40 | gl_Position = In.position; 41 | 42 | v_uv = a_texCoord; 43 | } 44 | 45 | }% 46 | 47 | CCProgram ubo %{ 48 | uniform PostUBO { 49 | vec4 texSize; 50 | vec4 params; 51 | }; 52 | #pragma rate inputTexture pass 53 | uniform sampler2D inputTexture; 54 | #pragma rate depthTexture pass 55 | uniform sampler2D depthTexture; 56 | }% 57 | 58 | CCProgram fs %{ 59 | precision highp float; 60 | 61 | #include 62 | #include 63 | #include 64 | 65 | in vec2 v_uv; 66 | #include 67 | 68 | layout(location = 0) out vec4 fragColor; 69 | void main () { 70 | if (params.y == 0.) { 71 | fragColor = texture(inputTexture, v_uv); 72 | 73 | fragColor.rgb *= vec3(1., 1., params.x); 74 | } 75 | else { 76 | fragColor = texture(depthTexture, v_uv); 77 | fragColor.r = 1. - (1. - fragColor.r) * params.z; 78 | } 79 | } 80 | 81 | 82 | }% 83 | 84 | -------------------------------------------------------------------------------- /assets/shared-res/material/custom.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.7.0", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "a3872ace-a66d-4889-979e-7cd916a3fd95", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/shared-res/material/custom.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "_native": "", 6 | "_effectAsset": { 7 | "__uuid__": "a3872ace-a66d-4889-979e-7cd916a3fd95", 8 | "__expectedType__": "cc.EffectAsset" 9 | }, 10 | "_techIdx": 0, 11 | "_defines": [ 12 | {} 13 | ], 14 | "_states": [ 15 | { 16 | "rasterizerState": {}, 17 | "depthStencilState": {}, 18 | "blendState": { 19 | "targets": [ 20 | {} 21 | ] 22 | } 23 | } 24 | ], 25 | "_props": [ 26 | { 27 | "intensity": 3.4 28 | } 29 | ] 30 | } -------------------------------------------------------------------------------- /assets/shared-res/material/custom.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "f7566fd2-4d67-4ad6-ad03-b0d218c86202", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/shared-res/material/dot.effect: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2017-2020 Xiamen Yaji Software Co., Ltd. 2 | 3 | CCEffect %{ 4 | techniques: 5 | - passes: 6 | - vert: vs 7 | frag: fs 8 | pass: post-process 9 | rasterizerState: 10 | cullMode: none 11 | depthStencilState: 12 | depthTest: false 13 | depthWrite: false 14 | blendState: 15 | targets: 16 | - blend: true 17 | blendSrc: one 18 | blendDst: zero 19 | properties: 20 | angle: { value: 0, target: params.x } 21 | scale: { value: 1, target: params.y } 22 | }% 23 | 24 | 25 | CCProgram vs %{ 26 | 27 | precision highp float; 28 | 29 | #include 30 | #include 31 | #include 32 | 33 | out vec2 v_uv; 34 | 35 | void main () { 36 | StandardVertInput In; 37 | CCDecode(In); 38 | CC_HANDLE_GET_CLIP_FLIP(In.position.xy); 39 | gl_Position = In.position; 40 | 41 | v_uv = a_texCoord; 42 | } 43 | 44 | }% 45 | 46 | CCProgram ubo %{ 47 | uniform PostUBO { 48 | vec4 texSize; 49 | vec4 params; 50 | }; 51 | #pragma rate inputTexture pass 52 | uniform sampler2D inputTexture; 53 | }% 54 | 55 | CCProgram fs %{ 56 | precision highp float; 57 | 58 | #include 59 | #include 60 | #include 61 | 62 | in vec2 v_uv; 63 | #include 64 | 65 | // Ruofei Du 66 | // Dot Screen / Halftone: https://www.shadertoy.com/view/4sBBDK 67 | // Halftone: https://www.shadertoy.com/view/lsSfWV 68 | 69 | float greyScale(in vec3 col) { 70 | return dot(col, vec3(0.2126, 0.7152, 0.0722)); 71 | } 72 | 73 | mat2 rotate2d(float angle){ 74 | return mat2(cos(angle), -sin(angle), sin(angle),cos(angle)); 75 | } 76 | 77 | float dotScreen(in vec2 uv, in float angle, in float scale) { 78 | float s = sin( angle ), c = cos( angle ); 79 | vec2 p = (uv - vec2(0.5)) * cc_screenSize.xy; 80 | vec2 q = rotate2d(angle) * p * scale; 81 | return ( sin( q.x ) * sin( q.y ) ) * 4.0; 82 | } 83 | 84 | layout(location = 0) out vec4 fragColor; 85 | void main () { 86 | vec3 col = texture(inputTexture, v_uv).rgb; 87 | float grey = greyScale(col); 88 | float angle = params.x; 89 | float scale = params.y; 90 | col = vec3( grey * 10.0 - 5.0 + dotScreen(v_uv, angle, scale ) ); 91 | fragColor = vec4( col, 1.0 ); 92 | } 93 | 94 | }% 95 | 96 | -------------------------------------------------------------------------------- /assets/shared-res/material/dot.effect.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.7.0", 3 | "importer": "effect", 4 | "imported": true, 5 | "uuid": "02675b97-5892-424c-bd57-b4e149c74860", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/shared-res/material/dot.mtl: -------------------------------------------------------------------------------- 1 | { 2 | "__type__": "cc.Material", 3 | "_name": "", 4 | "_objFlags": 0, 5 | "__editorExtras__": {}, 6 | "_native": "", 7 | "_effectAsset": { 8 | "__uuid__": "02675b97-5892-424c-bd57-b4e149c74860", 9 | "__expectedType__": "cc.EffectAsset" 10 | }, 11 | "_techIdx": 0, 12 | "_defines": [ 13 | {} 14 | ], 15 | "_states": [ 16 | { 17 | "rasterizerState": {}, 18 | "depthStencilState": {}, 19 | "blendState": { 20 | "targets": [ 21 | {} 22 | ] 23 | } 24 | } 25 | ], 26 | "_props": [ 27 | { 28 | "intensity": 0.4 29 | } 30 | ] 31 | } -------------------------------------------------------------------------------- /assets/shared-res/material/dot.mtl.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.20", 3 | "importer": "material", 4 | "imported": true, 5 | "uuid": "ba4008dd-6116-43b7-b03e-7440c234e8ca", 6 | "files": [ 7 | ".json" 8 | ], 9 | "subMetas": {}, 10 | "userData": {} 11 | } 12 | -------------------------------------------------------------------------------- /assets/shared-res/models.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "e81f1bff-059a-4133-b5bf-a6cb72cf77f3", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "5075f752-db5e-4c01-8b91-27afc98f9393", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/scene.bin -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/scene.bin.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.3", 3 | "importer": "buffer", 4 | "imported": true, 5 | "uuid": "c3085d00-9c60-426b-acc0-0d8079bf9c78", 6 | "files": [ 7 | ".bin", 8 | ".json" 9 | ], 10 | "subMetas": {}, 11 | "userData": {} 12 | } 13 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "92c0de12-c207-4515-b880-9250644ac070", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": { 9 | "compressionType": {}, 10 | "isRemoteBundle": {} 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_0_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_0_baseColor.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_0_baseColor.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "1418bd56-07b5-4ba0-a309-53dffa604b7b", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "1418bd56-07b5-4ba0-a309-53dffa604b7b@6c48a", 14 | "displayName": "material_0_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "1418bd56-07b5-4ba0-a309-53dffa604b7b", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": true, 40 | "redirect": "1418bd56-07b5-4ba0-a309-53dffa604b7b@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_0_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_0_metallicRoughness.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_0_metallicRoughness.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "5ff962bb-648d-45a7-9b9c-e2375a3376e0", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "5ff962bb-648d-45a7-9b9c-e2375a3376e0@6c48a", 14 | "displayName": "material_0_metallicRoughness", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "5ff962bb-648d-45a7-9b9c-e2375a3376e0", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "5ff962bb-648d-45a7-9b9c-e2375a3376e0@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_0_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_0_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_0_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "fd1dfe59-5891-4b60-aa74-448d85bd26d0", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "fd1dfe59-5891-4b60-aa74-448d85bd26d0@6c48a", 14 | "displayName": "material_0_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "fd1dfe59-5891-4b60-aa74-448d85bd26d0", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "fd1dfe59-5891-4b60-aa74-448d85bd26d0@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_10_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_10_baseColor.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_10_baseColor.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "b2a22f58-c25c-48c7-9b33-575b1d683bd2", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "b2a22f58-c25c-48c7-9b33-575b1d683bd2@6c48a", 14 | "displayName": "material_10_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "b2a22f58-c25c-48c7-9b33-575b1d683bd2", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "b2a22f58-c25c-48c7-9b33-575b1d683bd2@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_10_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_10_metallicRoughness.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_10_metallicRoughness.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "663b6b6c-4036-4480-be57-f271431994ab", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "663b6b6c-4036-4480-be57-f271431994ab@6c48a", 14 | "displayName": "material_10_metallicRoughness", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "663b6b6c-4036-4480-be57-f271431994ab", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "663b6b6c-4036-4480-be57-f271431994ab@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_10_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_10_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_10_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "e220d0fa-c358-4cff-b46f-3eb7ad0c72ed", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "e220d0fa-c358-4cff-b46f-3eb7ad0c72ed@6c48a", 14 | "displayName": "material_10_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "e220d0fa-c358-4cff-b46f-3eb7ad0c72ed", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "e220d0fa-c358-4cff-b46f-3eb7ad0c72ed@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_11_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_11_baseColor.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_11_baseColor.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "381d85fb-dbcc-41d1-a124-86370a568cf1", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "381d85fb-dbcc-41d1-a124-86370a568cf1@6c48a", 14 | "displayName": "material_11_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "381d85fb-dbcc-41d1-a124-86370a568cf1", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "381d85fb-dbcc-41d1-a124-86370a568cf1@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_11_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_11_metallicRoughness.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_11_metallicRoughness.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "0c5fe8b2-269a-444b-8192-42d83904f430", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "0c5fe8b2-269a-444b-8192-42d83904f430@6c48a", 14 | "displayName": "material_11_metallicRoughness", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "0c5fe8b2-269a-444b-8192-42d83904f430", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "0c5fe8b2-269a-444b-8192-42d83904f430@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_11_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_11_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_11_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "7ddc19dc-beb3-4706-954f-58cdc99414df", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "7ddc19dc-beb3-4706-954f-58cdc99414df@6c48a", 14 | "displayName": "material_11_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "7ddc19dc-beb3-4706-954f-58cdc99414df", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "7ddc19dc-beb3-4706-954f-58cdc99414df@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_12_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_12_baseColor.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_12_baseColor.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "41bb0a4b-944b-4060-beb7-93ea45c54f77", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "41bb0a4b-944b-4060-beb7-93ea45c54f77@6c48a", 14 | "displayName": "material_12_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "41bb0a4b-944b-4060-beb7-93ea45c54f77", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "41bb0a4b-944b-4060-beb7-93ea45c54f77@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_13_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_13_baseColor.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_13_baseColor.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "35025edd-2720-4abe-97cc-9ce713ea2acf", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "35025edd-2720-4abe-97cc-9ce713ea2acf@6c48a", 14 | "displayName": "material_13_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "35025edd-2720-4abe-97cc-9ce713ea2acf", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "35025edd-2720-4abe-97cc-9ce713ea2acf@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_13_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_13_metallicRoughness.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_13_metallicRoughness.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "df2a3f11-1634-48f4-91b7-4ec811a08459", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "df2a3f11-1634-48f4-91b7-4ec811a08459@6c48a", 14 | "displayName": "material_13_metallicRoughness", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "df2a3f11-1634-48f4-91b7-4ec811a08459", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "df2a3f11-1634-48f4-91b7-4ec811a08459@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_13_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_13_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_13_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "7cc00ba3-2eb0-4a42-8edc-f2ada19ef687", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "7cc00ba3-2eb0-4a42-8edc-f2ada19ef687@6c48a", 14 | "displayName": "material_13_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "7cc00ba3-2eb0-4a42-8edc-f2ada19ef687", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "7cc00ba3-2eb0-4a42-8edc-f2ada19ef687@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_14_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_14_baseColor.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_14_baseColor.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "ae9d8e4d-3f4e-4069-a793-1185f2a5b921", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "ae9d8e4d-3f4e-4069-a793-1185f2a5b921@6c48a", 14 | "displayName": "material_14_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "ae9d8e4d-3f4e-4069-a793-1185f2a5b921", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "ae9d8e4d-3f4e-4069-a793-1185f2a5b921@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_14_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_14_metallicRoughness.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_14_metallicRoughness.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "dc246d1b-c41d-4d40-aade-d7057d0aad65", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "dc246d1b-c41d-4d40-aade-d7057d0aad65@6c48a", 14 | "displayName": "material_14_metallicRoughness", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "dc246d1b-c41d-4d40-aade-d7057d0aad65", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "dc246d1b-c41d-4d40-aade-d7057d0aad65@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_14_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_14_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_14_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "661ba895-ba65-40d9-b5cd-d480384de9a7", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "661ba895-ba65-40d9-b5cd-d480384de9a7@6c48a", 14 | "displayName": "material_14_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "661ba895-ba65-40d9-b5cd-d480384de9a7", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "661ba895-ba65-40d9-b5cd-d480384de9a7@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_15_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_15_baseColor.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_15_baseColor.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "0b215c25-2c96-4b92-bad4-827b0279fc60", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "0b215c25-2c96-4b92-bad4-827b0279fc60@6c48a", 14 | "displayName": "material_15_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "0b215c25-2c96-4b92-bad4-827b0279fc60", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "0b215c25-2c96-4b92-bad4-827b0279fc60@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_15_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_15_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_15_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "89fe09ab-23c3-49d2-9718-ec92bd868079", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "89fe09ab-23c3-49d2-9718-ec92bd868079@6c48a", 14 | "displayName": "material_15_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "89fe09ab-23c3-49d2-9718-ec92bd868079", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "89fe09ab-23c3-49d2-9718-ec92bd868079@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_16_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_16_baseColor.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_16_baseColor.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "dd1d586b-7852-4176-8377-9ba8b2f2ff71", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "dd1d586b-7852-4176-8377-9ba8b2f2ff71@6c48a", 14 | "displayName": "material_16_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "dd1d586b-7852-4176-8377-9ba8b2f2ff71", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "dd1d586b-7852-4176-8377-9ba8b2f2ff71@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_16_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_16_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_16_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "c107e683-25e4-46a3-adac-27d0a2551803", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "c107e683-25e4-46a3-adac-27d0a2551803@6c48a", 14 | "displayName": "material_16_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "c107e683-25e4-46a3-adac-27d0a2551803", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "c107e683-25e4-46a3-adac-27d0a2551803@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_17_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_17_baseColor.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_17_baseColor.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "960df134-6754-43ea-868e-d16398ba110b", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "960df134-6754-43ea-868e-d16398ba110b@6c48a", 14 | "displayName": "material_17_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "960df134-6754-43ea-868e-d16398ba110b", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "960df134-6754-43ea-868e-d16398ba110b@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_17_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_17_metallicRoughness.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_17_metallicRoughness.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "793983ac-abfe-46d3-80c7-cf35258c103e", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "793983ac-abfe-46d3-80c7-cf35258c103e@6c48a", 14 | "displayName": "material_17_metallicRoughness", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "793983ac-abfe-46d3-80c7-cf35258c103e", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "793983ac-abfe-46d3-80c7-cf35258c103e@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_17_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_17_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_17_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "8e52a3cd-7349-47ab-9f90-df9a9ce55e9f", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "8e52a3cd-7349-47ab-9f90-df9a9ce55e9f@6c48a", 14 | "displayName": "material_17_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "8e52a3cd-7349-47ab-9f90-df9a9ce55e9f", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "8e52a3cd-7349-47ab-9f90-df9a9ce55e9f@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_18_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_18_baseColor.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_18_baseColor.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "2b9634c3-f636-48d4-abbd-1d38d2d79ff6", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "2b9634c3-f636-48d4-abbd-1d38d2d79ff6@6c48a", 14 | "displayName": "material_18_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "2b9634c3-f636-48d4-abbd-1d38d2d79ff6", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "2b9634c3-f636-48d4-abbd-1d38d2d79ff6@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_18_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_18_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_18_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "a23f5e19-0515-4e40-bd7a-fa3938d9df7f", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "a23f5e19-0515-4e40-bd7a-fa3938d9df7f@6c48a", 14 | "displayName": "material_18_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "a23f5e19-0515-4e40-bd7a-fa3938d9df7f", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "a23f5e19-0515-4e40-bd7a-fa3938d9df7f@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_19_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_19_baseColor.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_19_baseColor.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "c5b60849-39be-4b7d-91a0-e539e5ef6b46", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "c5b60849-39be-4b7d-91a0-e539e5ef6b46@6c48a", 14 | "displayName": "material_19_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "c5b60849-39be-4b7d-91a0-e539e5ef6b46", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "c5b60849-39be-4b7d-91a0-e539e5ef6b46@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_19_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_19_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_19_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "cc5659ca-3eb4-40d7-aff0-02a1fbabc152", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "cc5659ca-3eb4-40d7-aff0-02a1fbabc152@6c48a", 14 | "displayName": "material_19_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "cc5659ca-3eb4-40d7-aff0-02a1fbabc152", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "cc5659ca-3eb4-40d7-aff0-02a1fbabc152@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_1_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_1_baseColor.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_1_baseColor.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "4404aab7-40da-4e4c-a25d-b697f7bd3fae", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "4404aab7-40da-4e4c-a25d-b697f7bd3fae@6c48a", 14 | "displayName": "material_1_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "4404aab7-40da-4e4c-a25d-b697f7bd3fae", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": true, 40 | "redirect": "4404aab7-40da-4e4c-a25d-b697f7bd3fae@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_1_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_1_metallicRoughness.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_1_metallicRoughness.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "182cbdf4-2264-4538-bf9e-580d76270c6d", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "182cbdf4-2264-4538-bf9e-580d76270c6d@6c48a", 14 | "displayName": "material_1_metallicRoughness", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "182cbdf4-2264-4538-bf9e-580d76270c6d", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "182cbdf4-2264-4538-bf9e-580d76270c6d@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_1_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_1_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_1_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "2c0b89a4-7982-4eb9-9c26-2df0d181a7f9", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "2c0b89a4-7982-4eb9-9c26-2df0d181a7f9@6c48a", 14 | "displayName": "material_1_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "2c0b89a4-7982-4eb9-9c26-2df0d181a7f9", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "2c0b89a4-7982-4eb9-9c26-2df0d181a7f9@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_20_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_20_baseColor.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_20_baseColor.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "19b7b9a6-1f9a-4582-a5f2-0350982bad03", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "19b7b9a6-1f9a-4582-a5f2-0350982bad03@6c48a", 14 | "displayName": "material_20_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "19b7b9a6-1f9a-4582-a5f2-0350982bad03", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": true, 40 | "redirect": "19b7b9a6-1f9a-4582-a5f2-0350982bad03@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_20_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_20_metallicRoughness.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_20_metallicRoughness.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "74e5ca11-6e78-466c-97d1-13bf07caf71c", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "74e5ca11-6e78-466c-97d1-13bf07caf71c@6c48a", 14 | "displayName": "material_20_metallicRoughness", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "74e5ca11-6e78-466c-97d1-13bf07caf71c", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "74e5ca11-6e78-466c-97d1-13bf07caf71c@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_20_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_20_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_20_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "de48f767-c361-4d46-96a5-959de6f3d36a", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "de48f767-c361-4d46-96a5-959de6f3d36a@6c48a", 14 | "displayName": "material_20_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "de48f767-c361-4d46-96a5-959de6f3d36a", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "de48f767-c361-4d46-96a5-959de6f3d36a@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_21_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_21_baseColor.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_21_baseColor.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "d829a6b5-a219-41be-bf6c-752500344f4a", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "d829a6b5-a219-41be-bf6c-752500344f4a@6c48a", 14 | "displayName": "material_21_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "d829a6b5-a219-41be-bf6c-752500344f4a", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "d829a6b5-a219-41be-bf6c-752500344f4a@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_21_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_21_metallicRoughness.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_21_metallicRoughness.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "8cb7d382-4f4c-40fa-b8a3-875b8a76482b", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "8cb7d382-4f4c-40fa-b8a3-875b8a76482b@6c48a", 14 | "displayName": "material_21_metallicRoughness", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "8cb7d382-4f4c-40fa-b8a3-875b8a76482b", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "8cb7d382-4f4c-40fa-b8a3-875b8a76482b@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_21_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_21_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_21_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "be12d672-9778-4a1b-8e93-d880c0433ac3", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "be12d672-9778-4a1b-8e93-d880c0433ac3@6c48a", 14 | "displayName": "material_21_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "be12d672-9778-4a1b-8e93-d880c0433ac3", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "be12d672-9778-4a1b-8e93-d880c0433ac3@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_22_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_22_baseColor.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_22_baseColor.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "992b5a4c-eb3d-4973-82a3-a29f5b730b4f", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "992b5a4c-eb3d-4973-82a3-a29f5b730b4f@6c48a", 14 | "displayName": "material_22_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "992b5a4c-eb3d-4973-82a3-a29f5b730b4f", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "992b5a4c-eb3d-4973-82a3-a29f5b730b4f@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_22_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_22_metallicRoughness.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_22_metallicRoughness.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "619415a6-8c5f-43f8-aaa6-a091166032da", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "619415a6-8c5f-43f8-aaa6-a091166032da@6c48a", 14 | "displayName": "material_22_metallicRoughness", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "619415a6-8c5f-43f8-aaa6-a091166032da", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "619415a6-8c5f-43f8-aaa6-a091166032da@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_22_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_22_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_22_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "dd933d73-746f-423a-85cf-80c79c4543d9", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "dd933d73-746f-423a-85cf-80c79c4543d9@6c48a", 14 | "displayName": "material_22_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "dd933d73-746f-423a-85cf-80c79c4543d9", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "dd933d73-746f-423a-85cf-80c79c4543d9@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_23_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_23_baseColor.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_23_baseColor.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "ef611a3e-5e4e-4cee-9efc-b902cc5b39d6", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "ef611a3e-5e4e-4cee-9efc-b902cc5b39d6@6c48a", 14 | "displayName": "material_23_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "ef611a3e-5e4e-4cee-9efc-b902cc5b39d6", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "ef611a3e-5e4e-4cee-9efc-b902cc5b39d6@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_23_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_23_metallicRoughness.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_23_metallicRoughness.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "367cf306-ebcb-46c5-8ab2-a7aeec5d3184", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "367cf306-ebcb-46c5-8ab2-a7aeec5d3184@6c48a", 14 | "displayName": "material_23_metallicRoughness", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "367cf306-ebcb-46c5-8ab2-a7aeec5d3184", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "367cf306-ebcb-46c5-8ab2-a7aeec5d3184@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_23_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_23_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_23_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "f329143d-f53c-4c30-b346-a40392bc2c4d", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "f329143d-f53c-4c30-b346-a40392bc2c4d@6c48a", 14 | "displayName": "material_23_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "f329143d-f53c-4c30-b346-a40392bc2c4d", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "f329143d-f53c-4c30-b346-a40392bc2c4d@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_24_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_24_baseColor.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_24_baseColor.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "7ccb622f-39f2-423a-9bf9-a6d81ad87da4", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "7ccb622f-39f2-423a-9bf9-a6d81ad87da4@6c48a", 14 | "displayName": "material_24_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "7ccb622f-39f2-423a-9bf9-a6d81ad87da4", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "7ccb622f-39f2-423a-9bf9-a6d81ad87da4@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_24_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_24_metallicRoughness.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_24_metallicRoughness.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "e3e19e67-a5c6-4462-a1d2-709047f38d85", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "e3e19e67-a5c6-4462-a1d2-709047f38d85@6c48a", 14 | "displayName": "material_24_metallicRoughness", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "e3e19e67-a5c6-4462-a1d2-709047f38d85", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "e3e19e67-a5c6-4462-a1d2-709047f38d85@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_24_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_24_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_24_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "351312d0-cec0-4703-8ebb-8f5029967cee", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "351312d0-cec0-4703-8ebb-8f5029967cee@6c48a", 14 | "displayName": "material_24_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "351312d0-cec0-4703-8ebb-8f5029967cee", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "351312d0-cec0-4703-8ebb-8f5029967cee@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_2_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_2_baseColor.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_2_baseColor.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "78d6ac9b-d4d9-4dbb-9d13-90f7003dca1c", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "78d6ac9b-d4d9-4dbb-9d13-90f7003dca1c@6c48a", 14 | "displayName": "material_2_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "78d6ac9b-d4d9-4dbb-9d13-90f7003dca1c", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "78d6ac9b-d4d9-4dbb-9d13-90f7003dca1c@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_2_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_2_metallicRoughness.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_2_metallicRoughness.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "638d633e-1df8-4df0-9418-d3a0be207373", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "638d633e-1df8-4df0-9418-d3a0be207373@6c48a", 14 | "displayName": "material_2_metallicRoughness", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "638d633e-1df8-4df0-9418-d3a0be207373", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "638d633e-1df8-4df0-9418-d3a0be207373@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_2_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_2_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_2_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "465d8554-0db5-4d8c-8e12-33a7a7ecaf41", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "465d8554-0db5-4d8c-8e12-33a7a7ecaf41@6c48a", 14 | "displayName": "material_2_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "465d8554-0db5-4d8c-8e12-33a7a7ecaf41", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "465d8554-0db5-4d8c-8e12-33a7a7ecaf41@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_3_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_3_baseColor.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_3_baseColor.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "7f8ceb35-241e-41c4-83b7-4cb897f450a8", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "7f8ceb35-241e-41c4-83b7-4cb897f450a8@6c48a", 14 | "displayName": "material_3_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "7f8ceb35-241e-41c4-83b7-4cb897f450a8", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "7f8ceb35-241e-41c4-83b7-4cb897f450a8@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_3_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_3_metallicRoughness.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_3_metallicRoughness.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "069b66cb-3b1b-4055-a5b6-e0c2e69ec522", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "069b66cb-3b1b-4055-a5b6-e0c2e69ec522@6c48a", 14 | "displayName": "material_3_metallicRoughness", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "069b66cb-3b1b-4055-a5b6-e0c2e69ec522", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "069b66cb-3b1b-4055-a5b6-e0c2e69ec522@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_3_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_3_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_3_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "a00077b7-8819-4f4e-b21d-336e34ddc070", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "a00077b7-8819-4f4e-b21d-336e34ddc070@6c48a", 14 | "displayName": "material_3_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "a00077b7-8819-4f4e-b21d-336e34ddc070", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "a00077b7-8819-4f4e-b21d-336e34ddc070@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_4_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_4_baseColor.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_4_baseColor.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "bc1b5040-cb21-4ec8-b06a-c89fca29d06b", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "bc1b5040-cb21-4ec8-b06a-c89fca29d06b@6c48a", 14 | "displayName": "material_4_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "bc1b5040-cb21-4ec8-b06a-c89fca29d06b", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "bc1b5040-cb21-4ec8-b06a-c89fca29d06b@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_4_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_4_metallicRoughness.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_4_metallicRoughness.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "a3dee467-1279-4134-9d2b-b304fe062fd6", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "a3dee467-1279-4134-9d2b-b304fe062fd6@6c48a", 14 | "displayName": "material_4_metallicRoughness", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "a3dee467-1279-4134-9d2b-b304fe062fd6", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "a3dee467-1279-4134-9d2b-b304fe062fd6@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_4_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_4_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_4_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "7789e2d9-9f84-4cf6-8e66-90c68651dbda", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "7789e2d9-9f84-4cf6-8e66-90c68651dbda@6c48a", 14 | "displayName": "material_4_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "7789e2d9-9f84-4cf6-8e66-90c68651dbda", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "7789e2d9-9f84-4cf6-8e66-90c68651dbda@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_5_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_5_baseColor.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_5_baseColor.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "2a1aef30-6e98-429a-94d7-24057d492e52", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "2a1aef30-6e98-429a-94d7-24057d492e52@6c48a", 14 | "displayName": "material_5_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "2a1aef30-6e98-429a-94d7-24057d492e52", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "2a1aef30-6e98-429a-94d7-24057d492e52@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_5_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_5_metallicRoughness.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_5_metallicRoughness.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "9c2e8429-f342-453e-8d42-e0177bae025a", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "9c2e8429-f342-453e-8d42-e0177bae025a@6c48a", 14 | "displayName": "material_5_metallicRoughness", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "9c2e8429-f342-453e-8d42-e0177bae025a", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "9c2e8429-f342-453e-8d42-e0177bae025a@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_5_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_5_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_5_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "573a43fd-eb88-4583-bd76-c472e7073787", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "573a43fd-eb88-4583-bd76-c472e7073787@6c48a", 14 | "displayName": "material_5_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "573a43fd-eb88-4583-bd76-c472e7073787", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "573a43fd-eb88-4583-bd76-c472e7073787@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_6_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_6_baseColor.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_6_baseColor.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "e83a6ca2-0b4f-4765-9f09-5fb3491bc134", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "e83a6ca2-0b4f-4765-9f09-5fb3491bc134@6c48a", 14 | "displayName": "material_6_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "e83a6ca2-0b4f-4765-9f09-5fb3491bc134", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "e83a6ca2-0b4f-4765-9f09-5fb3491bc134@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_6_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_6_metallicRoughness.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_6_metallicRoughness.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "c94f4619-0719-4c53-a2b0-23746af87a0a", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "c94f4619-0719-4c53-a2b0-23746af87a0a@6c48a", 14 | "displayName": "material_6_metallicRoughness", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "c94f4619-0719-4c53-a2b0-23746af87a0a", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "c94f4619-0719-4c53-a2b0-23746af87a0a@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_6_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_6_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_6_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "bb1af28f-9088-4aa0-b7e5-25eb0ac4c902", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "bb1af28f-9088-4aa0-b7e5-25eb0ac4c902@6c48a", 14 | "displayName": "material_6_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "bb1af28f-9088-4aa0-b7e5-25eb0ac4c902", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "bb1af28f-9088-4aa0-b7e5-25eb0ac4c902@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_7_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_7_baseColor.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_7_baseColor.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "ae580651-130c-4633-992a-e3d206e5bf04", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "ae580651-130c-4633-992a-e3d206e5bf04@6c48a", 14 | "displayName": "material_7_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "ae580651-130c-4633-992a-e3d206e5bf04", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "ae580651-130c-4633-992a-e3d206e5bf04@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_7_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_7_metallicRoughness.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_7_metallicRoughness.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "d3ef8472-2a78-4ef6-9704-bfd254a61210", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "d3ef8472-2a78-4ef6-9704-bfd254a61210@6c48a", 14 | "displayName": "material_7_metallicRoughness", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "d3ef8472-2a78-4ef6-9704-bfd254a61210", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "d3ef8472-2a78-4ef6-9704-bfd254a61210@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_7_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_7_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_7_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "3830ad45-1f85-4111-a856-116c0c544a64", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "3830ad45-1f85-4111-a856-116c0c544a64@6c48a", 14 | "displayName": "material_7_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "3830ad45-1f85-4111-a856-116c0c544a64", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "3830ad45-1f85-4111-a856-116c0c544a64@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_8_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_8_baseColor.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_8_baseColor.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "7328dd70-28b1-4172-81f3-0d6e3221d5b1", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "7328dd70-28b1-4172-81f3-0d6e3221d5b1@6c48a", 14 | "displayName": "material_8_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "7328dd70-28b1-4172-81f3-0d6e3221d5b1", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "7328dd70-28b1-4172-81f3-0d6e3221d5b1@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_8_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_8_metallicRoughness.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_8_metallicRoughness.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "acdec4f0-de44-4c22-94ea-aadec7bf6355", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "acdec4f0-de44-4c22-94ea-aadec7bf6355@6c48a", 14 | "displayName": "material_8_metallicRoughness", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "acdec4f0-de44-4c22-94ea-aadec7bf6355", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "acdec4f0-de44-4c22-94ea-aadec7bf6355@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_8_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_8_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_8_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "e693e91b-d9b5-46d3-9d09-8de2117ab5a3", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "e693e91b-d9b5-46d3-9d09-8de2117ab5a3@6c48a", 14 | "displayName": "material_8_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "e693e91b-d9b5-46d3-9d09-8de2117ab5a3", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "e693e91b-d9b5-46d3-9d09-8de2117ab5a3@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_9_baseColor.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_9_baseColor.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_9_baseColor.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "f805806f-16b7-4119-b68d-9a9832640703", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "f805806f-16b7-4119-b68d-9a9832640703@6c48a", 14 | "displayName": "material_9_baseColor", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "f805806f-16b7-4119-b68d-9a9832640703", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "f805806f-16b7-4119-b68d-9a9832640703@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_9_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_9_metallicRoughness.png -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_9_metallicRoughness.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "07ac55e7-6157-46b5-84fe-e9bf60b48768", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "07ac55e7-6157-46b5-84fe-e9bf60b48768@6c48a", 14 | "displayName": "material_9_metallicRoughness", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "07ac55e7-6157-46b5-84fe-e9bf60b48768", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "07ac55e7-6157-46b5-84fe-e9bf60b48768@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_9_normal.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/models/sponza/textures/material_9_normal.jpeg -------------------------------------------------------------------------------- /assets/shared-res/models/sponza/textures/material_9_normal.jpeg.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "0e7598e7-dcce-46e7-ab13-268f5b03e1bc", 6 | "files": [ 7 | ".jpeg", 8 | ".json" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "0e7598e7-dcce-46e7-ab13-268f5b03e1bc@6c48a", 14 | "displayName": "material_9_normal", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "0e7598e7-dcce-46e7-ab13-268f5b03e1bc", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "type": "texture", 38 | "fixAlphaTransparencyArtifacts": true, 39 | "hasAlpha": false, 40 | "redirect": "0e7598e7-dcce-46e7-ab13-268f5b03e1bc@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /assets/shared-res/textures.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "d086446a-b3b5-4a6c-9a23-e8f81f2dbd9b", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/shared-res/textures/lut.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.2.0", 3 | "importer": "directory", 4 | "imported": true, 5 | "uuid": "2dceb12a-ca8d-4d56-b2a0-5cf0aa4f61fc", 6 | "files": [], 7 | "subMetas": {}, 8 | "userData": {} 9 | } 10 | -------------------------------------------------------------------------------- /assets/shared-res/textures/lut/lut_test_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocos/cocos-example-render-pipeline/0b02cc54b036b731fe32d1a8c5fdb56befba6fce/assets/shared-res/textures/lut/lut_test_custom.png -------------------------------------------------------------------------------- /assets/shared-res/textures/lut/lut_test_custom.png.meta: -------------------------------------------------------------------------------- 1 | { 2 | "ver": "1.0.26", 3 | "importer": "image", 4 | "imported": true, 5 | "uuid": "d2d99fdf-cee6-4a4f-8937-c74164b05f23", 6 | "files": [ 7 | ".json", 8 | ".png" 9 | ], 10 | "subMetas": { 11 | "6c48a": { 12 | "importer": "texture", 13 | "uuid": "d2d99fdf-cee6-4a4f-8937-c74164b05f23@6c48a", 14 | "displayName": "lut_test_custom", 15 | "id": "6c48a", 16 | "name": "texture", 17 | "userData": { 18 | "wrapModeS": "repeat", 19 | "wrapModeT": "repeat", 20 | "minfilter": "linear", 21 | "magfilter": "linear", 22 | "mipfilter": "none", 23 | "anisotropy": 0, 24 | "isUuid": true, 25 | "imageUuidOrDatabaseUri": "d2d99fdf-cee6-4a4f-8937-c74164b05f23", 26 | "visible": false 27 | }, 28 | "ver": "1.0.22", 29 | "imported": true, 30 | "files": [ 31 | ".json" 32 | ], 33 | "subMetas": {} 34 | } 35 | }, 36 | "userData": { 37 | "fixAlphaTransparencyArtifacts": true, 38 | "hasAlpha": false, 39 | "type": "texture", 40 | "redirect": "d2d99fdf-cee6-4a4f-8937-c74164b05f23@6c48a" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "NewProject-001", 3 | "type": "3d", 4 | "uuid": "98b53789-4840-4e63-a00c-40b92a318129", 5 | "creator": { 6 | "version": "3.8.0" 7 | }, 8 | "version": "3.8.0" 9 | } 10 | -------------------------------------------------------------------------------- /settings/v2/packages/builder.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.3.5" 3 | } 4 | -------------------------------------------------------------------------------- /settings/v2/packages/cocos-service.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "3.0.7", 3 | "game": { 4 | "name": "未知游戏", 5 | "app_id": "UNKNOW", 6 | "c_id": "0" 7 | }, 8 | "appConfigMaps": [ 9 | { 10 | "app_id": "UNKNOW", 11 | "config_id": "7f3ffe" 12 | } 13 | ], 14 | "configs": [ 15 | { 16 | "app_id": "UNKNOW", 17 | "config_id": "7f3ffe", 18 | "config_name": "Default", 19 | "config_remarks": "", 20 | "services": [] 21 | } 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /settings/v2/packages/device.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.1" 3 | } 4 | -------------------------------------------------------------------------------- /settings/v2/packages/engine.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.7", 3 | "macroConfig": { 4 | "CUSTOM_PIPELINE_NAME": "Custom", 5 | "ENABLE_FLOAT_OUTPUT": false 6 | }, 7 | "modules": { 8 | "cache": { 9 | "base": { 10 | "_value": true 11 | }, 12 | "graphcis": { 13 | "_value": true 14 | }, 15 | "gfx-webgl": { 16 | "_value": true 17 | }, 18 | "gfx-webgl2": { 19 | "_value": true 20 | }, 21 | "animation": { 22 | "_value": true 23 | }, 24 | "skeletal-animation": { 25 | "_value": true 26 | }, 27 | "3d": { 28 | "_value": true 29 | }, 30 | "2d": { 31 | "_value": true 32 | }, 33 | "xr": { 34 | "_value": false 35 | }, 36 | "ui": { 37 | "_value": true 38 | }, 39 | "particle": { 40 | "_value": true 41 | }, 42 | "physics": { 43 | "_value": true, 44 | "_option": "physics-ammo" 45 | }, 46 | "physics-ammo": { 47 | "_value": false 48 | }, 49 | "physics-cannon": { 50 | "_value": false 51 | }, 52 | "physics-physx": { 53 | "_value": false 54 | }, 55 | "physics-builtin": { 56 | "_value": false 57 | }, 58 | "physics-2d": { 59 | "_value": true, 60 | "_option": "physics-2d-box2d" 61 | }, 62 | "physics-2d-box2d": { 63 | "_value": false 64 | }, 65 | "physics-2d-builtin": { 66 | "_value": false 67 | }, 68 | "intersection-2d": { 69 | "_value": true 70 | }, 71 | "primitive": { 72 | "_value": true 73 | }, 74 | "profiler": { 75 | "_value": true 76 | }, 77 | "occlusion-query": { 78 | "_value": false 79 | }, 80 | "geometry-renderer": { 81 | "_value": false 82 | }, 83 | "debug-renderer": { 84 | "_value": false 85 | }, 86 | "particle-2d": { 87 | "_value": true 88 | }, 89 | "audio": { 90 | "_value": true 91 | }, 92 | "video": { 93 | "_value": true 94 | }, 95 | "webview": { 96 | "_value": true 97 | }, 98 | "tween": { 99 | "_value": true 100 | }, 101 | "websocket": { 102 | "_value": true 103 | }, 104 | "websocket-server": { 105 | "_value": false 106 | }, 107 | "terrain": { 108 | "_value": true 109 | }, 110 | "light-probe": { 111 | "_value": true 112 | }, 113 | "tiled-map": { 114 | "_value": true 115 | }, 116 | "spine": { 117 | "_value": true 118 | }, 119 | "dragon-bones": { 120 | "_value": true 121 | }, 122 | "marionette": { 123 | "_value": true 124 | }, 125 | "custom-pipeline": { 126 | "_value": true 127 | } 128 | }, 129 | "flags": {}, 130 | "includeModules": [ 131 | "2d", 132 | "3d", 133 | "animation", 134 | "audio", 135 | "base", 136 | "custom-pipeline", 137 | "dragon-bones", 138 | "gfx-webgl", 139 | "gfx-webgl2", 140 | "intersection-2d", 141 | "light-probe", 142 | "marionette", 143 | "particle", 144 | "particle-2d", 145 | "physics-2d-box2d", 146 | "physics-ammo", 147 | "primitive", 148 | "profiler", 149 | "skeletal-animation", 150 | "spine", 151 | "terrain", 152 | "tiled-map", 153 | "tween", 154 | "ui", 155 | "video", 156 | "websocket", 157 | "webview" 158 | ], 159 | "noDeprecatedFeatures": { 160 | "value": false, 161 | "version": "" 162 | } 163 | } 164 | } 165 | -------------------------------------------------------------------------------- /settings/v2/packages/program.json: -------------------------------------------------------------------------------- 1 | { 2 | "__version__": "1.0.3" 3 | } 4 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | /* Base configuration. Do not edit this field. */ 3 | "extends": "./temp/tsconfig.cocos.json", 4 | 5 | /* Add your custom configuration here. */ 6 | "compilerOptions": { 7 | "strict": false 8 | } 9 | } 10 | --------------------------------------------------------------------------------