摘要:
阅读全文
摘要:
有如下几种方式: 1.CPU端逐像素根据alpha通道进行叠加 1 public void MergeTexture(Texture2D tt1, Texture2D tt2, int offsetX, int offsetY) 2 { 3 Texture2D newTex = new Textur 阅读全文
摘要:
可参考:https://blog.csdn.net/newchenxf/article/details/125811641 shader代码如下: 1 Shader "TA/Unlit/UI/RoundConor" 2 { 3 Properties 4 { 5 [PerRendererData] _ 阅读全文
摘要:
工具代码如下: 1 using UnityEngine; 2 using UnityEngine.Serialization; 3 #if UNITY_EDITOR 4 using Modules.UI; 5 using UnityEditor; 6 #endif 7 8 public class 阅读全文
摘要:
代码如下: using System; using System.Collections; using System.Collections.Generic; using UnityEngine; public class CalcFPSTool : MonoBehaviour { private 阅读全文
摘要:
曲率图一般可用在预积分次表面散射渲染上,那么如何在Unity中烘焙曲率图? 工具思路如下: 1. 使用shader,把曲率渲染出来。注意,要把顶点位置沿UV重新排列,也就是把曲率图平铺开来,关键代码: float2 uv = input.texcoord;float3 positionWS = fl 阅读全文
摘要:
一些论坛: 1、https://cs.rin.ru/forum/viewtopic.php?t=100672这个帖子是用来查询和请求解压虚幻文件的AES KEY。2、https://www.gildor.org/smf/index.php这个是Umoder下兴者自己建立的论坛,主要是用来讨论 (寻找 阅读全文
摘要:
关于伽马空间与线性空间,可参考: https://zhuanlan.zhihu.com/p/432224776 https://blog.csdn.net/sinat_34014668/article/details/128604170 https://blog.csdn.net/zhjzhjxzh 阅读全文