1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Universal RP x Visual Effect GraphでDiffuseを実現する

Last updated at Posted at 2021-08-16

スクリーンショット 2021-08-16 10.png

2021年現在、ARKit x Visual Effect Graphでエフェクトを作る際に、以下のようにiOSデバイスがHDRP(High Definition Rendering Pipeline)をサポートしていないと怒られてしまい、かっこいいエフェクトが作れない問題に直面しました。

Platform iOS with graphics API Metal is not supported with HDRP.

自分的には、Visual Effect Graph上でLit ShaderによってDiffuseを表現したかったので、Universal Rendering Pipeline上でどうにかLit か Diffuseを再現する必要がありました。そこで以下のブログを参考にShaderGraph上でDiffuseを再現しました。

手順

1. VFX Shader Graph作成

Project内で右クリック -> Create -> Shader -> VFX Shader Graph で作成

スクリーンショット 2021-08-16 11.03.53.png

2. Diffuse shaderを書く

参考にしたブログより少しシンプルにしていますが、以下のように

スクリーンショット 2021-08-16 11.02.37.png

fixed diff = saturate(dot(i.normal, i.lightDir));

を再現して、それをオブジェクトの色と光源の色に掛け合わせればOKです。ちなみに図のように光源色は掛け合わせなくても、問題ないです。

3. Visual Effect GraphでShaderを設定

オブジェクトの色、光源の色、光源の座標を設定できるようにします。

スクリーンショット 2021-08-16 10.48.05.png

Tips: VFX Property Binderで光源の座標を外部から設定をすると便利です。

スクリーンショット 2021-08-16 10.54.26.png

ということで、Universal RP x Visual Effect GraphでDiffuseを実現できましたー。これでARKitに入れられます。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?