五月天青色头像情侣网名,国产亚洲av片在线观看18女人,黑人巨茎大战俄罗斯美女,扒下她的小内裤打屁股

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

UE4/5 風(fēng)格化材質(zhì)---描邊部分HLSL代碼分享

2023-03-01 20:38 作者:蟲棍俠  | 我要投稿

視頻指路:[UE4/UE5]水墨(彩墨)風(fēng)格化材質(zhì)制作流程分享 (bilibili.com)

此文章為該視頻內(nèi)使用的部分代碼


//-----邊緣檢測算法-----

//首行填充函數(shù)

return 0;}

//--------//

#ifndef _LAPLACETRANSFROM_

#define _LAPLACETRANSFROM_


float GetPixelDepth(FMaterialPixelParameters _Parameters,float2 Offset,float DilationRate){


? ? float2 uv=GetDefaultSceneTextureUV(_Parameters,14);

? ? Offset*=ViewportUVToBufferUV(View.ViewSizeAndInvSize.zw);

? ? float2 newUV=uv+Offset*DilationRate;

? ? return SceneTextureLookup(newUV,1,false);

}


float LaplaceTransform(FMaterialPixelParameters _Parameters,float Thickness){

? ? float3x3 LaplaceMat={0,1,0,

? ? ? ? ? ? ? ? ? ? ? ? ?1,-4,1,

? ? ? ? ? ? ? ? ? ? ? ? ?0,1,0};

? ? float OutDepth=0.0;

? ? for(int i=0;i<=2;i++){

? ? ? ? for(int j=0;j<=2;j++){

? ? ? ? ? ? float2 offset=float2(i-1.0,j-1.0);

? ? ? ? ? ? float temp=GetPixelDepth(_Parameters,offset,Thickness)*LaplaceMat[i][j];

? ? ? ? ? ? OutDepth+=temp;

? ? ? ? }

? ? }

? ? return abs(OutDepth);

}


#endif //#ifndef _LAPLACETRANSFROM_

//--------//

//末行填充函數(shù)

void FixFunc(){


//------描邊

float OutlineFunction(){

? ? float OutDepth=LaplaceTransform(Parameters,Thickness);

? ? float Outline=1-saturate(1/OutDepth);

? ? float CustomDepth=SceneTextureLookup(GetDefaultSceneTextureUV(Parameters,14),13,false).r;

? ? float SceneDepth=SceneTextureLookup(GetDefaultSceneTextureUV(Parameters,14),1,false).r;

? ? Outline=lerp(Outline,0,step(CustomDepth,SceneDepth));

? ? Outline*=step(Threshold,OutDepth);

? ? return Outline;

}


//-----擾亂描邊

float DisturbThicknessWithDepth(float Noise,float Thickness,float SceneDepth){

? ? Noise=(Noise-0.5)*Thickness;

? ? Thickness=(Thickness+Noise)*SceneDepth;

? ? return Thickness;

}



UE4/5 風(fēng)格化材質(zhì)---描邊部分HLSL代碼分享的評論 (共 條)

分享到微博請遵守國家法律
平阳县| 海南省| 密云县| 广元市| 嘉祥县| 商洛市| 赞皇县| 正镶白旗| 同德县| 游戏| 德州市| 南通市| 鹤庆县| 余江县| 建水县| 凤冈县| 色达县| 文登市| 汽车| 神木县| 盐亭县| 图们市| 陵水| 西平县| 明星| 佳木斯市| 永德县| 阿城市| 自治县| 姜堰市| 资源县| 沙田区| 南投市| 连云港市| 安溪县| 萨迦县| 南丰县| 侯马市| 昌宁县| 石泉县| 自贡市|