RealityShaderExtension is a package that provides a set of shader graph nodes for RealityKit in visionOS, iOS and macOS.
RealityShaderExtension reproduce Shader Graph nodes from Unity, and Blueprint nodes from Unreal. It will be very useful if you convert shader effects from Unity or Unreal.
- 28 Shader Graph nodes from Unity
- 28 Blueprint nodes from Unreal
- 20+ color blend mode
- 8 colorspace conversion nodes(RGB -> YUV -> HSV)
- 9 pixelize art nodes
- 9 edge-detection nodes
Unreal Engine Material Functions Reference
Unity Shader Graph Node Library
Unity X-PostProcessing Library-PixelizeArt
Unity X-PostProcessing Library-EdgeDetection
I build the node graph in project using Instancing, There are 3 ways to use the node in RealityShaderExtension.
Suitable for non-nested Node Graphs. if you copy&paste the nested one, it will lost the nested Node Graphs.
Of course, you can copy&paste the nested Node Graphs again, and re-connect the nested Node Graph lines for input and output.
Suitable for both nested and non-nested Node Graphs.
Instancing behaves similarly to a singleton, it can save CPU cost and memory cost, because it only load one instance in memory and reuse it. But you need to put the original source Node Graphs in your RealityComposerPro project to reference.
If you modify the original Node Graphs, all of the Instancing will be changed imdirectly.
You have to put the original Node Graphs in your RealityComposerPro project to reference. You need to keep the relative path fixed, if you move the path of original Node Graphs, the Instancing will not work any more.
Suitable for both nested and non-nested Node Graphs.
You can disable Instancing to modify the original Node Graphs. You can also disable Instancing in all the nested Node Graphs.
If you modify the original Node Graphs, it will not change the disabled Instancing. because they are different nodes.
You don't need to put the original Node Graphs into your RealityComposerPro project to reference, because all Instancing are disabled, they are actually different full copies of the original Node Graph.