随笔分类 -  unity_shader

摘要:https://gameinstitute.qq.com/community/detail/133602 阅读全文
posted @ 2021-09-06 16:55 00000000O 阅读(28) 评论(0) 推荐(0) 编辑
摘要:http://xdpixel.com/how-to-render-to-a-texture-array-in-unity/ 阅读全文
posted @ 2021-09-06 16:28 00000000O 阅读(21) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_41885426/article/details/109817466 阅读全文
posted @ 2021-08-27 14:53 00000000O 阅读(75) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/puppet_master/article/details/80808486 阅读全文
posted @ 2021-08-19 16:07 00000000O 阅读(171) 评论(0) 推荐(0) 编辑
摘要:https://forum.unity.com/threads/how-to-sample-a-texture-in-vertex-shader.513816/ GreatWall said: ↑ So "mip mapping" and "level of detail of a texture 阅读全文
posted @ 2021-06-01 16:32 00000000O 阅读(532) 评论(0) 推荐(1) 编辑
摘要:animation instance piti6/UnityGpuInstancedAnimation https://github.com/piti6/UnityGpuInstancedAnimation unity animation-instancing https://github.com/ 阅读全文
posted @ 2021-05-27 16:03 00000000O 阅读(294) 评论(0) 推荐(0) 编辑
摘要:Thanks for posting these tips. I was devastated when my project dropped to 3 FPS because material properties don't work out of the box. I was able to 阅读全文
posted @ 2021-05-27 12:30 00000000O 阅读(141) 评论(0) 推荐(0) 编辑
摘要:补充: 可以直接把包提出来放一个单独文件夹 然后在package manager中load from disk,跟下面手动改效果没区别 如果发现有各种引用丢失,在工程内对包reimport下 1 需要的包(注意去掉版本号) 2 直接放到下面文件夹中 3 packages-lock.json修改前后记 阅读全文
posted @ 2021-03-26 17:53 00000000O 阅读(192) 评论(0) 推荐(0) 编辑
摘要:https://mp.weixin.qq.com/s/6EVpmgC53HqklIVkIpEssg 阅读全文
posted @ 2021-03-05 18:05 00000000O 阅读(122) 评论(0) 推荐(0) 编辑
摘要:3D Game Shaders For Beginners Screen Space Reflection (SSR)https://lettier.github.io/3d-game-shaders-for-beginners/screen-space-reflection.html#reflec 阅读全文
posted @ 2021-02-25 17:02 00000000O 阅读(121) 评论(0) 推荐(0) 编辑
摘要:https://zhuanlan.zhihu.com/p/165653176 阅读全文
posted @ 2021-02-25 16:48 00000000O 阅读(91) 评论(0) 推荐(0) 编辑
摘要:简单说就是在meta pass计算 albedo,emission,specular 3个值 光照烘焙,gi计算间接光照时都会用到这些值 Shader "MyShader/SampleLightmap" { SubShader { Pass { CGPROGRAM #pragma vertex ve 阅读全文
posted @ 2021-01-22 20:23 00000000O 阅读(235) 评论(0) 推荐(0) 编辑
摘要:lightmap采样 https://blog.csdn.net/wodownload2/article/details/94431040 阅读全文
posted @ 2021-01-22 20:15 00000000O 阅读(96) 评论(0) 推荐(0) 编辑
摘要:https://my.oschina.net/u/4316056/blog/4002529 using System.Collections; using System.Collections.Generic; using System.IO; using UnityEngine; public c 阅读全文
posted @ 2021-01-12 14:53 00000000O 阅读(381) 评论(0) 推荐(0) 编辑
摘要:本文中大部分例子将按照Opengles的实现来解释 1.RenderTexture是什么 在U3D中有一种特殊的Texture类型,叫做RenderTexture,它本质上一句话是将一个FrameBufferObjecrt连接到一个server-side的Texture对象。 什么是server-s 阅读全文
posted @ 2021-01-12 14:46 00000000O 阅读(1244) 评论(1) 推荐(0) 编辑
摘要:Constant Buffer的高效使用,让你码出质量 https://zhuanlan.zhihu.com/p/35830868 Unity ConstantBuffer的一些解析和注意 https://zhuanlan.zhihu.com/p/137455866 https://catlikec 阅读全文
posted @ 2020-12-18 16:01 00000000O 阅读(159) 评论(0) 推荐(0) 编辑
摘要:https://blog.uwa4d.com/archives/USparkle_Shaderlog.html 阅读全文
posted @ 2020-12-15 13:56 00000000O 阅读(888) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/zakerhero/article/details/107714801 阅读全文
posted @ 2020-12-09 16:33 00000000O 阅读(223) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/f420b55edd0b?utm_campaign=hugo 阅读全文
posted @ 2020-12-08 11:45 00000000O 阅读(75) 评论(0) 推荐(0) 编辑
摘要:之前一直被这几个和深度缓存(z-buffer)相关的概念搞得神魂颠倒。今天在翻阅《Real-Time Rendering》时碰巧碰巧看到了这部分的讲解。硬着头皮看了看,姑且算是讲几个概念分清楚了。以我的记性估计下周就全忘了,所以打算顺手记下来。 这四种技术本质上都是解决传统渲染管线中的同一个问题—— 阅读全文
posted @ 2020-12-08 11:10 00000000O 阅读(846) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示