<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>UnrealEngine | YdlProg</title>
	<atom:link href="https://ydlprog.ddns.net/category/unrealengine/feed/" rel="self" type="application/rss+xml" />
	<link>https://ydlprog.ddns.net</link>
	<description>プログラマーが日々得た知識のメモ</description>
	<lastBuildDate>Sat, 08 Apr 2023 07:40:16 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>汎用Material関数</title>
		<link>https://ydlprog.ddns.net/2023/04/08/%e6%b1%8e%e7%94%a8material%e9%96%a2%e6%95%b0/</link>
					<comments>https://ydlprog.ddns.net/2023/04/08/%e6%b1%8e%e7%94%a8material%e9%96%a2%e6%95%b0/#respond</comments>
		
		<dc:creator><![CDATA[ydlprog]]></dc:creator>
		<pubDate>Sat, 08 Apr 2023 04:55:50 +0000</pubDate>
				<category><![CDATA[Material]]></category>
		<category><![CDATA[UnrealEngine]]></category>
		<guid isPermaLink="false">https://ydlprog.ddns.net/?p=911</guid>

					<description><![CDATA[目次 Textureサイズの取得FPS固定のTime Textureサイズの取得 FPS固定のTime Pixel単位でスクロールなど、カクカクした動きが必要な場合、FPSで乗算し、整数に丸め、FPSで除算でTimeを丸 [&#8230;]]]></description>
										<content:encoded><![CDATA[

  <div id="toc" class="toc tnt-number tnt-number border-element"><input type="checkbox" class="toc-checkbox" id="toc-checkbox-2"><label class="toc-title" for="toc-checkbox-2">目次</label>
    <div class="toc-content">
    <ol class="toc-list open"><li><a href="#toc1" tabindex="0">Textureサイズの取得</a></li><li><a href="#toc2" tabindex="0">FPS固定のTime</a></li></ol>
    </div>
  </div>

<h2 class="wp-block-heading"><span id="toc1">Textureサイズの取得</span></h2>



<figure class="wp-block-image size-full"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/04/MF_TextureSize.png"><img fetchpriority="high" decoding="async" width="916" height="516" src="https://ydlprog.ddns.net/wp-content/uploads/2023/04/MF_TextureSize.png" alt="" class="wp-image-912" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/04/MF_TextureSize.png 916w, https://ydlprog.ddns.net/wp-content/uploads/2023/04/MF_TextureSize-300x169.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/04/MF_TextureSize-768x433.png 768w, https://ydlprog.ddns.net/wp-content/uploads/2023/04/MF_TextureSize-120x68.png 120w, https://ydlprog.ddns.net/wp-content/uploads/2023/04/MF_TextureSize-160x90.png 160w, https://ydlprog.ddns.net/wp-content/uploads/2023/04/MF_TextureSize-320x180.png 320w, https://ydlprog.ddns.net/wp-content/uploads/2023/04/MF_TextureSize-250x141.png 250w" sizes="(max-width: 916px) 100vw, 916px" /></a><figcaption class="wp-element-caption">MF_TextureSize</figcaption></figure>



<div class="hcb_wrap"><pre class="prism line-numbers lang-cpp" data-lang="C++"><code>float2 dim;
TextureObject.GetDimensions(dim.x, dim.y);
return dim;</code></pre></div>



<h2 class="wp-block-heading"><span id="toc2">FPS固定のTime</span></h2>



<p>Pixel単位でスクロールなど、カクカクした動きが必要な場合、<br>FPSで乗算し、整数に丸め、FPSで除算でTimeを丸めます</p>



<figure class="wp-block-image size-large"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/04/MF_FpsFixedTime_001.png"><img decoding="async" width="1024" height="419" src="https://ydlprog.ddns.net/wp-content/uploads/2023/04/MF_FpsFixedTime_001-1024x419.png" alt="" class="wp-image-892" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/04/MF_FpsFixedTime_001-1024x419.png 1024w, https://ydlprog.ddns.net/wp-content/uploads/2023/04/MF_FpsFixedTime_001-300x123.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/04/MF_FpsFixedTime_001-768x314.png 768w, https://ydlprog.ddns.net/wp-content/uploads/2023/04/MF_FpsFixedTime_001.png 1300w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><figcaption class="wp-element-caption">MF_FpsFixedTime</figcaption></figure>



<p>Pannerに適用</p>



<figure class="wp-block-image size-full"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/04/MF_FpsFixedTime_002.png"><img decoding="async" width="962" height="340" src="https://ydlprog.ddns.net/wp-content/uploads/2023/04/MF_FpsFixedTime_002.png" alt="" class="wp-image-895" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/04/MF_FpsFixedTime_002.png 962w, https://ydlprog.ddns.net/wp-content/uploads/2023/04/MF_FpsFixedTime_002-300x106.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/04/MF_FpsFixedTime_002-768x271.png 768w" sizes="(max-width: 962px) 100vw, 962px" /></a></figure>



<figure class="wp-block-video alignleft"><video height="312" style="aspect-ratio: 312 / 312;" width="312" controls loop src="https://ydlprog.ddns.net/wp-content/uploads/2023/04/MF_FpsFixedTime_002.mp4" playsinline></video></figure>
]]></content:encoded>
					
					<wfw:commentRss>https://ydlprog.ddns.net/2023/04/08/%e6%b1%8e%e7%94%a8material%e9%96%a2%e6%95%b0/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		<enclosure url="https://ydlprog.ddns.net/wp-content/uploads/2023/04/MF_FpsFixedTime_002.mp4" length="1102746" type="video/mp4" />

			</item>
		<item>
		<title>Oculus LipSyncをUE5.1で使う</title>
		<link>https://ydlprog.ddns.net/2023/03/31/oculus-lipsync%e3%82%92ue5-1%e3%81%a7%e4%bd%bf%e3%81%86/</link>
					<comments>https://ydlprog.ddns.net/2023/03/31/oculus-lipsync%e3%82%92ue5-1%e3%81%a7%e4%bd%bf%e3%81%86/#respond</comments>
		
		<dc:creator><![CDATA[ydlprog]]></dc:creator>
		<pubDate>Fri, 31 Mar 2023 06:41:38 +0000</pubDate>
				<category><![CDATA[UnrealEngine]]></category>
		<guid isPermaLink="false">https://ydlprog.ddns.net/?p=859</guid>

					<description><![CDATA[目次 プラグインのインストールLipSync解析データの作成CRI LipSyncとの比較 プラグインのインストール Oculus LipSyncは組み込み済みのPluginではないため、公式サイトから「Oculus L [&#8230;]]]></description>
										<content:encoded><![CDATA[

  <div id="toc" class="toc tnt-number tnt-number border-element"><input type="checkbox" class="toc-checkbox" id="toc-checkbox-4"><label class="toc-title" for="toc-checkbox-4">目次</label>
    <div class="toc-content">
    <ol class="toc-list open"><li><a href="#toc1" tabindex="0">プラグインのインストール</a></li><li><a href="#toc2" tabindex="0">LipSync解析データの作成</a></li><li><a href="#toc3" tabindex="0">CRI LipSyncとの比較</a></li></ol>
    </div>
  </div>

<h2 class="wp-block-heading"><span id="toc1">プラグインのインストール</span></h2>



<p>Oculus LipSyncは組み込み済みのPluginではないため、<br>公式サイトから「<a rel="noopener" target="_blank" href="https://developer.oculus.com/downloads/package/oculus-lipsync-unreal/">Oculus Lipsync Unreal Integration v29</a>」をダウンロードします<br>プラグインは「MyProject/Plugins」に解凍します</p>



<h2 class="wp-block-heading"><span id="toc2">LipSync解析データの作成</span></h2>



<p>まず、サウンドアセットの「Loading Behavior Override」を「Force Inline」に変更<br>サウンドアセットを右クリックし、「Generate LipSyncSequence」でLipSync解析データを作成<br><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-red-color">UE5以降では「Force Inline」にしないとUEがクラッシュします</mark><br><mark style="background-color:rgba(0, 0, 0, 0)" class="has-inline-color has-red-color">解析データを作成したら「Force Inline」を「Inherited」に戻します</mark><br></p>



<h2 class="wp-block-heading"><span id="toc3">CRI LipSyncとの比較</span></h2>



<p>有償ですが、初回60万円/6か月、10万円/月で延長可能と、この手のツールとしては安い<br>サポートしているのは口の幅、高さ、舌の位置を使う方式と<br>母音解析してAIUEOのモーフとなりますが、個人の感想ではOculusよりきれいに感じます<br>音声データを事前解析し、取り込む形なりますがデータサイズが小さいのも良い<br></p>
]]></content:encoded>
					
					<wfw:commentRss>https://ydlprog.ddns.net/2023/03/31/oculus-lipsync%e3%82%92ue5-1%e3%81%a7%e4%bd%bf%e3%81%86/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>WorldPositionについて(2/2)</title>
		<link>https://ydlprog.ddns.net/2023/03/25/worldposition%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a62-2/</link>
					<comments>https://ydlprog.ddns.net/2023/03/25/worldposition%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a62-2/#respond</comments>
		
		<dc:creator><![CDATA[ydlprog]]></dc:creator>
		<pubDate>Sat, 25 Mar 2023 10:30:57 +0000</pubDate>
				<category><![CDATA[Material]]></category>
		<category><![CDATA[UnrealEngine]]></category>
		<guid isPermaLink="false">https://ydlprog.ddns.net/?p=836</guid>

					<description><![CDATA[WorldPositionから各面のUVを求め、テクスチャをサンプルしますデバッグ用に各面をR, G, Bに塗り分ける機能を付けているためノードが少し多くなってます※仕組みの説明のためBase Color以外は設定してい [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>WorldPositionから各面のUVを求め、テクスチャをサンプルします<br>デバッグ用に各面をR, G, Bに塗り分ける機能を付けているためノードが少し多くなってます<br>※仕組みの説明のためBase Color以外は設定していません</p>



<figure class="wp-block-image size-large"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_012.png"><img loading="lazy" decoding="async" width="1024" height="863" src="https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_012-1024x863.png" alt="" class="wp-image-840" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_012-1024x863.png 1024w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_012-300x253.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_012-768x647.png 768w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_012-1536x1294.png 1536w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_012.png 1828w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>



<p>各面のテクスチャは法線の方向でブレンドします<br>また、ブレンドの補完はCheapContrastで調整できるようにします</p>



<figure class="wp-block-image size-large"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_013.png"><img loading="lazy" decoding="async" width="1024" height="678" src="https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_013-1024x678.png" alt="" class="wp-image-844" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_013-1024x678.png 1024w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_013-300x199.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_013-768x509.png 768w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_013.png 1380w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>



<p>「Blend Contrast」でテクスチャのブレンド具合を調整できます</p>



<figure class="wp-block-image size-large"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_014.png"><img loading="lazy" decoding="async" width="1024" height="642" src="https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_014-1024x642.png" alt="" class="wp-image-848" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_014-1024x642.png 1024w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_014-300x188.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_014-768x481.png 768w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_014.png 1200w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>
]]></content:encoded>
					
					<wfw:commentRss>https://ydlprog.ddns.net/2023/03/25/worldposition%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a62-2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>シグモイド関数</title>
		<link>https://ydlprog.ddns.net/2023/03/25/%e3%82%b7%e3%82%b0%e3%83%a2%e3%82%a4%e3%83%89%e9%96%a2%e6%95%b0/</link>
					<comments>https://ydlprog.ddns.net/2023/03/25/%e3%82%b7%e3%82%b0%e3%83%a2%e3%82%a4%e3%83%89%e9%96%a2%e6%95%b0/#respond</comments>
		
		<dc:creator><![CDATA[ydlprog]]></dc:creator>
		<pubDate>Fri, 24 Mar 2023 17:55:32 +0000</pubDate>
				<category><![CDATA[Material]]></category>
		<category><![CDATA[UnrealEngine]]></category>
		<guid isPermaLink="false">https://ydlprog.ddns.net/?p=814</guid>

					<description><![CDATA[パターン認識(1/2判定機)で使われる、シグモイド(Sigmoid)関数はSmoothStepに比べ滑らかな補完が行なえます 計算式: 1 / (1 + exp(-(Slope * x + Bias))) LinearG [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>パターン認識(1/2判定機)で使われる、シグモイド(Sigmoid)関数はSmoothStepに比べ滑らかな補完が行なえます<br><br>計算式: 1 / (1 + exp(-(Slope * x + Bias)))</p>



<figure class="wp-block-image size-large"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_Sigmoid_001.png"><img loading="lazy" decoding="async" width="1024" height="310" src="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_Sigmoid_001-1024x310.png" alt="" class="wp-image-820" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_Sigmoid_001-1024x310.png 1024w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_Sigmoid_001-300x91.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_Sigmoid_001-768x233.png 768w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_Sigmoid_001-1536x465.png 1536w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_Sigmoid_001.png 2020w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><figcaption class="wp-element-caption">MF_Sigmoid</figcaption></figure>



<p></p>



<figure class="wp-block-image size-large"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_Sigmoid_002.png"><img loading="lazy" decoding="async" width="1024" height="267" src="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_Sigmoid_002-1024x267.png" alt="" class="wp-image-822" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_Sigmoid_002-1024x267.png 1024w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_Sigmoid_002-300x78.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_Sigmoid_002-768x201.png 768w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_Sigmoid_002.png 1099w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>



<p>LinearGradientを各関数で処理した、線形補間の違い</p>



<figure class="wp-block-table"><table><thead><tr><th>種別</th><th>線形補間</th></tr></thead><tbody><tr><td>CheapContrast</td><td>リニア</td></tr><tr><td>SmoothStep</td><td>少し滑から</td></tr><tr><td>Sigmoid</td><td>かなり滑らか</td></tr></tbody></table></figure>
]]></content:encoded>
					
					<wfw:commentRss>https://ydlprog.ddns.net/2023/03/25/%e3%82%b7%e3%82%b0%e3%83%a2%e3%82%a4%e3%83%89%e9%96%a2%e6%95%b0/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>WorldPositionについて(1/2)</title>
		<link>https://ydlprog.ddns.net/2023/03/21/worldposition%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a61-2/</link>
					<comments>https://ydlprog.ddns.net/2023/03/21/worldposition%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a61-2/#respond</comments>
		
		<dc:creator><![CDATA[ydlprog]]></dc:creator>
		<pubDate>Tue, 21 Mar 2023 13:44:10 +0000</pubDate>
				<category><![CDATA[Material]]></category>
		<category><![CDATA[UnrealEngine]]></category>
		<guid isPermaLink="false">https://ydlprog.ddns.net/?p=791</guid>

					<description><![CDATA[立方体にUVマッピングする場合、TexCoordは左上が0, 0、右下が1, 1WorldPositionをUVに変換する場合。X面はGB、Y面はRB、Z面はRG、これをPixelNormalWSで切り替えていきます。ま [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>立方体にUVマッピングする場合、TexCoordは左上が0, 0、右下が1, 1<br>WorldPositionをUVに変換する場合。X面はGB、Y面はRB、Z面はRG、<br>これをPixelNormalWSで切り替えていきます。またY, Zの符号反転が必要になります</p>



<figure class="wp-block-image size-large"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_002.png"><img loading="lazy" decoding="async" width="1024" height="410" src="https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_002-1024x410.png" alt="" class="wp-image-855" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_002-1024x410.png 1024w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_002-300x120.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_002-768x308.png 768w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_002-1536x615.png 1536w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_002.png 2004w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>



<p>各面ごとのUVを求め、法線方向でLerp。ボックスはこれでも上手くいきます</p>



<figure class="wp-block-image size-full"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_003.png"><img loading="lazy" decoding="async" width="694" height="308" src="https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_003.png" alt="" class="wp-image-803" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_003.png 694w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_003-300x133.png 300w" sizes="(max-width: 694px) 100vw, 694px" /></a></figure>



<p>球体に適用すると法線がいろいろな角度になり、Lerpで補完したUVが壊れます<br>UV座標をLerpするという考え自体がおかしい</p>



<figure class="wp-block-image size-full"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_004.png"><img loading="lazy" decoding="async" width="720" height="307" src="https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_004.png" alt="" class="wp-image-857" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_004.png 720w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_004-300x128.png 300w" sizes="(max-width: 720px) 100vw, 720px" /></a></figure>



<p>Stepで 0.7071(45度)以上なら 1, 未満なら 0 に</p>



<figure class="wp-block-image size-full"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_005.png"><img loading="lazy" decoding="async" width="736" height="321" src="https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_005.png" alt="" class="wp-image-807" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_005.png 736w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/WorldPosition_005-300x131.png 300w" sizes="(max-width: 736px) 100vw, 736px" /></a></figure>



<p>ディテール用のテクスチャのように、ハッキリした画像でなければこれでOK<br>※仕組みの説明のためBase Color以外は設定していません</p>



<p></p>
]]></content:encoded>
					
					<wfw:commentRss>https://ydlprog.ddns.net/2023/03/21/worldposition%e3%81%ab%e3%81%a4%e3%81%84%e3%81%a61-2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>単色マスクでEmissive</title>
		<link>https://ydlprog.ddns.net/2023/03/08/%e5%8d%98%e8%89%b2%e3%83%9e%e3%82%b9%e3%82%af%e3%81%a7emissive/</link>
					<comments>https://ydlprog.ddns.net/2023/03/08/%e5%8d%98%e8%89%b2%e3%83%9e%e3%82%b9%e3%82%af%e3%81%a7emissive/#respond</comments>
		
		<dc:creator><![CDATA[ydlprog]]></dc:creator>
		<pubDate>Tue, 07 Mar 2023 16:59:24 +0000</pubDate>
				<category><![CDATA[Material]]></category>
		<category><![CDATA[UnrealEngine]]></category>
		<guid isPermaLink="false">https://ydlprog.ddns.net/?p=732</guid>

					<description><![CDATA[新規にマスク画像を作ったり、マテリアルを分けずに、マスクを作成し光らす方法基板のテクスチャ 光らせたい部分を真っ赤(R=1.0, G=0.0, B=0.0)等の単色に塗り、そこからMaskを作成 色同士の距離から色が同じ [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>新規にマスク画像を作ったり、マテリアルを分けずに、マスクを作成し光らす方法<br><a rel="noopener" target="_blank" href="https://www.textures.com/download/PBR0311/134394">基板のテクスチャ</a></p>



<div class="wp-block-columns has-small-font-size is-layout-flex wp-container-core-columns-is-layout-d7d455e7 wp-block-columns-is-layout-flex" style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_ColorMask_003.png"><img loading="lazy" decoding="async" width="373" height="174" src="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_ColorMask_003.png" alt="" class="wp-image-750" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_ColorMask_003.png 373w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_ColorMask_003-300x140.png 300w" sizes="(max-width: 373px) 100vw, 373px" /></a></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_ColorMask_004.png"><img loading="lazy" decoding="async" width="373" height="174" src="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_ColorMask_004.png" alt="" class="wp-image-751" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_ColorMask_004.png 373w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_ColorMask_004-300x140.png 300w" sizes="(max-width: 373px) 100vw, 373px" /></a></figure>
</div>
</div>



<p>光らせたい部分を真っ赤(R=1.0, G=0.0, B=0.0)等の単色に塗り、そこからMaskを作成</p>



<figure class="wp-block-image size-large"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_ColorMask_001.png"><img loading="lazy" decoding="async" width="1024" height="387" src="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_ColorMask_001-1024x387.png" alt="" class="wp-image-743" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_ColorMask_001-1024x387.png 1024w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_ColorMask_001-300x113.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_ColorMask_001-768x290.png 768w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_ColorMask_001.png 1080w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><figcaption class="wp-element-caption">MF_ColorMask</figcaption></figure>



<p>色同士の距離から色が同じかをチェック。圧縮時に色がぼやけるので閾値も必要<br>圧縮フォーマットでボケる量が違うので、マルチプラットフォーム時は注意</p>



<figure class="wp-block-image size-large"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_ColorMask_002.png"><img loading="lazy" decoding="async" width="1024" height="567" src="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_ColorMask_002-1024x567.png" alt="" class="wp-image-746" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_ColorMask_002-1024x567.png 1024w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_ColorMask_002-300x166.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_ColorMask_002-768x425.png 768w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_ColorMask_002-1536x851.png 1536w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_ColorMask_002-160x90.png 160w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_ColorMask_002.png 2008w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><figcaption class="wp-element-caption">M_EmissiveWithColorMask</figcaption></figure>



<p>「Not Emitted Color」はマスク用に塗った色を戻すための色</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ydlprog.ddns.net/2023/03/08/%e5%8d%98%e8%89%b2%e3%83%9e%e3%82%b9%e3%82%af%e3%81%a7emissive/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Custom Primitive Dataの使い方</title>
		<link>https://ydlprog.ddns.net/2023/03/05/custom-primitive-data%e3%81%ae%e4%bd%bf%e3%81%84%e6%96%b9/</link>
					<comments>https://ydlprog.ddns.net/2023/03/05/custom-primitive-data%e3%81%ae%e4%bd%bf%e3%81%84%e6%96%b9/#respond</comments>
		
		<dc:creator><![CDATA[ydlprog]]></dc:creator>
		<pubDate>Sun, 05 Mar 2023 05:07:19 +0000</pubDate>
				<category><![CDATA[Material]]></category>
		<category><![CDATA[UnrealEngine]]></category>
		<guid isPermaLink="false">https://ydlprog.ddns.net/?p=701</guid>

					<description><![CDATA[目次 Custom Primitive Dataとは使い所サンプル Custom Primitive Dataとは Custom Primitive Data(CPD)は、Material Instance Dynami [&#8230;]]]></description>
										<content:encoded><![CDATA[

  <div id="toc" class="toc tnt-number tnt-number border-element"><input type="checkbox" class="toc-checkbox" id="toc-checkbox-14"><label class="toc-title" for="toc-checkbox-14">目次</label>
    <div class="toc-content">
    <ol class="toc-list open"><li><a href="#toc1" tabindex="0">Custom Primitive Dataとは</a></li><li><a href="#toc2" tabindex="0">使い所</a></li><li><a href="#toc3" tabindex="0">サンプル</a></li></ol>
    </div>
  </div>

<h2 class="wp-block-heading"><span id="toc1">Custom Primitive Dataとは</span></h2>



<p>Custom Primitive Data(CPD)は、Material Instance Dynamics(MID)と同様にマテリアルにパラメータを渡す仕組みですが、以下の違いがあります</p>



<ul class="wp-block-list">
<li>渡せるのはScalarパラメータとVectorパラメータ</li>



<li>パラメータは最大36個(Vectorなら４個消費)</li>



<li>パラメータはプリミティブ自体に保存</li>



<li>マテリアルが分かれないのでドローコール回数を減らすことができる</li>



<li><span class="red"><span class="bold-red">Material Instanceからパラメータが見えるが設定できない</span></span></li>
</ul>



<p>出典元: <a rel="noopener" target="_blank" href="https://docs.unrealengine.com/5.1/ja/storing-custom-data-in-unreal-engine-materials-per-primitive/">プリミティブごとにマテリアルにカスタム データを保存する</a></p>



<h2 class="wp-block-heading"><span id="toc2">使い所</span></h2>



<ul class="wp-block-list">
<li>カラバリをObject Positionで自動生成したが調整したい</li>



<li>アニメーションをObject Positionで自動生成したが同期をずらしたい</li>



<li>ランタンを並べて配置したが、いくつかのランタンは暗めにしたい</li>



<li>ScalarパラメータとVectorパラメータを渡すだけのためにMIDを使っているシーン</li>
</ul>



<h2 class="wp-block-heading"><span id="toc3">サンプル</span></h2>



<p>テクスチャの一部を表示するMaterial<br><br>*1 は初期値を設定するためのパラメータ<br>*2 はCustom Primitive Data</p>



<figure class="wp-block-image size-large"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_CPD_001.png"><img loading="lazy" decoding="async" width="1024" height="508" src="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_CPD_001-1024x508.png" alt="" class="wp-image-719" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_CPD_001-1024x508.png 1024w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_CPD_001-300x149.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_CPD_001-768x381.png 768w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_CPD_001.png 1323w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>



<p>Custom Primitive Dataに変換するのは、Use Custom Primitive Dataにチェックを入れ、<br>Primitive Data Indexを設定(Indexはダブってはいけない)</p>



<figure class="wp-block-image size-full"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_CPD_002.png"><img loading="lazy" decoding="async" width="725" height="303" src="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_CPD_002.png" alt="" class="wp-image-722" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_CPD_002.png 725w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_CPD_002-300x125.png 300w" sizes="(max-width: 725px) 100vw, 725px" /></a></figure>



<p>Custom Primitive Dataは詳細パネルで設定</p>



<figure class="wp-block-image size-large"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_CPD_003.png"><img loading="lazy" decoding="async" width="1024" height="352" src="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_CPD_003-1024x352.png" alt="" class="wp-image-726" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_CPD_003-1024x352.png 1024w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_CPD_003-300x103.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_CPD_003-768x264.png 768w, https://ydlprog.ddns.net/wp-content/uploads/2023/03/MF_CPD_003.png 1443w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>
]]></content:encoded>
					
					<wfw:commentRss>https://ydlprog.ddns.net/2023/03/05/custom-primitive-data%e3%81%ae%e4%bd%bf%e3%81%84%e6%96%b9/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>アナログディスプレイMaterial</title>
		<link>https://ydlprog.ddns.net/2023/02/26/%e8%b5%b0%e6%9f%bb%e7%b7%9amaterial/</link>
					<comments>https://ydlprog.ddns.net/2023/02/26/%e8%b5%b0%e6%9f%bb%e7%b7%9amaterial/#respond</comments>
		
		<dc:creator><![CDATA[ydlprog]]></dc:creator>
		<pubDate>Sat, 25 Feb 2023 17:16:02 +0000</pubDate>
				<category><![CDATA[Material]]></category>
		<category><![CDATA[UnrealEngine]]></category>
		<guid isPermaLink="false">https://ydlprog.ddns.net/?p=332</guid>

					<description><![CDATA[走査線の合成 sin波で走査線を描画 ボーダーの合成 SmoothStepを使いボーダーを描画 ノイズの合成 NormalMapを使ってNoiseテクスチャを揺らしてアニメーション T_Noise_001_256x256 [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p></p>



<h3 class="wp-block-heading"><span id="toc1">走査線の合成</span></h3>



<p>sin波で走査線を描画</p>



<figure class="wp-block-image size-large"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchScanline.png"><img loading="lazy" decoding="async" width="1024" height="304" src="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchScanline-1024x304.png" alt="" class="wp-image-631" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchScanline-1024x304.png 1024w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchScanline-300x89.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchScanline-768x228.png 768w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchScanline-1536x455.png 1536w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchScanline.png 2024w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><figcaption class="wp-element-caption">MF_GlitchScanline</figcaption></figure>



<div class="wp-block-cocoon-blocks-toggle-box-1 toggle-wrap toggle-box block-box"><input id="toggle-checkbox-20230219013332" class="toggle-checkbox" type="checkbox"/><label class="toggle-button" for="toggle-checkbox-20230219013332">コピペ用コード(5.1.1)</label><div class="toggle-content">
<div class="hcb_wrap"><pre class="prism off-numbers lang-plain" data-file="MF_GlitchScanline"><code>Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionOutput Name=&quot;MaterialExpressionFunctionOutput_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionOutput_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionStaticSwitchParameter&#39;&quot;MaterialGraphNode_13.MaterialExpressionStaticSwitchParameter_0&quot;&#39;)
      bLastPreviewed=True
      Id=0FE21A274870354D655BDE8BD007A67B
      MaterialExpressionEditorX=528
      MaterialExpressionEditorY=128
      MaterialExpressionGuid=2295C6BE400F6B8DE98FB4B731206031
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionOutput&#39;&quot;MaterialExpressionFunctionOutput_0&quot;&#39;
   NodePosX=528
   NodePosY=128
   NodeGuid=4B62A1F54D5323B3AD7F9D9B929A747F
   CustomProperties Pin (PinId=25AEF0604EBE5C599D452EB295A05E36,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_13 6F40AFF64B96AEF6F75671A75E32C766,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=3F357C3748B4A5399661FFB55033AB29,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_1&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionSine Name=&quot;MaterialExpressionSine_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionSine_0&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionAdd&#39;&quot;MaterialGraphNode_9.MaterialExpressionAdd_0&quot;&#39;)
      MaterialExpressionEditorX=-560
      MaterialExpressionEditorY=224
      MaterialExpressionGuid=40DED15846603C8550BD4C87F0A0CEE9
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionSine&#39;&quot;MaterialExpressionSine_0&quot;&#39;
   NodePosX=-560
   NodePosY=224
   AdvancedPinDisplay=Hidden
   NodeGuid=61D15DF048A8434132926EA9D3640B90
   CustomProperties Pin (PinId=DC2533D94C1C8A02B6D0A48572A5723F,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_9 32237F8840F74DE25E1F1DBE9BB6D868,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=8B8F1B654CEDE7EC2D2F7D83859D5BA0,PinName=&quot;Period&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=BE6BA2F34D4881D032EDD98DB7770B0E,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_10 480AA58546DB45E8AE7A9BB056778F72,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_2&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTextureCoordinate Name=&quot;MaterialExpressionTextureCoordinate_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTextureCoordinate_0&quot;
      MaterialExpressionEditorX=-1232
      MaterialExpressionEditorY=64
      MaterialExpressionGuid=0BFA5D52413A9F7508CF6DA59CBDDD4A
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialExpressionTextureCoordinate_0&quot;&#39;
   NodePosX=-1232
   NodePosY=64
   AdvancedPinDisplay=Hidden
   NodeGuid=E9638A3940292B6567E614A5FB51FD72
   CustomProperties Pin (PinId=7EF896104BDDFC3E8C56328DFE793964,PinName=&quot;Coordinate Index&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;int&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=E018F3E641E31036E244E9B11CB01A81,PinName=&quot;UTiling&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=EFBD801243DEA716AD0089BBECCB9F83,PinName=&quot;VTiling&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=907F35C340D9310C61C0B595DED7330D,PinName=&quot;Un Mirror U&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=4506983A4B970695594B9F8F4E3C66E7,PinName=&quot;Un Mirror V&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=19CAD2A54608FFA90712F9B5ADEF5658,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_4 91C76A8F4B3C1B43A5B31DB611698E69,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_3&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMultiply Name=&quot;MaterialExpressionMultiply_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMultiply_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionComponentMask&#39;&quot;MaterialGraphNode_4.MaterialExpressionComponentMask_0&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_0.MaterialExpressionReroute_0&quot;&#39;)
      ConstB=40.000000
      MaterialExpressionEditorX=-832
      MaterialExpressionEditorY=128
      MaterialExpressionGuid=40BA30B546956C1D7DA8C087D040F291
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialExpressionMultiply_0&quot;&#39;
   NodePosX=-832
   NodePosY=128
   NodeGuid=58C1A6F94821171CC2F5099B73EB0BB2
   CustomProperties Pin (PinId=504422E34C40574A7B14E4B2D19FB979,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_4 C052EF6149F15BE8DAB9E5BC67FF4F10,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=AD2D429548F999B582E1EEA521C8E583,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;40.0&quot;,LinkedTo=(MaterialGraphNode_Knot_0 716D2615446B6512EFF048BF75A04A49,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=032B48BA42131779291559AE64827764,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_9 B4E8A5A64AD3DB85DAE513A2427B5DAC,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_4&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionComponentMask Name=&quot;MaterialExpressionComponentMask_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionComponentMask_0&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialGraphNode_2.MaterialExpressionTextureCoordinate_0&quot;&#39;)
      G=True
      MaterialExpressionEditorX=-992
      MaterialExpressionEditorY=64
      MaterialExpressionGuid=5626C467463F6B0D581290930F95ABFE
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionComponentMask&#39;&quot;MaterialExpressionComponentMask_0&quot;&#39;
   NodePosX=-992
   NodePosY=64
   AdvancedPinDisplay=Hidden
   NodeGuid=863097904D5C5EC5FE9CAD82F24F8794
   CustomProperties Pin (PinId=91C76A8F4B3C1B43A5B31DB611698E69,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_2 19CAD2A54608FFA90712F9B5ADEF5658,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=BD720DA042F0D51B0BA6429F88FC989E,PinName=&quot;R&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=33D6AC8C4F796A69639B4980F2416610,PinName=&quot;G&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;true&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=1315789049A76512BEC265BD66FD5B67,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=3C903D75497A49F2ACB99EA2D72CEE53,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=C052EF6149F15BE8DAB9E5BC67FF4F10,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_3 504422E34C40574A7B14E4B2D19FB979,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_5&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionScalarParameter Name=&quot;MaterialExpressionScalarParameter_3&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionScalarParameter_3&quot;
      DefaultValue=120.000000
      SliderMin=10.000000
      SliderMax=512.000000
      ParameterName=&quot;NumberOfScanLines&quot;
      ExpressionGUID=68BAC9E84A4947B62384949F05804BFC
      Group=&quot;80.Glitch Scanline&quot;
      SortPriority=1
      MaterialExpressionEditorX=-1232
      MaterialExpressionEditorY=208
      MaterialExpressionGuid=F094B9AA4B0BB3781BB6DEB6ED9DBCF2
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      Desc=&quot;走査線数&quot;
      bCommentBubbleVisible=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialExpressionScalarParameter_3&quot;&#39;
   NodePosX=-1232
   NodePosY=208
   bCommentBubbleVisible=True
   bCanRenameNode=True
   NodeComment=&quot;走査線数&quot;
   NodeGuid=D932A7C14B08C52DEEDBF697E07A538B
   CustomProperties Pin (PinId=760C75984DC24627CB5E28BB199C5344,PinName=&quot;Default Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;120.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=852282C34B8D8C448570FFB18E2A7EA6,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_0 3D5228314E7010CBAAC557B0982A6E34,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_0&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialGraphNode_5.MaterialExpressionScalarParameter_3&quot;&#39;)
      MaterialExpressionEditorX=-928
      MaterialExpressionEditorY=256
      MaterialExpressionGuid=2EE3107C42BC2A12B3EDA9927F5DECAE
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_0&quot;&#39;
   NodePosX=-928
   NodePosY=256
   bCanRenameNode=False
   NodeGuid=1BC75D7648958CFFFCE8CA83789F77DE
   CustomProperties Pin (PinId=3D5228314E7010CBAAC557B0982A6E34,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_5 852282C34B8D8C448570FFB18E2A7EA6,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=716D2615446B6512EFF048BF75A04A49,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_3 AD2D429548F999B582E1EEA521C8E583,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_6&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTime Name=&quot;MaterialExpressionTime_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTime_1&quot;
      MaterialExpressionEditorX=-1056
      MaterialExpressionEditorY=320
      MaterialExpressionGuid=80632DED4B6F3012C77297A28DBA50CB
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTime&#39;&quot;MaterialExpressionTime_1&quot;&#39;
   NodePosX=-1056
   NodePosY=320
   NodeGuid=A2478F7949A90D1EB3827795CF0C1D67
   CustomProperties Pin (PinId=A427FA8D49B1AC7166A29BBF3556D24C,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_1 688C9CCE4AD01658443803AFC8DAB5F9,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_7&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMultiply Name=&quot;MaterialExpressionMultiply_8&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMultiply_8&quot;
      A=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_1.MaterialExpressionReroute_1&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialGraphNode_8.MaterialExpressionScalarParameter_4&quot;&#39;)
      ConstB=-2.500000
      MaterialExpressionEditorX=-832
      MaterialExpressionEditorY=368
      MaterialExpressionGuid=223F78F64E0C5C1EF87CDCBE49C56236
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      Desc=&quot;1&quot;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialExpressionMultiply_8&quot;&#39;
   NodePosX=-832
   NodePosY=368
   NodeComment=&quot;1&quot;
   NodeGuid=3DB3CBE44DAD5EE72F0C8C917BA9F5FB
   CustomProperties Pin (PinId=8A5458BE49A46E4AA59EA5A175A8B236,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_Knot_1 A1194E5441C05E23C8CD5D9249A601B6,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=99594A9B436B4BF61977ABAB461D12A1,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;-2.5&quot;,LinkedTo=(MaterialGraphNode_8 0FC104A54A75083881D43DB1605B0BB5,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=EA3640DD4E87A2AEE75934A3057E9048,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_9 18C41F644CE26C455574C38F7CC0BA9B,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_8&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionScalarParameter Name=&quot;MaterialExpressionScalarParameter_4&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionScalarParameter_4&quot;
      DefaultValue=2.000000
      SliderMin=-10.000000
      SliderMax=10.000000
      ParameterName=&quot;ScanLineSpeed&quot;
      ExpressionGUID=90C8C37E45375AE63681C8A49C07F718
      Group=&quot;80.Glitch Scanline&quot;
      SortPriority=2
      MaterialExpressionEditorX=-1056
      MaterialExpressionEditorY=448
      MaterialExpressionGuid=D6EF2B2D4C874F8C0BC3E69915EB5A32
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      Desc=&quot;走査線のスクロール速度&quot;
      bCommentBubbleVisible=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialExpressionScalarParameter_4&quot;&#39;
   NodePosX=-1056
   NodePosY=448
   bCommentBubbleVisible=True
   bCanRenameNode=True
   NodeComment=&quot;走査線のスクロール速度&quot;
   NodeGuid=92921AF54639A28D80DB10B62400E960
   CustomProperties Pin (PinId=4A657F874EEC06C157BB0F98B99744A5,PinName=&quot;Default Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;2.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=0FC104A54A75083881D43DB1605B0BB5,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_7 99594A9B436B4BF61977ABAB461D12A1,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_1&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_1&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionTime&#39;&quot;MaterialGraphNode_6.MaterialExpressionTime_1&quot;&#39;)
      MaterialExpressionEditorX=-912
      MaterialExpressionEditorY=368
      MaterialExpressionGuid=1279EE1F4FB90812195425B9A4874235
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_1&quot;&#39;
   NodePosX=-912
   NodePosY=368
   bCanRenameNode=False
   NodeGuid=01CC4A484B5B947D0E5DB1ADF33E4039
   CustomProperties Pin (PinId=688C9CCE4AD01658443803AFC8DAB5F9,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_6 A427FA8D49B1AC7166A29BBF3556D24C,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A1194E5441C05E23C8CD5D9249A601B6,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_7 8A5458BE49A46E4AA59EA5A175A8B236,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_9&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionAdd Name=&quot;MaterialExpressionAdd_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionAdd_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialGraphNode_3.MaterialExpressionMultiply_0&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialGraphNode_7.MaterialExpressionMultiply_8&quot;&#39;)
      MaterialExpressionEditorX=-688
      MaterialExpressionEditorY=224
      MaterialExpressionGuid=730129AD4697E3AFB45647BA6713D5BA
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionAdd&#39;&quot;MaterialExpressionAdd_0&quot;&#39;
   NodePosX=-688
   NodePosY=224
   NodeGuid=C2C1AE814AF9D9E5C95963BD7F35D9B7
   CustomProperties Pin (PinId=B4E8A5A64AD3DB85DAE513A2427B5DAC,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_3 032B48BA42131779291559AE64827764,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=18C41F644CE26C455574C38F7CC0BA9B,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_7 EA3640DD4E87A2AEE75934A3057E9048,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=32237F8840F74DE25E1F1DBE9BB6D868,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_1 DC2533D94C1C8A02B6D0A48572A5723F,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_10&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionAdd Name=&quot;MaterialExpressionAdd_2&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionAdd_2&quot;
      A=(Expression=/Script/Engine.MaterialExpressionSine&#39;&quot;MaterialGraphNode_1.MaterialExpressionSine_0&quot;&#39;)
      MaterialExpressionEditorX=-432
      MaterialExpressionEditorY=224
      MaterialExpressionGuid=B66D6C97400DF3C46FA2619FFC2943EA
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      Desc=&quot;0~1に変換&quot;
      bCommentBubbleVisible=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionAdd&#39;&quot;MaterialExpressionAdd_2&quot;&#39;
   NodePosX=-432
   NodePosY=224
   bCommentBubbleVisible=True
   NodeComment=&quot;0~1に変換&quot;
   NodeGuid=7E2F1F5C49916BE23BB3D199397280CE
   CustomProperties Pin (PinId=480AA58546DB45E8AE7A9BB056778F72,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_1 BE6BA2F34D4881D032EDD98DB7770B0E,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=134B41FC42F240DCAE99D1BCB27B14EE,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=C5148F354AA3D8937BB197A98A5306A1,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_11 96324CA94F3CE2E5969409B25D150C26,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_11&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMultiply Name=&quot;MaterialExpressionMultiply_7&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMultiply_7&quot;
      A=(Expression=/Script/Engine.MaterialExpressionAdd&#39;&quot;MaterialGraphNode_10.MaterialExpressionAdd_2&quot;&#39;)
      ConstB=0.500000
      MaterialExpressionEditorX=-272
      MaterialExpressionEditorY=224
      MaterialExpressionGuid=771FB00E48181B6150A5B8A755CFD3E9
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      Desc=&quot;0~1に変換&quot;
      bCollapsed=False
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialExpressionMultiply_7&quot;&#39;
   NodePosX=-272
   NodePosY=224
   NodeComment=&quot;0~1に変換&quot;
   NodeGuid=AE362BB14EEE82354FC38A90937820F9
   CustomProperties Pin (PinId=96324CA94F3CE2E5969409B25D150C26,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_10 C5148F354AA3D8937BB197A98A5306A1,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=EDAB26814C5B8516D10766B09915A5B2,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.5&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=BAA7879840EF990C07CD9996E1B523B9,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_15 CD831AD24E8E6FFF1F5A36A7DFF824D1,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_12&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionScalarParameter Name=&quot;MaterialExpressionScalarParameter_5&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionScalarParameter_5&quot;
      DefaultValue=0.500000
      SliderMax=2.000000
      ParameterName=&quot;ScanLineAlpha&quot;
      ExpressionGUID=8E1E5C2C4560ED3827CB3AA0C6F9B28C
      Group=&quot;80.Glitch Scanline&quot;
      SortPriority=3
      MaterialExpressionEditorX=-112
      MaterialExpressionEditorY=448
      MaterialExpressionGuid=7D698A8D43B3D44585FEE9943FD2DDF9
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      Desc=&quot;走査線の透明度&quot;
      bCommentBubbleVisible=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialExpressionScalarParameter_5&quot;&#39;
   NodePosX=-112
   NodePosY=448
   bCommentBubbleVisible=True
   bCanRenameNode=True
   NodeComment=&quot;走査線の透明度&quot;
   NodeGuid=34C6F9E544E66C64D836CE8E5FCC88BF
   CustomProperties Pin (PinId=E92F36B5496D7F1FFE52269AE350F608,PinName=&quot;Default Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.5&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=F80B82ED4E1CAEBAF9DF728F504A3D02,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_16 35797E8443DD16D82F5F4B9EFF99E6BE,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_13&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionStaticSwitchParameter Name=&quot;MaterialExpressionStaticSwitchParameter_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionStaticSwitchParameter_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionLinearInterpolate&#39;&quot;MaterialGraphNode_16.MaterialExpressionLinearInterpolate_0&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_2.MaterialExpressionReroute_3&quot;&#39;)
      DefaultValue=True
      ParameterName=&quot;DrawScanline&quot;
      ExpressionGUID=8319153A42BF178E216F72A285378643
      Group=&quot;80.Glitch Scanline&quot;
      SortPriority=0
      MaterialExpressionEditorX=304
      MaterialExpressionEditorY=144
      MaterialExpressionGuid=CD3BE1E649AA1F4188A7DB89DDAF77AB
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionStaticSwitchParameter&#39;&quot;MaterialExpressionStaticSwitchParameter_0&quot;&#39;
   NodePosX=304
   NodePosY=144
   bCanRenameNode=True
   NodeGuid=2DF05C9243538DA48E84EA8ACC8EFDC5
   CustomProperties Pin (PinId=C6C987E141461AA5394E69A06F6D672E,PinName=&quot;True&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_16 7514FFFA4971DA96E1EF5FA5C6ECC0F8,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=D59E47314C53E281F2A78E9C1E67768D,PinName=&quot;False&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_2 B8AA0F2742B820A5720021A30A311882,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=64CE244E4E80E220CAC0E6A4959497CF,PinName=&quot;Default Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;true&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=6F40AFF64B96AEF6F75671A75E32C766,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_0 25AEF0604EBE5C599D452EB295A05E36,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_2&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_3&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_3&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_3.MaterialExpressionReroute_2&quot;&#39;)
      MaterialExpressionEditorX=208
      MaterialExpressionEditorY=128
      MaterialExpressionGuid=53F325E244A3FF298A6E75AC53FE3EBE
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_3&quot;&#39;
   NodePosX=208
   NodePosY=128
   bCanRenameNode=False
   NodeGuid=103EDBCD420F1CAE2025CA96FB79A0C2
   CustomProperties Pin (PinId=BC88272E416FFC0378F04CBEF94E98F6,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_3 FE4BDA2843F62D43FEF3B0AD534DCABC,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=B8AA0F2742B820A5720021A30A311882,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_13 D59E47314C53E281F2A78E9C1E67768D,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_14&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionInput Name=&quot;MaterialExpressionFunctionInput_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionInput_0&quot;
      InputName=&quot;Base Color&quot;
      Id=5CF8940D446C725D332A55919B624ED9
      PreviewValue=(X=0.500000,Y=0.500000,Z=0.500000,W=1.000000)
      MaterialExpressionEditorX=-288
      MaterialExpressionEditorY=96
      MaterialExpressionGuid=10F0B80547EF4BC491DE77B0FEAFE751
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialExpressionFunctionInput_0&quot;&#39;
   NodePosX=-288
   NodePosY=96
   NodeGuid=E7E622F44C499192B20D45B947A5EDA1
   CustomProperties Pin (PinId=8D46B4DA463784ED7BB7C5ADBFFD95BD,PinName=&quot;Preview&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=6007C3334DFFFAD2867FC997A8FF7A2C,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_15 41BE50914B4F29B49008B98E0C033E5A,MaterialGraphNode_Knot_3 286AD5FF4C7067E777D835A93B52D533,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_15&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMultiply Name=&quot;MaterialExpressionMultiply_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMultiply_1&quot;
      A=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_14.MaterialExpressionFunctionInput_0&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialGraphNode_11.MaterialExpressionMultiply_7&quot;&#39;)
      MaterialExpressionEditorX=-32
      MaterialExpressionEditorY=192
      MaterialExpressionGuid=17E8DDF84817619D3437CD88B3C665D0
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialExpressionMultiply_1&quot;&#39;
   NodePosX=-32
   NodePosY=192
   NodeGuid=C66C11724386E5F3946FE8B40202A287
   CustomProperties Pin (PinId=41BE50914B4F29B49008B98E0C033E5A,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_14 6007C3334DFFFAD2867FC997A8FF7A2C,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=CD831AD24E8E6FFF1F5A36A7DFF824D1,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_11 BAA7879840EF990C07CD9996E1B523B9,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=4B2847F84C8B84FCE63F49A7C33D44E3,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_16 692CC0B549F02945B625DD9AE4F6BFDD,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_16&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionLinearInterpolate Name=&quot;MaterialExpressionLinearInterpolate_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionLinearInterpolate_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_3.MaterialExpressionReroute_2&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialGraphNode_15.MaterialExpressionMultiply_1&quot;&#39;)
      Alpha=(Expression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialGraphNode_12.MaterialExpressionScalarParameter_5&quot;&#39;)
      MaterialExpressionEditorX=112
      MaterialExpressionEditorY=160
      MaterialExpressionGuid=800238EF49890C79BDDC998E8384D802
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionLinearInterpolate&#39;&quot;MaterialExpressionLinearInterpolate_0&quot;&#39;
   NodePosX=112
   NodePosY=160
   NodeGuid=D6CC992A481F2028F0C8EDAED8C70F30
   CustomProperties Pin (PinId=7E089D7F40FA97E958BEB3A6D10C720B,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_Knot_3 FE4BDA2843F62D43FEF3B0AD534DCABC,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=692CC0B549F02945B625DD9AE4F6BFDD,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_15 4B2847F84C8B84FCE63F49A7C33D44E3,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=35797E8443DD16D82F5F4B9EFF99E6BE,PinName=&quot;Alpha&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.5&quot;,LinkedTo=(MaterialGraphNode_12 F80B82ED4E1CAEBAF9DF728F504A3D02,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=7514FFFA4971DA96E1EF5FA5C6ECC0F8,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_13 C6C987E141461AA5394E69A06F6D672E,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_3&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_2&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_2&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_14.MaterialExpressionFunctionInput_0&quot;&#39;)
      MaterialExpressionEditorX=16
      MaterialExpressionEditorY=128
      MaterialExpressionGuid=2F7996BA43005E0DD2532CB88DBC7D89
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_2&quot;&#39;
   NodePosX=16
   NodePosY=128
   bCanRenameNode=False
   NodeGuid=75B7A7924C2D4ADCD82F868F60127D8B
   CustomProperties Pin (PinId=286AD5FF4C7067E777D835A93B52D533,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_14 6007C3334DFFFAD2867FC997A8FF7A2C,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=FE4BDA2843F62D43FEF3B0AD534DCABC,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_2 BC88272E416FFC0378F04CBEF94E98F6,MaterialGraphNode_16 7E089D7F40FA97E958BEB3A6D10C720B,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Comment Name=&quot;MaterialGraphNode_Comment_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionComment Name=&quot;MaterialExpressionComment_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionComment_0&quot;
      SizeX=1984
      SizeY=560
      Text=&quot;走査線の合成&quot;
      MaterialExpressionEditorX=-1280
      MaterialExpressionGuid=9F23AC984BBD993127540299A99AFC2C
      Function=/Script/Engine.MaterialFunction&#39;&quot;/Engine/Transient.MF_GlitchScanline&quot;&#39;
   End Object
   MaterialExpressionComment=/Script/Engine.MaterialExpressionComment&#39;&quot;MaterialExpressionComment_0&quot;&#39;
   NodePosX=-1280
   NodeWidth=1984
   NodeHeight=560
   NodeComment=&quot;走査線の合成&quot;
   NodeGuid=7B0E6A8B4A4AD5B0125145815ACA8924
End Object</code></pre></div>
</div></div>



<h3 class="wp-block-heading"><span id="toc2">ボーダーの合成</span></h3>



<p>SmoothStepを使いボーダーを描画</p>



<figure class="wp-block-image size-large"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchBorder.png"><img loading="lazy" decoding="async" width="1024" height="326" src="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchBorder-1024x326.png" alt="" class="wp-image-634" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchBorder-1024x326.png 1024w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchBorder-300x95.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchBorder-768x244.png 768w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchBorder-1536x488.png 1536w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchBorder-2048x651.png 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><figcaption class="wp-element-caption">MF_GlitchBorder</figcaption></figure>



<div class="wp-block-cocoon-blocks-toggle-box-1 toggle-wrap toggle-box block-box"><input id="toggle-checkbox-20230219013349" class="toggle-checkbox" type="checkbox"/><label class="toggle-button" for="toggle-checkbox-20230219013349">コピペ用コード(5.1.1)</label><div class="toggle-content">
<div class="hcb_wrap"><pre class="prism off-numbers lang-plain" data-file="MF_GlitchBorder"><code>Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionOutput Name=&quot;MaterialExpressionFunctionOutput_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionOutput_0&quot;
      Description=&quot;ボーダーの合成&quot;
      A=(Expression=/Script/Engine.MaterialExpressionStaticSwitchParameter&#39;&quot;MaterialGraphNode_4.MaterialExpressionStaticSwitchParameter_0&quot;&#39;)
      bLastPreviewed=True
      Id=275C10294A695A05E9A5F385486CCED2
      MaterialExpressionEditorX=304
      MaterialExpressionEditorY=256
      MaterialExpressionGuid=4FBECED74AE26D67AA3271A33958E65B
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionOutput&#39;&quot;MaterialExpressionFunctionOutput_0&quot;&#39;
   NodePosX=304
   NodePosY=256
   NodeGuid=80CDB8D2471878AF4EF172A0E5D70D73
   CustomProperties Pin (PinId=6D2300AE409E47AD969448A5B1490EEE,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_4 D2F5585A49E85F22ADD7ED83F25F2A5D,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=79D19446497FD8DD1742B7B6ED660975,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_1&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionScalarParameter Name=&quot;MaterialExpressionScalarParameter_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionScalarParameter_0&quot;
      DefaultValue=0.500000
      SliderMax=1.000000
      ParameterName=&quot;BorederWidth&quot;
      ExpressionGUID=198159754AD5D287C6C510B988B6F0CC
      Group=&quot;81.Glitch Border&quot;
      SortPriority=1
      MaterialExpressionEditorX=-1760
      MaterialExpressionEditorY=224
      MaterialExpressionGuid=F094B9AA4B0BB3781BB6DEB6ED9DBCF2
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
      Desc=&quot;ボーダーの幅&quot;
      bCommentBubbleVisible=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialExpressionScalarParameter_0&quot;&#39;
   NodePosX=-1760
   NodePosY=224
   bCommentBubbleVisible=True
   bCanRenameNode=True
   NodeComment=&quot;ボーダーの幅&quot;
   NodeGuid=F9A709834E592B49DCE24D9F3046EC0F
   CustomProperties Pin (PinId=D602F5E844055C7239ADDE95596CFB33,PinName=&quot;Default Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.5&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=7515D77149C48F85ED5D8BB6BD0DEC8E,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_9 980E32F3487CB6C28D57B09C08F75137,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_2&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionScalarParameter Name=&quot;MaterialExpressionScalarParameter_2&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionScalarParameter_2&quot;
      DefaultValue=0.500000
      SliderMax=1.000000
      ParameterName=&quot;BorderAlpha&quot;
      ExpressionGUID=F2CDD9404ED49DAF8B0DA5AD74844915
      Group=&quot;81.Glitch Border&quot;
      SortPriority=4
      MaterialExpressionEditorX=-352
      MaterialExpressionEditorY=512
      MaterialExpressionGuid=7D698A8D43B3D44585FEE9943FD2DDF9
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
      Desc=&quot;走査線の透明度&quot;
      bCommentBubbleVisible=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialExpressionScalarParameter_2&quot;&#39;
   NodePosX=-352
   NodePosY=512
   bCommentBubbleVisible=True
   bCanRenameNode=True
   NodeComment=&quot;走査線の透明度&quot;
   NodeGuid=78F7F21A4E12BC9E45BE96BABC21E6AC
   CustomProperties Pin (PinId=93B25E9B4B298840801418A277D8330B,PinName=&quot;Default Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.5&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=E082211E47D3DD13C08196AC5D346313,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_23 A6ADADE94091A92D9D642C88E640EDE7,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_3&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionInput Name=&quot;MaterialExpressionFunctionInput_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionInput_0&quot;
      InputName=&quot;Base Color&quot;
      Id=A7EF332448AA28FF34FEA5B8558C4575
      PreviewValue=(X=0.500000,Y=0.500000,Z=0.500000,W=1.000000)
      MaterialExpressionEditorX=-576
      MaterialExpressionEditorY=208
      MaterialExpressionGuid=10F0B80547EF4BC491DE77B0FEAFE751
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialExpressionFunctionInput_0&quot;&#39;
   NodePosX=-576
   NodePosY=208
   NodeGuid=91F3BD1B499D8D62A143E79EEE0F7190
   CustomProperties Pin (PinId=CC2E47C64CEBF6F091637A944242914E,PinName=&quot;Preview&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=70EBC6794FA08D7AA5DA5888EE1C90C7,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_0 94B9013046ED04845458089EB9DD68A2,MaterialGraphNode_21 7FE738754A26B3768B54BABD175E7F4C,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_4&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionStaticSwitchParameter Name=&quot;MaterialExpressionStaticSwitchParameter_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionStaticSwitchParameter_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionLinearInterpolate&#39;&quot;MaterialGraphNode_23.MaterialExpressionLinearInterpolate_0&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_6.MaterialExpressionReroute_5&quot;&#39;)
      DefaultValue=True
      ParameterName=&quot;DrawBorder&quot;
      ExpressionGUID=E836685A4403B16A70A71DA3E884D3F8
      Group=&quot;81.Glitch Border&quot;
      SortPriority=0
      MaterialExpressionEditorX=80
      MaterialExpressionEditorY=272
      MaterialExpressionGuid=CD3BE1E649AA1F4188A7DB89DDAF77AB
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionStaticSwitchParameter&#39;&quot;MaterialExpressionStaticSwitchParameter_0&quot;&#39;
   NodePosX=80
   NodePosY=272
   bCanRenameNode=True
   NodeGuid=548AB54A48AED1F38BF11EB01F53AA1C
   CustomProperties Pin (PinId=18378D5A46A8EA4A57838C8A206175C2,PinName=&quot;True&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_23 FE8119444B59927E5DD6A2A908AD94D1,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=BD5AD01F4648EC7DE3E9F19605D4F4EC,PinName=&quot;False&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_6 AD45020544BBF129D74068813A4359F8,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A9C1968B4803233284A8A2A89965B784,PinName=&quot;Default Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;true&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=D2F5585A49E85F22ADD7ED83F25F2A5D,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_0 6D2300AE409E47AD969448A5B1490EEE,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_0&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_3.MaterialExpressionFunctionInput_0&quot;&#39;)
      MaterialExpressionEditorX=-208
      MaterialExpressionEditorY=240
      MaterialExpressionGuid=96EDEC3F434C1C4CB64529BC41438F91
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_0&quot;&#39;
   NodePosX=-208
   NodePosY=240
   bCanRenameNode=False
   NodeGuid=2CBB549E4B391A6ED0B320A91FD09A9C
   CustomProperties Pin (PinId=94B9013046ED04845458089EB9DD68A2,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_3 70EBC6794FA08D7AA5DA5888EE1C90C7,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=1771C73C43AA6135759C60BCFC05535B,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_23 880787CB44F0ADC931BAEE9D984411F1,MaterialGraphNode_Knot_6 9AF4748D4EA2264BD37BAFB344573001,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_5&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTextureCoordinate Name=&quot;MaterialExpressionTextureCoordinate_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTextureCoordinate_0&quot;
      MaterialExpressionEditorX=-1872
      MaterialExpressionEditorY=448
      MaterialExpressionGuid=75AADD8A47609017857863B5DF973307
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialExpressionTextureCoordinate_0&quot;&#39;
   NodePosX=-1872
   NodePosY=448
   AdvancedPinDisplay=Hidden
   NodeGuid=8C5622D94A8F7CB2841CC89B37B43ECA
   CustomProperties Pin (PinId=8443C1934428D7F62EA0A9B72BD6E65C,PinName=&quot;Coordinate Index&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;int&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=740446CD4F012CDB3138C3B965192614,PinName=&quot;UTiling&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=C495365A4C58AEB6033A1D84C41C3C06,PinName=&quot;VTiling&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=05C22D1345FD0D0FC04E1BBD2C08A877,PinName=&quot;Un Mirror U&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A51098F440C4C89334E44391BC2B4928,PinName=&quot;Un Mirror V&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=260C0E6244C2748D65DBEC91EAE928F7,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_6 F9BE80A540815A8E8CA240AC96FBE38F,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_6&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionComponentMask Name=&quot;MaterialExpressionComponentMask_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionComponentMask_0&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialGraphNode_5.MaterialExpressionTextureCoordinate_0&quot;&#39;)
      G=True
      MaterialExpressionEditorX=-1632
      MaterialExpressionEditorY=448
      MaterialExpressionGuid=CE715C034668B5C678BADDA25709909B
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionComponentMask&#39;&quot;MaterialExpressionComponentMask_0&quot;&#39;
   NodePosX=-1632
   NodePosY=448
   AdvancedPinDisplay=Hidden
   NodeGuid=A1613B0847393E836DA764A934075B5E
   CustomProperties Pin (PinId=F9BE80A540815A8E8CA240AC96FBE38F,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_5 260C0E6244C2748D65DBEC91EAE928F7,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=7E9B78A14AE466EF0DC6E6B7933D9B2D,PinName=&quot;R&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=503AD9AE47817B9E9D1EE2A4AC3F379F,PinName=&quot;G&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;true&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=2AEFCB1D4E5F051F6ED59AB82A7556F3,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=F8CD38DF4A16FA2A18112691335E7A16,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A20AB4CF4433668C095BA9A9BC7249C0,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_19 22361A0F49AF4D8E3E7D72A85C2E08B2,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_7&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionSmoothStep Name=&quot;MaterialExpressionSmoothStep_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionSmoothStep_0&quot;
      Min=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_1.MaterialExpressionReroute_1&quot;&#39;)
      Max=(Expression=/Script/Engine.MaterialExpressionAdd&#39;&quot;MaterialGraphNode_15.MaterialExpressionAdd_2&quot;&#39;)
      Value=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_4.MaterialExpressionReroute_4&quot;&#39;)
      ConstMin=0.900000
      ConstMax=0.900000
      MaterialExpressionEditorX=-832
      MaterialExpressionEditorY=240
      MaterialExpressionGuid=2DB037EE479AA34435423F896AF9386D
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionSmoothStep&#39;&quot;MaterialExpressionSmoothStep_0&quot;&#39;
   NodePosX=-832
   NodePosY=240
   NodeGuid=BEE843DF452A043504A25DB426C18BF8
   CustomProperties Pin (PinId=7CA5730D44A48FAF21FCC6B0277CAD36,PinName=&quot;Min&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.9&quot;,LinkedTo=(MaterialGraphNode_Knot_1 C572AF6D4138EC2ADE8714A7A2E09EE5,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=F5A0812F4831AA097E1B7B92DE811393,PinName=&quot;Max&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.9&quot;,LinkedTo=(MaterialGraphNode_15 6BF16EDD48D05002AA77D1989AEB21BE,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=77AEC3F146C27D5C4E61B189249EBBEF,PinName=&quot;Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_Knot_4 491BE0C24D26613432A256BC698F7771,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=43A5A22F408C60B138637A8CED340207,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_8 32F8A40F449A4B804F16A18B717661D6,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_8&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMultiply Name=&quot;MaterialExpressionMultiply_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMultiply_1&quot;
      A=(Expression=/Script/Engine.MaterialExpressionSmoothStep&#39;&quot;MaterialGraphNode_7.MaterialExpressionSmoothStep_0&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionSmoothStep&#39;&quot;MaterialGraphNode_11.MaterialExpressionSmoothStep_2&quot;&#39;)
      MaterialExpressionEditorX=-656
      MaterialExpressionEditorY=320
      MaterialExpressionGuid=BDDA58CA412E860D6CBE9DA92D4BF898
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
      bCollapsed=False
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialExpressionMultiply_1&quot;&#39;
   NodePosX=-656
   NodePosY=320
   NodeGuid=755B731B451F00154326008C78B4DDF4
   CustomProperties Pin (PinId=32F8A40F449A4B804F16A18B717661D6,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_7 43A5A22F408C60B138637A8CED340207,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=C67460A640667949DEDEA9A18038CDD7,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_11 8849CA8849F6BCFF02018597009D217D,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=C5522B1F40C3EB5EF85FD8A03FA18B1F,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_22 AC6853BE44C740B3782C4FB447DFD162,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_9&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMultiply Name=&quot;MaterialExpressionMultiply_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMultiply_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialGraphNode_1.MaterialExpressionScalarParameter_0&quot;&#39;)
      ConstB=0.500000
      MaterialExpressionEditorX=-1520
      MaterialExpressionEditorY=240
      MaterialExpressionGuid=2E4C33224D37897EA1897BABB5CE5331
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
      Desc=&quot;中央からの幅 = 0.5 - (Width * 0.5)&quot;
      bCommentBubbleVisible=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialExpressionMultiply_0&quot;&#39;
   NodePosX=-1520
   NodePosY=240
   bCommentBubbleVisible=True
   NodeComment=&quot;中央からの幅 = 0.5 - (Width * 0.5)&quot;
   NodeGuid=2F12F6794E2D2E3025081A85C859FBA7
   CustomProperties Pin (PinId=980E32F3487CB6C28D57B09C08F75137,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_1 7515D77149C48F85ED5D8BB6BD0DEC8E,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=543743ED4A56DCAA1C2207BCC03743E3,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.5&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=FC989D5349550DA46BCFBB820507FFAD,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_12 6D392CAB463530969904F1BCA14E6727,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_10&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionOneMinus Name=&quot;MaterialExpressionOneMinus_3&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionOneMinus_3&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionFrac&#39;&quot;MaterialGraphNode_20.MaterialExpressionFrac_0&quot;&#39;)
      MaterialExpressionEditorX=-1008
      MaterialExpressionEditorY=592
      MaterialExpressionGuid=728B92624AF290DBB3AD19BC8F020B2A
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionOneMinus&#39;&quot;MaterialExpressionOneMinus_3&quot;&#39;
   NodePosX=-1008
   NodePosY=592
   NodeGuid=1BC125F54A8B0FA5DFE335BCAA5AE500
   CustomProperties Pin (PinId=5A7AB7AE4D6A0A7B53CF3BB0FA1FCD31,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_20 0C4A48824D8B8AF46A0F29A658B7B576,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=E18AA364433A1A861EC4CFB7194E3BA4,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_11 69FB389E4D282EC2A894FDA49877847C,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_11&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionSmoothStep Name=&quot;MaterialExpressionSmoothStep_2&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionSmoothStep_2&quot;
      Min=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_1.MaterialExpressionReroute_1&quot;&#39;)
      Max=(Expression=/Script/Engine.MaterialExpressionAdd&#39;&quot;MaterialGraphNode_15.MaterialExpressionAdd_2&quot;&#39;)
      Value=(Expression=/Script/Engine.MaterialExpressionOneMinus&#39;&quot;MaterialGraphNode_10.MaterialExpressionOneMinus_3&quot;&#39;)
      ConstMin=0.900000
      ConstMax=0.900000
      MaterialExpressionEditorX=-832
      MaterialExpressionEditorY=432
      MaterialExpressionGuid=2DB037EE479AA34435423F896AF9386D
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionSmoothStep&#39;&quot;MaterialExpressionSmoothStep_2&quot;&#39;
   NodePosX=-832
   NodePosY=432
   NodeGuid=CF960B194BCED205009E1BACD1CA831F
   CustomProperties Pin (PinId=D32C0B9B4132CD45CE88168F56EDCDFE,PinName=&quot;Min&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.9&quot;,LinkedTo=(MaterialGraphNode_Knot_1 C572AF6D4138EC2ADE8714A7A2E09EE5,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A0960FD84CE5FDB5C8F15F81038805CF,PinName=&quot;Max&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.9&quot;,LinkedTo=(MaterialGraphNode_15 6BF16EDD48D05002AA77D1989AEB21BE,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=69FB389E4D282EC2A894FDA49877847C,PinName=&quot;Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_10 E18AA364433A1A861EC4CFB7194E3BA4,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=8849CA8849F6BCFF02018597009D217D,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_8 C67460A640667949DEDEA9A18038CDD7,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_12&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionSubtract Name=&quot;MaterialExpressionSubtract_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionSubtract_1&quot;
      B=(Expression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialGraphNode_9.MaterialExpressionMultiply_0&quot;&#39;)
      ConstA=0.500000
      MaterialExpressionEditorX=-1344
      MaterialExpressionEditorY=240
      MaterialExpressionGuid=AE35D4AC47F34FE7A9642DA769B0944A
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionSubtract&#39;&quot;MaterialExpressionSubtract_1&quot;&#39;
   NodePosX=-1344
   NodePosY=240
   NodeGuid=B727C87243FB7006E5D55FA3F448C494
   CustomProperties Pin (PinId=4884BB814772F15CEF6B268C285DDB98,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.5&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=6D392CAB463530969904F1BCA14E6727,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_9 FC989D5349550DA46BCFBB820507FFAD,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=B6E4D724438B8EA90D0AE09B24D603D1,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_14 D90CAAA14FF5F985B21CA8B47F17B17D,MaterialGraphNode_Knot_2 E4F24C4442AB5A40E509619FB1C8C19F,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_13&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionScalarParameter Name=&quot;MaterialExpressionScalarParameter_4&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionScalarParameter_4&quot;
      DefaultValue=0.500000
      SliderMax=1.000000
      ParameterName=&quot;BorderSlope&quot;
      ExpressionGUID=F1A00D5C421D3F56053BA9B3D1B245FA
      Group=&quot;81.Glitch Border&quot;
      SortPriority=2
      MaterialExpressionEditorX=-1392
      MaterialExpressionEditorY=400
      MaterialExpressionGuid=4178192A4910E50A95D93D8D0F2D89DF
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
      Desc=&quot;ボーダ端の滑らかさ&quot;
      bCommentBubbleVisible=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialExpressionScalarParameter_4&quot;&#39;
   NodePosX=-1392
   NodePosY=400
   bCommentBubbleVisible=True
   bCanRenameNode=True
   NodeComment=&quot;ボーダ端の滑らかさ&quot;
   NodeGuid=CA833B21408331FF5505E19C594C3C18
   CustomProperties Pin (PinId=F00EA7604A854254A209C8B83F6059FA,PinName=&quot;Default Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.5&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=E41D7F7E4D02E2DB955626A544F0B1D5,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_14 8928A58A4B5EABD1BDB3E1BD05931589,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_14&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMultiply Name=&quot;MaterialExpressionMultiply_3&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMultiply_3&quot;
      A=(Expression=/Script/Engine.MaterialExpressionSubtract&#39;&quot;MaterialGraphNode_12.MaterialExpressionSubtract_1&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialGraphNode_13.MaterialExpressionScalarParameter_4&quot;&#39;)
      MaterialExpressionEditorX=-1168
      MaterialExpressionEditorY=368
      MaterialExpressionGuid=97E963A241A90346E65FF6B2FC7DDE21
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
      Desc=&quot;幅を1.0とする&quot;
      bCommentBubbleVisible=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialExpressionMultiply_3&quot;&#39;
   NodePosX=-1168
   NodePosY=368
   bCommentBubbleVisible=True
   NodeComment=&quot;幅を1.0とする&quot;
   NodeGuid=F46F240449F2D59B5FEDA98B6C85C073
   CustomProperties Pin (PinId=D90CAAA14FF5F985B21CA8B47F17B17D,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_12 B6E4D724438B8EA90D0AE09B24D603D1,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=8928A58A4B5EABD1BDB3E1BD05931589,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_13 E41D7F7E4D02E2DB955626A544F0B1D5,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=DC7AB4DD494407F670B59DB873D6E797,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_15 E42FEE4E485F0D99CE193F98AE020C4E,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_15&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionAdd Name=&quot;MaterialExpressionAdd_2&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionAdd_2&quot;
      A=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_2.MaterialExpressionReroute_2&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialGraphNode_14.MaterialExpressionMultiply_3&quot;&#39;)
      MaterialExpressionEditorX=-1024
      MaterialExpressionEditorY=336
      MaterialExpressionGuid=0853F62F406B7A0D7D508A8944E1F908
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionAdd&#39;&quot;MaterialExpressionAdd_2&quot;&#39;
   NodePosX=-1024
   NodePosY=336
   NodeGuid=16ACB6D5427ABB2A21E24CB7BB552BC2
   CustomProperties Pin (PinId=B55E63334C8A234F56939996C5537ACB,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_Knot_2 4A7BFC914061FFF80AB01FBF0DC9B001,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=E42FEE4E485F0D99CE193F98AE020C4E,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_14 DC7AB4DD494407F670B59DB873D6E797,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=6BF16EDD48D05002AA77D1989AEB21BE,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_7 F5A0812F4831AA097E1B7B92DE811393,MaterialGraphNode_11 A0960FD84CE5FDB5C8F15F81038805CF,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_1&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_1&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_2.MaterialExpressionReroute_2&quot;&#39;)
      MaterialExpressionEditorX=-960
      MaterialExpressionEditorY=272
      MaterialExpressionGuid=F99E430344530F130DD573A022309781
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_1&quot;&#39;
   NodePosX=-960
   NodePosY=272
   bCanRenameNode=False
   NodeGuid=18AFCD434FC8ACDA2871FB88CD1A7D8C
   CustomProperties Pin (PinId=8056F19E41F32B765060348E2A5D5A12,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_2 4A7BFC914061FFF80AB01FBF0DC9B001,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=C572AF6D4138EC2ADE8714A7A2E09EE5,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_7 7CA5730D44A48FAF21FCC6B0277CAD36,MaterialGraphNode_11 D32C0B9B4132CD45CE88168F56EDCDFE,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_2&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_2&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_2&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionSubtract&#39;&quot;MaterialGraphNode_12.MaterialExpressionSubtract_1&quot;&#39;)
      MaterialExpressionEditorX=-1088
      MaterialExpressionEditorY=272
      MaterialExpressionGuid=CD3B6B6A4F175C27B03B168C740C65FD
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_2&quot;&#39;
   NodePosX=-1088
   NodePosY=272
   bCanRenameNode=False
   NodeGuid=0F2141BF4A9045E59F0FB19B6DD97664
   CustomProperties Pin (PinId=E4F24C4442AB5A40E509619FB1C8C19F,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_12 B6E4D724438B8EA90D0AE09B24D603D1,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=4A7BFC914061FFF80AB01FBF0DC9B001,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_15 B55E63334C8A234F56939996C5537ACB,MaterialGraphNode_Knot_1 8056F19E41F32B765060348E2A5D5A12,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_3&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_3&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_3&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionFrac&#39;&quot;MaterialGraphNode_20.MaterialExpressionFrac_0&quot;&#39;)
      MaterialExpressionEditorX=-1024
      MaterialExpressionEditorY=480
      MaterialExpressionGuid=0BE7A4E34BAB4219463BD3A44943AB01
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_3&quot;&#39;
   NodePosX=-1024
   NodePosY=480
   bCanRenameNode=False
   NodeGuid=47FAF0474CF994EBBA8F499E4E1756C9
   CustomProperties Pin (PinId=3485181F4601F8557E637AB9137EF7BD,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_20 0C4A48824D8B8AF46A0F29A658B7B576,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=B9F2CACC4B8CB0FAD4D09EB572151CBB,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_4 1465B8B84D0BA0E912E238867B12868B,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_4&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_4&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_4&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_3.MaterialExpressionReroute_3&quot;&#39;)
      MaterialExpressionEditorX=-960
      MaterialExpressionEditorY=480
      MaterialExpressionGuid=5D3397124A940D8187FEFC8B2CE9E838
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_4&quot;&#39;
   NodePosX=-960
   NodePosY=480
   bCanRenameNode=False
   NodeGuid=0C68C4094CF1750A9D63F2885302D06C
   CustomProperties Pin (PinId=1465B8B84D0BA0E912E238867B12868B,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_3 B9F2CACC4B8CB0FAD4D09EB572151CBB,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=491BE0C24D26613432A256BC698F7771,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_7 77AEC3F146C27D5C4E61B189249EBBEF,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_16&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTime Name=&quot;MaterialExpressionTime_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTime_1&quot;
      MaterialExpressionEditorX=-1840
      MaterialExpressionEditorY=560
      MaterialExpressionGuid=80632DED4B6F3012C77297A28DBA50CB
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTime&#39;&quot;MaterialExpressionTime_1&quot;&#39;
   NodePosX=-1840
   NodePosY=560
   NodeGuid=B55907FC4A5AE42B209C539802ED6ECB
   CustomProperties Pin (PinId=27827709451E1D64C2A35D92A7D47436,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_5 38C08F274CFB80601189BC9E5E7B70C1,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_17&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMultiply Name=&quot;MaterialExpressionMultiply_4&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMultiply_4&quot;
      A=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_5.MaterialExpressionReroute_6&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialGraphNode_18.MaterialExpressionScalarParameter_5&quot;&#39;)
      ConstB=-2.500000
      MaterialExpressionEditorX=-1616
      MaterialExpressionEditorY=608
      MaterialExpressionGuid=223F78F64E0C5C1EF87CDCBE49C56236
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
      Desc=&quot;1&quot;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialExpressionMultiply_4&quot;&#39;
   NodePosX=-1616
   NodePosY=608
   NodeComment=&quot;1&quot;
   NodeGuid=A641F7D74FDDAE5FFE3F6084EE8FF530
   CustomProperties Pin (PinId=063936EF44049AB111518CA5C7D6F269,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_Knot_5 4A8A6998424A306B781E2DBC7F8C0353,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=44483D584B6CA2AC8A8895AAF700AE2D,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;-2.5&quot;,LinkedTo=(MaterialGraphNode_18 348DCDCE42F698C6F95941A428D8B26C,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=6441763B490AD4D5DA218C86E20F8A47,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_19 78F0141F4FB99C477EA2EB89FA5CB227,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_18&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionScalarParameter Name=&quot;MaterialExpressionScalarParameter_5&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionScalarParameter_5&quot;
      DefaultValue=0.200000
      SliderMin=-10.000000
      SliderMax=10.000000
      ParameterName=&quot;BoorderSpeed&quot;
      ExpressionGUID=D75E46CF4587C62F0CD933BFC3FE5633
      Group=&quot;81.Glitch Border&quot;
      SortPriority=3
      MaterialExpressionEditorX=-1840
      MaterialExpressionEditorY=688
      MaterialExpressionGuid=D6EF2B2D4C874F8C0BC3E69915EB5A32
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
      Desc=&quot;ボーダーのスクロール速度&quot;
      bCommentBubbleVisible=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialExpressionScalarParameter_5&quot;&#39;
   NodePosX=-1840
   NodePosY=688
   bCommentBubbleVisible=True
   bCanRenameNode=True
   NodeComment=&quot;ボーダーのスクロール速度&quot;
   NodeGuid=FBDE50E847BD808C98D79BBE39A2A125
   CustomProperties Pin (PinId=593F9B644D2DAD04674780A499730913,PinName=&quot;Default Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.2&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=348DCDCE42F698C6F95941A428D8B26C,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_17 44483D584B6CA2AC8A8895AAF700AE2D,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_5&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_6&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_6&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionTime&#39;&quot;MaterialGraphNode_16.MaterialExpressionTime_1&quot;&#39;)
      MaterialExpressionEditorX=-1696
      MaterialExpressionEditorY=608
      MaterialExpressionGuid=1279EE1F4FB90812195425B9A4874235
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_6&quot;&#39;
   NodePosX=-1696
   NodePosY=608
   bCanRenameNode=False
   NodeGuid=F52FEDC6487DB0C1177EC1BA785A8A8E
   CustomProperties Pin (PinId=38C08F274CFB80601189BC9E5E7B70C1,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_16 27827709451E1D64C2A35D92A7D47436,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=4A8A6998424A306B781E2DBC7F8C0353,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_17 063936EF44049AB111518CA5C7D6F269,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_19&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionAdd Name=&quot;MaterialExpressionAdd_3&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionAdd_3&quot;
      A=(Expression=/Script/Engine.MaterialExpressionComponentMask&#39;&quot;MaterialGraphNode_6.MaterialExpressionComponentMask_0&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialGraphNode_17.MaterialExpressionMultiply_4&quot;&#39;)
      MaterialExpressionEditorX=-1472
      MaterialExpressionEditorY=512
      MaterialExpressionGuid=730129AD4697E3AFB45647BA6713D5BA
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionAdd&#39;&quot;MaterialExpressionAdd_3&quot;&#39;
   NodePosX=-1472
   NodePosY=512
   NodeGuid=6A10ABE14D574AFC12264B8E4416061C
   CustomProperties Pin (PinId=22361A0F49AF4D8E3E7D72A85C2E08B2,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_6 A20AB4CF4433668C095BA9A9BC7249C0,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=78F0141F4FB99C477EA2EB89FA5CB227,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_17 6441763B490AD4D5DA218C86E20F8A47,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=DFBDAA7A4723D6030E11B4936A962959,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_24 C2C3D75640B7F86B895A34B16E434A70,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_20&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFrac Name=&quot;MaterialExpressionFrac_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFrac_0&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionAdd&#39;&quot;MaterialGraphNode_24.MaterialExpressionAdd_0&quot;&#39;)
      MaterialExpressionEditorX=-1184
      MaterialExpressionEditorY=592
      MaterialExpressionGuid=D85222E34673F8B5901E7090EE4129F8
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
      bCollapsed=False
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFrac&#39;&quot;MaterialExpressionFrac_0&quot;&#39;
   NodePosX=-1184
   NodePosY=592
   NodeGuid=3E0971A74027FD78A59CF3A7DC1D5200
   CustomProperties Pin (PinId=95488264471682FD8AB90C82BFFF289F,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_24 5E527C384FEEAB3B3D9A58B0513B2CB9,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=0C4A48824D8B8AF46A0F29A658B7B576,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_10 5A7AB7AE4D6A0A7B53CF3BB0FA1FCD31,MaterialGraphNode_Knot_3 3485181F4601F8557E637AB9137EF7BD,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_21&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMultiply Name=&quot;MaterialExpressionMultiply_2&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMultiply_2&quot;
      A=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_3.MaterialExpressionFunctionInput_0&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionOneMinus&#39;&quot;MaterialGraphNode_22.MaterialExpressionOneMinus_0&quot;&#39;)
      MaterialExpressionEditorX=-320
      MaterialExpressionEditorY=288
      MaterialExpressionGuid=4B354EAB417B8B2616B02CB4AF52E804
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
      bCollapsed=False
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialExpressionMultiply_2&quot;&#39;
   NodePosX=-320
   NodePosY=288
   NodeGuid=ADBE3B33441A9B3FCAAE56B82D8E5699
   CustomProperties Pin (PinId=7FE738754A26B3768B54BABD175E7F4C,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_3 70EBC6794FA08D7AA5DA5888EE1C90C7,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=12902CBA47F5F8535E49059692B78EB5,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_22 1F5BB48B4E2C26D034B5B4BA02D3E59A,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=789126B94162C3545E5039956801C939,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_23 FA70A0AB45DA68A0713078843ACE4163,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_22&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionOneMinus Name=&quot;MaterialExpressionOneMinus_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionOneMinus_0&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialGraphNode_8.MaterialExpressionMultiply_1&quot;&#39;)
      MaterialExpressionEditorX=-448
      MaterialExpressionEditorY=320
      MaterialExpressionGuid=C244294D425169F9B1E104873BFFC04C
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionOneMinus&#39;&quot;MaterialExpressionOneMinus_0&quot;&#39;
   NodePosX=-448
   NodePosY=320
   NodeGuid=630F95EA4D6AE2A0E37EA4A1C4BCDF45
   CustomProperties Pin (PinId=AC6853BE44C740B3782C4FB447DFD162,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_8 C5522B1F40C3EB5EF85FD8A03FA18B1F,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=1F5BB48B4E2C26D034B5B4BA02D3E59A,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_21 12902CBA47F5F8535E49059692B78EB5,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_23&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionLinearInterpolate Name=&quot;MaterialExpressionLinearInterpolate_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionLinearInterpolate_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_0.MaterialExpressionReroute_0&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialGraphNode_21.MaterialExpressionMultiply_2&quot;&#39;)
      Alpha=(Expression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialGraphNode_2.MaterialExpressionScalarParameter_2&quot;&#39;)
      MaterialExpressionEditorX=-112
      MaterialExpressionEditorY=288
      MaterialExpressionGuid=017FD57D4CD896854B27C285C57A2BBF
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionLinearInterpolate&#39;&quot;MaterialExpressionLinearInterpolate_0&quot;&#39;
   NodePosX=-112
   NodePosY=288
   NodeGuid=BC71134E4F2BDDDA42641888D11BC8D5
   CustomProperties Pin (PinId=880787CB44F0ADC931BAEE9D984411F1,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_Knot_0 1771C73C43AA6135759C60BCFC05535B,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=FA70A0AB45DA68A0713078843ACE4163,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_21 789126B94162C3545E5039956801C939,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A6ADADE94091A92D9D642C88E640EDE7,PinName=&quot;Alpha&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.5&quot;,LinkedTo=(MaterialGraphNode_2 E082211E47D3DD13C08196AC5D346313,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=FE8119444B59927E5DD6A2A908AD94D1,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_4 18378D5A46A8EA4A57838C8A206175C2,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_6&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_5&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_5&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_0.MaterialExpressionReroute_0&quot;&#39;)
      MaterialExpressionEditorX=-16
      MaterialExpressionEditorY=240
      MaterialExpressionGuid=6FB84BEE4308FA840E61E0B88BD2F8FD
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_5&quot;&#39;
   NodePosX=-16
   NodePosY=240
   bCanRenameNode=False
   NodeGuid=E79ACD3145CAD29B01EE1F97A7459727
   CustomProperties Pin (PinId=9AF4748D4EA2264BD37BAFB344573001,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_0 1771C73C43AA6135759C60BCFC05535B,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=AD45020544BBF129D74068813A4359F8,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_4 BD5AD01F4648EC7DE3E9F19605D4F4EC,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_24&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionAdd Name=&quot;MaterialExpressionAdd_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionAdd_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionAdd&#39;&quot;MaterialGraphNode_19.MaterialExpressionAdd_3&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_25.MaterialExpressionFunctionInput_1&quot;&#39;)
      MaterialExpressionEditorX=-1328
      MaterialExpressionEditorY=592
      MaterialExpressionGuid=5790E2A748AE1DEDB7AA05B8E6324022
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionAdd&#39;&quot;MaterialExpressionAdd_0&quot;&#39;
   NodePosX=-1328
   NodePosY=592
   NodeGuid=8EDE08F049D495F07EE9CAABD009CD1C
   CustomProperties Pin (PinId=C2C3D75640B7F86B895A34B16E434A70,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_19 DFBDAA7A4723D6030E11B4936A962959,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=540474FA417AD1E129DE3E8D42497B32,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_25 5D91370244480A39CC7A48B2C9023808,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=5E527C384FEEAB3B3D9A58B0513B2CB9,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_20 95488264471682FD8AB90C82BFFF289F,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_25&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionInput Name=&quot;MaterialExpressionFunctionInput_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionInput_1&quot;
      InputName=&quot;BorderOffset&quot;
      Description=&quot;ボーダーオフセット&quot;
      Id=8FB0B499464A9C991ACBC4B8B3BE93C3
      InputType=FunctionInput_Scalar
      bUsePreviewValueAsDefault=True
      SortPriority=1
      MaterialExpressionEditorX=-1584
      MaterialExpressionEditorY=768
      MaterialExpressionGuid=8E9AB2354D100E466F5E00B3A3D0AB67
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
      Desc=&quot;ボーダーオフセット&quot;
      bCommentBubbleVisible=True
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialExpressionFunctionInput_1&quot;&#39;
   NodePosX=-1584
   NodePosY=768
   bCommentBubbleVisible=True
   NodeComment=&quot;ボーダーオフセット&quot;
   NodeGuid=01A34867405CB49A9F9586857E6FAD6E
   CustomProperties Pin (PinId=FE4BE10B4DD1BDFAEC2F06BA90804635,PinName=&quot;Preview&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=5D91370244480A39CC7A48B2C9023808,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_24 540474FA417AD1E129DE3E8D42497B32,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Comment Name=&quot;MaterialGraphNode_Comment_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionComment Name=&quot;MaterialExpressionComment_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionComment_0&quot;
      SizeX=2400
      SizeY=736
      Text=&quot;ボーダーの合成&quot;
      MaterialExpressionEditorX=-1920
      MaterialExpressionEditorY=128
      MaterialExpressionGuid=1282CAC74D9DC1C7B4AB69806446CB8F
      Function=/Script/Engine.MaterialFunction&#39;&quot;/Engine/Transient.MF_GlitchBorder&quot;&#39;
   End Object
   MaterialExpressionComment=/Script/Engine.MaterialExpressionComment&#39;&quot;MaterialExpressionComment_0&quot;&#39;
   NodePosX=-1920
   NodePosY=128
   NodeWidth=2400
   NodeHeight=736
   NodeComment=&quot;ボーダーの合成&quot;
   NodeGuid=D7DBE058447434D0993C2AB1B9722BEC
End Object</code></pre></div>
</div></div>



<h3 class="wp-block-heading"><span id="toc3">ノイズの合成</span></h3>



<p>NormalMapを使ってNoiseテクスチャを揺らしてアニメーション</p>



<figure class="wp-block-image size-large"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchNoise_001.png"><img loading="lazy" decoding="async" width="1024" height="295" src="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchNoise_001-1024x295.png" alt="" class="wp-image-636" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchNoise_001-1024x295.png 1024w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchNoise_001-300x86.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchNoise_001-768x221.png 768w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchNoise_001-1536x443.png 1536w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchNoise_001-2048x590.png 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><figcaption class="wp-element-caption">MF_GlitchNoise</figcaption></figure>



<p><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/02/T_Noise_001_256x256.png" data-type="attachment" data-id="590" target="_blank">T_Noise_001_256x256.png</a><br><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/02/T_NormalNoise_001_256x256.png" data-type="attachment" data-id="591" target="_blank">T_NormalNoise_001_256x256.png</a></p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchNoise_003.png"><img loading="lazy" decoding="async" width="614" height="371" src="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchNoise_003.png" alt="" class="wp-image-582" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchNoise_003.png 614w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchNoise_003-300x181.png 300w" sizes="(max-width: 614px) 100vw, 614px" /></a></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-full"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchNoise_002.png"><img loading="lazy" decoding="async" width="842" height="374" src="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchNoise_002.png" alt="" class="wp-image-583" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchNoise_002.png 842w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchNoise_002-300x133.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchNoise_002-768x341.png 768w" sizes="(max-width: 842px) 100vw, 842px" /></a></figure>
</div>
</div>



<p>Textureは「<a rel="noopener" target="_blank" href="https://www.materialmaker.org/">Material Maker</a>」で適当に作成しています</p>



<div class="wp-block-cocoon-blocks-toggle-box-1 toggle-wrap toggle-box block-box"><input id="toggle-checkbox-20230219200930" class="toggle-checkbox" type="checkbox"/><label class="toggle-button" for="toggle-checkbox-20230219200930">コピペ用コード(5.1.1)</label><div class="toggle-content">
<div class="hcb_wrap"><pre class="prism off-numbers lang-plain" data-file="MF_GlitchNoise"><code>Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionOutput Name=&quot;MaterialExpressionFunctionOutput_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionOutput_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionStaticSwitchParameter&#39;&quot;MaterialGraphNode_10.MaterialExpressionStaticSwitchParameter_0&quot;&#39;)
      bLastPreviewed=True
      Id=340554C34ED1C1448299248FC8A6D6B2
      MaterialExpressionEditorX=-288
      MaterialExpressionEditorY=208
      MaterialExpressionGuid=DF9114D14E9CA043B513F3944B054F07
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_2&quot;&#39;
      bRealtimePreview=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionOutput&#39;&quot;MaterialExpressionFunctionOutput_0&quot;&#39;
   NodePosX=-288
   NodePosY=208
   NodeGuid=D463F0D1438081FCFDC64AB24408D47C
   CustomProperties Pin (PinId=308AA76341C81F9726FAD1BDB699C037,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_10 2A92D1314E5B79585D7AB4B2D3BCAD4E,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=450154274AD2AD1571DCE3A1CE4BE4F0,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_1&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMultiply Name=&quot;MaterialExpressionMultiply_4&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMultiply_4&quot;
      A=(Expression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialGraphNode_5.MaterialExpressionTextureCoordinate_0&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialGraphNode_7.MaterialExpressionScalarParameter_0&quot;&#39;)
      MaterialExpressionEditorX=-1408
      MaterialExpressionEditorY=128
      MaterialExpressionGuid=6292C25040E441432AE08A8F81A153D7
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_2&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialExpressionMultiply_4&quot;&#39;
   NodePosX=-1408
   NodePosY=128
   NodeGuid=8E1134F64E4AFC6A11AD04A8E6A61E7D
   CustomProperties Pin (PinId=AF3058DF47C33EE67388F7A3485BF0D1,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_5 0AAA92464C212B2F1343D880CBFACFC7,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=DCAE50B14FB55350863098A779590BAF,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_7 7AC21FB342E35C2E65DF81891B0F5BA5,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A2F4B82848FC4024311EB7B0A41AF881,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_6 33426FCC4B40B21DB556B08F0C8A7ECB,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_2&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMultiply Name=&quot;MaterialExpressionMultiply_3&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMultiply_3&quot;
      A=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_9.MaterialExpressionFunctionInput_0&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionTextureSample&#39;&quot;MaterialGraphNode_18.MaterialExpressionTextureSample_2&quot;&#39;,OutputIndex=1,Mask=1,MaskR=1)
      MaterialExpressionEditorX=-880
      MaterialExpressionEditorY=240
      MaterialExpressionGuid=50E5FCCA4D8DE4CD8EDADA9886BBD075
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_2&quot;&#39;
      bCollapsed=False
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialExpressionMultiply_3&quot;&#39;
   NodePosX=-880
   NodePosY=240
   NodeGuid=31F8B0A345F591FB435A928D4D8BB386
   CustomProperties Pin (PinId=52919B2E4F4886A29A5F2FB583032629,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_9 8ED73A7E47FC10D10B94B69CAE9E366B,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=2B8356E74267F78D3C2434A477C58417,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_18 EFED48AA428E6D31533A9487F0EB38A8,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=4F4D8A454685F8136EB8EB8314E9DCAB,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_3 CD8BFF1340ACCDCE210FCFB6E77E398E,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_3&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionLinearInterpolate Name=&quot;MaterialExpressionLinearInterpolate_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionLinearInterpolate_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_0.MaterialExpressionReroute_0&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialGraphNode_2.MaterialExpressionMultiply_3&quot;&#39;)
      Alpha=(Expression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialGraphNode_8.MaterialExpressionScalarParameter_1&quot;&#39;)
      ConstAlpha=1.000000
      MaterialExpressionEditorX=-672
      MaterialExpressionEditorY=240
      MaterialExpressionGuid=0E7ACA03448A3787CB64D1850E908ACA
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_2&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionLinearInterpolate&#39;&quot;MaterialExpressionLinearInterpolate_0&quot;&#39;
   NodePosX=-672
   NodePosY=240
   NodeGuid=F2ACC8304FEADCEF4F95A9A25AE136E1
   CustomProperties Pin (PinId=57EB14DB48B756C380116BAE0CC31F17,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_Knot_0 307D4B8A493B6B94AB8443AAF3102210,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=CD8BFF1340ACCDCE210FCFB6E77E398E,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_2 4F4D8A454685F8136EB8EB8314E9DCAB,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=3E939E8144921F41B6C147ADA12F74AB,PinName=&quot;Alpha&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_8 F674144948968698833355A1058E92E0,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=D8EBE00844748E6C546943B7ACD9BBF5,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_10 A02BCCD44BE0D3C504A278AAD83D7997,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_4&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionAppendVector Name=&quot;MaterialExpressionAppendVector_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionAppendVector_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionTextureSample&#39;&quot;MaterialGraphNode_17.MaterialExpressionTextureSample_0&quot;&#39;,OutputIndex=1,Mask=1,MaskR=1)
      B=(Expression=/Script/Engine.MaterialExpressionTextureSample&#39;&quot;MaterialGraphNode_17.MaterialExpressionTextureSample_0&quot;&#39;,OutputIndex=2,Mask=1,MaskG=1)
      MaterialExpressionEditorX=-1408
      MaterialExpressionEditorY=352
      MaterialExpressionGuid=BA684D024D59D73D3F630188A30175BE
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_2&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionAppendVector&#39;&quot;MaterialExpressionAppendVector_0&quot;&#39;
   NodePosX=-1408
   NodePosY=352
   NodeGuid=F814E75A408B77FD3011DC81CD7AC5BC
   CustomProperties Pin (PinId=921426AC430038A0C9B0F18F724096C1,PinName=&quot;A&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_17 6787BD5D4A8AE84D0049F1A4EF19C3C3,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=243B4A2E47575F458B7F40A404D46E65,PinName=&quot;B&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_17 E3D276444655566FC5E95AA1A5E99C86,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=3705959742DFC90B318849AE8F46E49F,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_6 1910D5A74CDBF8EF34B75B8DADC4E762,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_5&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTextureCoordinate Name=&quot;MaterialExpressionTextureCoordinate_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTextureCoordinate_0&quot;
      MaterialExpressionEditorX=-1648
      MaterialExpressionEditorY=64
      MaterialExpressionGuid=4942EAA540422E1C71C7FCB1A8594AB8
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_2&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialExpressionTextureCoordinate_0&quot;&#39;
   NodePosX=-1648
   NodePosY=64
   AdvancedPinDisplay=Hidden
   NodeGuid=FDE990EE4F0D5AE9C1F1199712A459D4
   CustomProperties Pin (PinId=AD99E1004FCD55F79FA2BD9A1F968825,PinName=&quot;Coordinate Index&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;int&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=F3C1275B4D0B71E3B289888FC07D4424,PinName=&quot;UTiling&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=573A1396483E5B9C1B81B188BF0168D7,PinName=&quot;VTiling&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=BC72077046266FC76859EE9D0EA2BB57,PinName=&quot;Un Mirror U&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=509A0B574D67124F32A3408F25D1C053,PinName=&quot;Un Mirror V&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=0AAA92464C212B2F1343D880CBFACFC7,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_1 AF3058DF47C33EE67388F7A3485BF0D1,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_6&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionAdd Name=&quot;MaterialExpressionAdd_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionAdd_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialGraphNode_1.MaterialExpressionMultiply_4&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionAppendVector&#39;&quot;MaterialGraphNode_4.MaterialExpressionAppendVector_0&quot;&#39;)
      MaterialExpressionEditorX=-1264
      MaterialExpressionEditorY=256
      MaterialExpressionGuid=C2CA3BF8440AF841A1C950B234D53AB9
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_2&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionAdd&#39;&quot;MaterialExpressionAdd_0&quot;&#39;
   NodePosX=-1264
   NodePosY=256
   NodeGuid=446159D74B05E0E154E1B2A16F4138D6
   CustomProperties Pin (PinId=33426FCC4B40B21DB556B08F0C8A7ECB,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_1 A2F4B82848FC4024311EB7B0A41AF881,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=1910D5A74CDBF8EF34B75B8DADC4E762,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_4 3705959742DFC90B318849AE8F46E49F,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=E78020594223E5DF00074688C96E2A8F,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_18 BCF6CFD14A5C217BF4D054981E77F3FD,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_7&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionScalarParameter Name=&quot;MaterialExpressionScalarParameter_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionScalarParameter_0&quot;
      DefaultValue=0.500000
      SliderMin=0.100000
      SliderMax=2.000000
      ParameterName=&quot;NoiseScale&quot;
      ExpressionGUID=DDE844E54507D38048F189870487DBCF
      Group=&quot;82.Glitch Noise&quot;
      SortPriority=1
      MaterialExpressionEditorX=-1632
      MaterialExpressionEditorY=208
      MaterialExpressionGuid=D030F94646D7CF3E71A415A79499FF79
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_2&quot;&#39;
      Desc=&quot;ノイズのスケール&quot;
      bCommentBubbleVisible=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialExpressionScalarParameter_0&quot;&#39;
   NodePosX=-1632
   NodePosY=208
   bCommentBubbleVisible=True
   bCanRenameNode=True
   NodeComment=&quot;ノイズのスケール&quot;
   NodeGuid=80BD10E04EBDC43306D48B8B22369D88
   CustomProperties Pin (PinId=231B471347A1B64ADA277BBC6E088F60,PinName=&quot;Default Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.5&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=7AC21FB342E35C2E65DF81891B0F5BA5,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_1 DCAE50B14FB55350863098A779590BAF,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_8&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionScalarParameter Name=&quot;MaterialExpressionScalarParameter_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionScalarParameter_1&quot;
      DefaultValue=0.600000
      SliderMax=1.000000
      ParameterName=&quot;NoiseAlpha&quot;
      ExpressionGUID=9785F48641C730ECA5EA8AB22A528648
      Group=&quot;82.Glitch Noise&quot;
      SortPriority=2
      MaterialExpressionEditorX=-880
      MaterialExpressionEditorY=480
      MaterialExpressionGuid=B85DC8F44E706DE08D8EBB8E4A496AE6
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_2&quot;&#39;
      Desc=&quot;ノイズの透明度&quot;
      bCommentBubbleVisible=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialExpressionScalarParameter_1&quot;&#39;
   NodePosX=-880
   NodePosY=480
   bCommentBubbleVisible=True
   bCanRenameNode=True
   NodeComment=&quot;ノイズの透明度&quot;
   NodeGuid=7C6817154677866C5774CF8A791D19CE
   CustomProperties Pin (PinId=3A6BA7564CA8DE42C06F948921235633,PinName=&quot;Default Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.6&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=F674144948968698833355A1058E92E0,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_3 3E939E8144921F41B6C147ADA12F74AB,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_9&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionInput Name=&quot;MaterialExpressionFunctionInput_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionInput_0&quot;
      InputName=&quot;Base Color&quot;
      Id=28212B454094CDA2BFBB759557026007
      PreviewValue=(X=0.500000,Y=0.500000,Z=0.500000,W=1.000000)
      MaterialExpressionEditorX=-1136
      MaterialExpressionEditorY=144
      MaterialExpressionGuid=10F0B80547EF4BC491DE77B0FEAFE751
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_2&quot;&#39;
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialExpressionFunctionInput_0&quot;&#39;
   NodePosX=-1136
   NodePosY=144
   NodeGuid=FF75C3344B60FF830FFD0CB7C02F5827
   CustomProperties Pin (PinId=6E5E072E42CE060494AA12AB786F952B,PinName=&quot;Preview&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=8ED73A7E47FC10D10B94B69CAE9E366B,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_2 52919B2E4F4886A29A5F2FB583032629,MaterialGraphNode_Knot_0 B5076885405D5DA9E370049581FD2E8C,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_0&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_9.MaterialExpressionFunctionInput_0&quot;&#39;)
      MaterialExpressionEditorX=-768
      MaterialExpressionEditorY=176
      MaterialExpressionGuid=CA622DBA48A8CD33030845BFDDDB92D1
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_2&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_0&quot;&#39;
   NodePosX=-768
   NodePosY=176
   bCanRenameNode=False
   NodeGuid=FF81880B4CD3B9D512EDEEBCC03BC22D
   CustomProperties Pin (PinId=B5076885405D5DA9E370049581FD2E8C,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_9 8ED73A7E47FC10D10B94B69CAE9E366B,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=307D4B8A493B6B94AB8443AAF3102210,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_3 57EB14DB48B756C380116BAE0CC31F17,MaterialGraphNode_Knot_1 D511EFB8404C3C2211DA88B6FD5755F4,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_10&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionStaticSwitchParameter Name=&quot;MaterialExpressionStaticSwitchParameter_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionStaticSwitchParameter_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionLinearInterpolate&#39;&quot;MaterialGraphNode_3.MaterialExpressionLinearInterpolate_0&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_1.MaterialExpressionReroute_1&quot;&#39;)
      DefaultValue=True
      ParameterName=&quot;DrawNoise&quot;
      ExpressionGUID=21420F904F95496B5C7A41A8745E7BBE
      Group=&quot;82.Glitch Noise&quot;
      SortPriority=0
      MaterialExpressionEditorX=-512
      MaterialExpressionEditorY=224
      MaterialExpressionGuid=CD3BE1E649AA1F4188A7DB89DDAF77AB
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_2&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionStaticSwitchParameter&#39;&quot;MaterialExpressionStaticSwitchParameter_0&quot;&#39;
   NodePosX=-512
   NodePosY=224
   bCanRenameNode=True
   NodeGuid=82844AE8424E450FAC656696EFE9A43C
   CustomProperties Pin (PinId=A02BCCD44BE0D3C504A278AAD83D7997,PinName=&quot;True&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_3 D8EBE00844748E6C546943B7ACD9BBF5,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=7E3229764F13C55EEDBFB69356D1766D,PinName=&quot;False&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_1 A1E382F349A37774ABD064884F2C5974,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=613B7DE644CC5103A10C94AC62FE5E71,PinName=&quot;Default Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;true&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=2A92D1314E5B79585D7AB4B2D3BCAD4E,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_0 308AA76341C81F9726FAD1BDB699C037,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_1&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_1&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_0.MaterialExpressionReroute_0&quot;&#39;)
      MaterialExpressionEditorX=-608
      MaterialExpressionEditorY=176
      MaterialExpressionGuid=48A7C9DB4C7104DB0E91ACB5094F27E7
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_2&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_1&quot;&#39;
   NodePosX=-608
   NodePosY=176
   bCanRenameNode=False
   NodeGuid=2A24A10E4F8B9D02A88F55B5EFBAF622
   CustomProperties Pin (PinId=D511EFB8404C3C2211DA88B6FD5755F4,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_0 307D4B8A493B6B94AB8443AAF3102210,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A1E382F349A37774ABD064884F2C5974,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_10 7E3229764F13C55EEDBFB69356D1766D,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_11&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTime Name=&quot;MaterialExpressionTime_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTime_0&quot;
      MaterialExpressionEditorX=-2384
      MaterialExpressionEditorY=336
      MaterialExpressionGuid=E6A323A84F5A62701378058706F589F4
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_2&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTime&#39;&quot;MaterialExpressionTime_0&quot;&#39;
   NodePosX=-2384
   NodePosY=336
   NodeGuid=EDE22D13422CE55181A9F1A63129D380
   CustomProperties Pin (PinId=9E53D1FC4F1393BA6ACC449EC02A76BC,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_15 F582966048D0FF5A92EA328D3BCACB41,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_12&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionDivide Name=&quot;MaterialExpressionDivide_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionDivide_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionFloor&#39;&quot;MaterialGraphNode_14.MaterialExpressionFloor_1&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_2.MaterialExpressionReroute_2&quot;&#39;)
      ConstB=11111.000000
      MaterialExpressionEditorX=-1792
      MaterialExpressionEditorY=352
      MaterialExpressionGuid=645CDE104B3C4734BA126897932FA45B
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_2&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionDivide&#39;&quot;MaterialExpressionDivide_0&quot;&#39;
   NodePosX=-1792
   NodePosY=352
   NodeGuid=442CB03D401F44D433BAF6BABC581196
   CustomProperties Pin (PinId=689B9AAD412D4C09D26EBF9FA363FE98,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_14 02B15B67439D5A21F41975AC0FE050F0,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=87A3923744E66AFD5B29098A204AD0A5,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;11111.0&quot;,LinkedTo=(MaterialGraphNode_Knot_2 B1A74C994AAA0294D0A2958C2529D3F1,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=D9796EC44499DC2802032BAE18905504,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_17 6738F8364E8C1CB3A2C8038A0A9E90A9,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_13&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMultiply Name=&quot;MaterialExpressionMultiply_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMultiply_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionFrac&#39;&quot;MaterialGraphNode_15.MaterialExpressionFrac_0&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialGraphNode_16.MaterialExpressionScalarParameter_2&quot;&#39;)
      ConstB=15.000000
      MaterialExpressionEditorX=-2064
      MaterialExpressionEditorY=352
      MaterialExpressionGuid=C5B51ACC4054CFBF4097379C52533DDA
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_2&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialExpressionMultiply_0&quot;&#39;
   NodePosX=-2064
   NodePosY=352
   NodeGuid=26AEB59A4DFCE09D5005B287BC2E1557
   CustomProperties Pin (PinId=3A65EDFE48D3A4A041F759A065884339,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_15 78BF9B7C410301A32519F2A9FB156197,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=10110CC749BEB3CF6FFF168BFDAFED37,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;15.0&quot;,LinkedTo=(MaterialGraphNode_16 48D97CE949802706E1ADB0B36A2D78E4,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A8A766A6466FB91EFB5090BFE1560EDF,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_14 58CEB4DC4B57C1EB7C70BFACE9A9AD2D,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_14&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFloor Name=&quot;MaterialExpressionFloor_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFloor_1&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialGraphNode_13.MaterialExpressionMultiply_0&quot;&#39;)
      MaterialExpressionEditorX=-1920
      MaterialExpressionEditorY=352
      MaterialExpressionGuid=E6B69BBB474C9824F8247290D54C392B
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_2&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFloor&#39;&quot;MaterialExpressionFloor_1&quot;&#39;
   NodePosX=-1920
   NodePosY=352
   NodeGuid=FB109A754058897B92C482864C6FEC4A
   CustomProperties Pin (PinId=58CEB4DC4B57C1EB7C70BFACE9A9AD2D,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_13 A8A766A6466FB91EFB5090BFE1560EDF,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=02B15B67439D5A21F41975AC0FE050F0,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_12 689B9AAD412D4C09D26EBF9FA363FE98,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_15&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFrac Name=&quot;MaterialExpressionFrac_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFrac_0&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionTime&#39;&quot;MaterialGraphNode_11.MaterialExpressionTime_0&quot;&#39;)
      MaterialExpressionEditorX=-2192
      MaterialExpressionEditorY=352
      MaterialExpressionGuid=FBD7DEF045B6B17C640CEFA96B5AC2CC
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_2&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFrac&#39;&quot;MaterialExpressionFrac_0&quot;&#39;
   NodePosX=-2192
   NodePosY=352
   NodeGuid=C43773EF4EF35A22F20A19973EE6617A
   CustomProperties Pin (PinId=F582966048D0FF5A92EA328D3BCACB41,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_11 9E53D1FC4F1393BA6ACC449EC02A76BC,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=78BF9B7C410301A32519F2A9FB156197,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_13 3A65EDFE48D3A4A041F759A065884339,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_16&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionScalarParameter Name=&quot;MaterialExpressionScalarParameter_2&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionScalarParameter_2&quot;
      DefaultValue=30.000000
      SliderMin=5.000000
      SliderMax=120.000000
      ParameterName=&quot;NoiseFPS&quot;
      ExpressionGUID=233D1AA24E649AAAD5988A879AF3805C
      Group=&quot;82.Glitch Noise&quot;
      SortPriority=3
      MaterialExpressionEditorX=-2304
      MaterialExpressionEditorY=448
      MaterialExpressionGuid=5DE38C414C60FF6093896593A27CAE54
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_2&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialExpressionScalarParameter_2&quot;&#39;
   NodePosX=-2304
   NodePosY=448
   bCanRenameNode=True
   NodeGuid=F03A9E034C12AE4D545DA9BDD800AF1A
   CustomProperties Pin (PinId=B3D575CF467A29307AF48CACAF1D076D,PinName=&quot;Default Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;30.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=48D97CE949802706E1ADB0B36A2D78E4,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_13 10110CC749BEB3CF6FFF168BFDAFED37,MaterialGraphNode_Knot_2 BB234DDA453141E61AC1FA9F65532485,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_2&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_2&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_2&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialGraphNode_16.MaterialExpressionScalarParameter_2&quot;&#39;)
      MaterialExpressionEditorX=-1872
      MaterialExpressionEditorY=496
      MaterialExpressionGuid=4CE4BF8942931B5EA53392A1167CBA97
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_2&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_2&quot;&#39;
   NodePosX=-1872
   NodePosY=496
   bCanRenameNode=False
   NodeGuid=9DDF614F4127CD141CA9B6A17478B101
   CustomProperties Pin (PinId=BB234DDA453141E61AC1FA9F65532485,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_16 48D97CE949802706E1ADB0B36A2D78E4,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=B1A74C994AAA0294D0A2958C2529D3F1,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_12 87A3923744E66AFD5B29098A204AD0A5,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_17&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTextureSample Name=&quot;MaterialExpressionTextureSample_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTextureSample_0&quot;
      Coordinates=(Expression=/Script/Engine.MaterialExpressionDivide&#39;&quot;MaterialGraphNode_12.MaterialExpressionDivide_0&quot;&#39;)
      Texture=/Script/Engine.Texture2D&#39;&quot;/Game/Developers/yoshida/Materials/NoiseTextures/T_NormalNoise_001_256x256.T_NormalNoise_001_256x256&quot;&#39;
      SamplerType=SAMPLERTYPE_Normal
      MaterialExpressionEditorX=-1664
      MaterialExpressionEditorY=352
      MaterialExpressionGuid=BBA08A9A47938B5A793B50916152B8E1
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_2&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTextureSample&#39;&quot;MaterialExpressionTextureSample_0&quot;&#39;
   NodePosX=-1664
   NodePosY=352
   AdvancedPinDisplay=Hidden
   NodeGuid=ED7671A34E79AA72D3C6B998B2B659F8
   CustomProperties Pin (PinId=6738F8364E8C1CB3A2C8038A0A9E90A9,PinName=&quot;UVs&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0&quot;,LinkedTo=(MaterialGraphNode_12 D9796EC44499DC2802032BAE18905504,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=00CC3DB842EE035B8B2B258BC8E9E3E6,PinName=&quot;Tex&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A6B06C244C97CBDEE1B150BC87F073E8,PinName=&quot;Apply View MipBias&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=5E1139C2480B7CFB3C6404AE229EF55B,PinName=&quot;MipValueMode&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.ETextureMipValueMode&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;None (use computed mip level)&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=F17DEF7846524C51ADFED2AA3ECDD3CE,PinName=&quot;Sampler Source&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.ESamplerSourceMode&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;From texture asset&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=26072BA844271D4EDC9AFE8921025EA5,PinName=&quot;Sampler Type&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.EMaterialSamplerType&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;Normal&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=FBF673E34128280F308ADB9E984BAB49,PinName=&quot;RGB&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=6787BD5D4A8AE84D0049F1A4EF19C3C3,PinName=&quot;R&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_4 921426AC430038A0C9B0F18F724096C1,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=E3D276444655566FC5E95AA1A5E99C86,PinName=&quot;G&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;green&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_4 243B4A2E47575F458B7F40A404D46E65,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=462AB5BD465B17A83898F4A8F321E1AA,PinName=&quot;B&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;blue&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=47B3ED2849E3687720DCEF8DB8F7CD09,PinName=&quot;A&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;alpha&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=06DF6BC94B4FFFAA4B7CF4A7C52DC7CE,PinName=&quot;RGBA&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;rgba&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_18&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTextureSample Name=&quot;MaterialExpressionTextureSample_2&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTextureSample_2&quot;
      Coordinates=(Expression=/Script/Engine.MaterialExpressionAdd&#39;&quot;MaterialGraphNode_6.MaterialExpressionAdd_0&quot;&#39;)
      Texture=/Script/Engine.Texture2D&#39;&quot;/Game/Developers/yoshida/Materials/NoiseTextures/T_Noise_001_256x256.T_Noise_001_256x256&quot;&#39;
      SamplerType=SAMPLERTYPE_Alpha
      MaterialExpressionEditorX=-1136
      MaterialExpressionEditorY=256
      MaterialExpressionGuid=723B151C40C3242ABAA7CE9F3DBC3AFD
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_2&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTextureSample&#39;&quot;MaterialExpressionTextureSample_2&quot;&#39;
   NodePosX=-1136
   NodePosY=256
   AdvancedPinDisplay=Hidden
   NodeGuid=73B17F9345C435501109BF9CDF07D2A6
   CustomProperties Pin (PinId=BCF6CFD14A5C217BF4D054981E77F3FD,PinName=&quot;UVs&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0&quot;,LinkedTo=(MaterialGraphNode_6 E78020594223E5DF00074688C96E2A8F,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A8B80CD540337394CFF92CAD965BF8F5,PinName=&quot;Tex&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=CD0E9C7044D8A652FF86E1BEFB37D156,PinName=&quot;Apply View MipBias&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=4A9D5A79409039FFF4009BAA0B89337E,PinName=&quot;MipValueMode&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.ETextureMipValueMode&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;None (use computed mip level)&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=5CD1E7A04894D4F2CF251EB66C2029FA,PinName=&quot;Sampler Source&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.ESamplerSourceMode&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;From texture asset&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=EF79D31D405BC7E4A7C1F1BC7BFBC520,PinName=&quot;Sampler Type&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.EMaterialSamplerType&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;Alpha&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=8E6AAA264D578E38899CE28B403848F6,PinName=&quot;RGB&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=EFED48AA428E6D31533A9487F0EB38A8,PinName=&quot;R&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_2 2B8356E74267F78D3C2434A477C58417,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=4E75625349E9FCBA8651059627AE3DE9,PinName=&quot;G&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;green&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=F767FC7742F24734092478A2C18AFCCC,PinName=&quot;B&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;blue&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=3156CE2F422B4E9885D26999773E6919,PinName=&quot;A&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;alpha&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=4ACD2E914A7D0BC740D633BC290E1A37,PinName=&quot;RGBA&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;rgba&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Comment Name=&quot;MaterialGraphNode_Comment_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionComment Name=&quot;MaterialExpressionComment_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionComment_0&quot;
      SizeX=2320
      SizeY=640
      Text=&quot;ノイズの合成&quot;
      MaterialExpressionEditorX=-2432
      MaterialExpressionGuid=86ECA71E44B019E0D94BBEBF562595EF
      Function=/Script/Engine.MaterialFunction&#39;&quot;/Engine/Transient.MF_GlitchNoise&quot;&#39;
   End Object
   MaterialExpressionComment=/Script/Engine.MaterialExpressionComment&#39;&quot;MaterialExpressionComment_0&quot;&#39;
   NodePosX=-2432
   NodeWidth=2320
   NodeHeight=640
   NodeComment=&quot;ノイズの合成&quot;
   NodeGuid=1C5547B44946448EAB9C1EAE0FB5B882
End Object</code></pre></div>
</div></div>



<h3 class="wp-block-heading"><span id="toc4">R, Bのチャンネルシフト</span></h3>



<p>sin波を3つ使いランダムなシフト量を計算</p>



<figure class="wp-block-image size-large"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchChannelShift.png"><img loading="lazy" decoding="async" width="1024" height="324" src="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchChannelShift-1024x324.png" alt="" class="wp-image-616" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchChannelShift-1024x324.png 1024w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchChannelShift-300x95.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchChannelShift-768x243.png 768w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchChannelShift-1536x485.png 1536w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchChannelShift-2048x647.png 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><figcaption class="wp-element-caption">MF_GlitchChannelShift</figcaption></figure>



<div class="wp-block-cocoon-blocks-toggle-box-1 toggle-wrap toggle-box block-box"><input id="toggle-checkbox-20230221001801" class="toggle-checkbox" type="checkbox"/><label class="toggle-button" for="toggle-checkbox-20230221001801">コピペ用コード(5.1.1)</label><div class="toggle-content">
<div class="hcb_wrap"><pre class="prism off-numbers lang-plain" data-file="MF_GlitchChannelShift"><code>Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionOutput Name=&quot;MaterialExpressionFunctionOutput_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionOutput_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionStaticSwitchParameter&#39;&quot;MaterialGraphNode_13.MaterialExpressionStaticSwitchParameter_0&quot;&#39;)
      bLastPreviewed=True
      Id=CFF2296F461403AABF6045964FD16259
      MaterialExpressionEditorX=368
      MaterialExpressionEditorY=448
      MaterialExpressionGuid=C3CAD9FC4A79AFD6B0C4A98D70A9DDF9
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionOutput&#39;&quot;MaterialExpressionFunctionOutput_0&quot;&#39;
   NodePosX=368
   NodePosY=448
   NodeGuid=CCDB01F1483C6D25F93151900066EAB1
   CustomProperties Pin (PinId=B136D3EC4F8315A035644C9CE17F1017,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_13 10B0380E4C0AEA811FEA0EB55855AD6F,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=C2E9DEFC481C2CF15DBB8A98A1C661AB,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_1&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTextureSample Name=&quot;MaterialExpressionTextureSample_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTextureSample_1&quot;
      Coordinates=(Expression=/Script/Engine.MaterialExpressionAdd&#39;&quot;MaterialGraphNode_5.MaterialExpressionAdd_0&quot;&#39;)
      TextureObject=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_12.MaterialExpressionFunctionInput_0&quot;&#39;)
      Texture=/Script/Engine.Texture2D&#39;&quot;/Game/Developers/yoshida/Materials/Samples/Textures/AssetsvilleTown_001.AssetsvilleTown_001&quot;&#39;
      MaterialExpressionEditorX=-304
      MaterialExpressionEditorY=192
      MaterialExpressionGuid=DC8DDB9846CD1F612AF7D9957D3F90DD
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTextureSample&#39;&quot;MaterialExpressionTextureSample_1&quot;&#39;
   NodePosX=-304
   NodePosY=192
   AdvancedPinDisplay=Hidden
   NodeGuid=BB7542504E9766EB7CE3EC9A27E3DC83
   CustomProperties Pin (PinId=953804B9475506F95670919378EF54BB,PinName=&quot;UVs&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0&quot;,LinkedTo=(MaterialGraphNode_5 DBDDC65F443B0E454F9E4E9E8018220A,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=0A53CD1840811C8F50F8A9829DC685E4,PinName=&quot;Tex&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_12 90BA5EA6406B431810F09C88446706D9,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=30BFB90E4D7D74569E0C168FD4AE5A2F,PinName=&quot;Apply View MipBias&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=8D0C39CF4E7F71FB6B5E14BF9F6109EA,PinName=&quot;MipValueMode&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.ETextureMipValueMode&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;None (use computed mip level)&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=17C78F304FC60EBF54717BAC0F80410F,PinName=&quot;Sampler Source&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.ESamplerSourceMode&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;From texture asset&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=9A241D574C7DED6C502668AD0C59C841,PinName=&quot;Sampler Type&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.EMaterialSamplerType&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;Color&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=EFFB71D04594C88FD3788ABB84C9222C,PinName=&quot;RGB&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=DA79914E4BF0203FD41CD1B95FB19ABB,PinName=&quot;R&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_4 E9D89A7F4866B4EDC2991F9CDDE619D9,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=F2DB576E436AA3D28076CB9B2878465F,PinName=&quot;G&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;green&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=53815AA940B07FC01AA583A3CA80CA3D,PinName=&quot;B&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;blue&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A03D9F044C6C6F4B60E7BF9A1CF3D68A,PinName=&quot;A&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;alpha&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=73E068114F2E80B21B88D98277E48D79,PinName=&quot;RGBA&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;rgba&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_2&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTextureSample Name=&quot;MaterialExpressionTextureSample_2&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTextureSample_2&quot;
      Coordinates=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_8.MaterialExpressionReroute_10&quot;&#39;)
      TextureObject=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_12.MaterialExpressionFunctionInput_0&quot;&#39;)
      Texture=/Script/Engine.Texture2D&#39;&quot;/Game/Developers/yoshida/Materials/Samples/Textures/AssetsvilleTown_001.AssetsvilleTown_001&quot;&#39;
      MaterialExpressionEditorX=-304
      MaterialExpressionEditorY=448
      MaterialExpressionGuid=DC8DDB9846CD1F612AF7D9957D3F90DD
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTextureSample&#39;&quot;MaterialExpressionTextureSample_2&quot;&#39;
   NodePosX=-304
   NodePosY=448
   AdvancedPinDisplay=Hidden
   NodeGuid=925F5566414781348C5628AE7305AE1F
   CustomProperties Pin (PinId=CC5327E440B5A192C17602B13479C0B9,PinName=&quot;UVs&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0&quot;,LinkedTo=(MaterialGraphNode_Knot_8 5F40080F4925FC58FEDA26BC7ED01EDB,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=118491E34E3CF8AAC2C084BCFCF408AB,PinName=&quot;Tex&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_12 90BA5EA6406B431810F09C88446706D9,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=9242049448706A938475A99F225F503B,PinName=&quot;Apply View MipBias&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=50396A434535E18E48C2F89A05E0AF48,PinName=&quot;MipValueMode&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.ETextureMipValueMode&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;None (use computed mip level)&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=76C504BC42CA46D8E8784D895803E70F,PinName=&quot;Sampler Source&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.ESamplerSourceMode&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;From texture asset&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=C942527A474CBB168888878F63C2EEDE,PinName=&quot;Sampler Type&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.EMaterialSamplerType&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;Color&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=121182CE436997084657948A60D5CD6B,PinName=&quot;RGB&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_2 560616674C817A0F05FDB08866EC48B8,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=18888903430C936FD231969D018989DA,PinName=&quot;R&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=93EC14DE453FAFCF51FE179E42279CD3,PinName=&quot;G&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;green&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_4 C2428625480962A9556D7098D8F28CEB,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=341C2E3C45F80466A83EC7AC8B251206,PinName=&quot;B&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;blue&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=8C26C0CD4BD317943EEDB59B51196A0B,PinName=&quot;A&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;alpha&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=6E8955A541E98AAFF4B70F90C9A53C5B,PinName=&quot;RGBA&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;rgba&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_3&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTextureSample Name=&quot;MaterialExpressionTextureSample_3&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTextureSample_3&quot;
      Coordinates=(Expression=/Script/Engine.MaterialExpressionAdd&#39;&quot;MaterialGraphNode_9.MaterialExpressionAdd_8&quot;&#39;)
      TextureObject=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_12.MaterialExpressionFunctionInput_0&quot;&#39;)
      Texture=/Script/Engine.Texture2D&#39;&quot;/Game/Developers/yoshida/Materials/Samples/Textures/AssetsvilleTown_001.AssetsvilleTown_001&quot;&#39;
      MaterialExpressionEditorX=-304
      MaterialExpressionEditorY=704
      MaterialExpressionGuid=DC8DDB9846CD1F612AF7D9957D3F90DD
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTextureSample&#39;&quot;MaterialExpressionTextureSample_3&quot;&#39;
   NodePosX=-304
   NodePosY=704
   AdvancedPinDisplay=Hidden
   NodeGuid=682370E84495DC6F27F6F18B0193F70E
   CustomProperties Pin (PinId=0A80509F4731E321A10C85BCEABE10BF,PinName=&quot;UVs&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0&quot;,LinkedTo=(MaterialGraphNode_9 3B1A107E4F26224245EEE08FA730A17F,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=DAFF8C3A4612CC3567FE99ACC2ECCCF9,PinName=&quot;Tex&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_12 90BA5EA6406B431810F09C88446706D9,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=4E7F81C64402FE36BD8DC9A1F233480B,PinName=&quot;Apply View MipBias&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=ACA2C90343DA05BF8C6FC787CE651383,PinName=&quot;MipValueMode&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.ETextureMipValueMode&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;None (use computed mip level)&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=5360C7884B20E51F26E6158E26A6D552,PinName=&quot;Sampler Source&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.ESamplerSourceMode&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;From texture asset&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=3FC52F5E401BD70F4E18DEAF4C390A81,PinName=&quot;Sampler Type&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.EMaterialSamplerType&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;Color&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=51261A5C4269270347862293F0BBA8F4,PinName=&quot;RGB&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=09C5E6904C2D7EDE37A191A6C6ABBC5C,PinName=&quot;R&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=0E746E02468097BCD71666969DA52007,PinName=&quot;G&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;green&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A60701DD426122109BBB979337B469CF,PinName=&quot;B&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;blue&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_4 41D8153240578EB806AF66BE19366D4A,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=33AE03504D4F572755D1F8A3E85D3868,PinName=&quot;A&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;alpha&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=D96007D94902E70E293CED90024EA141,PinName=&quot;RGBA&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;rgba&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_4&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMaterialFunctionCall Name=&quot;MaterialExpressionMaterialFunctionCall_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMaterialFunctionCall_1&quot;
      MaterialFunction=/Script/Engine.MaterialFunction&#39;&quot;/Engine/Functions/Engine_MaterialFunctions02/Utility/MakeFloat3.MakeFloat3&quot;&#39;
      FunctionInputs(0)=(ExpressionInputId=529C1D96441E07EB03A9E59B8A7F67B6,Input=(Expression=/Script/Engine.MaterialExpressionTextureSample&#39;&quot;MaterialGraphNode_1.MaterialExpressionTextureSample_1&quot;&#39;,OutputIndex=1,InputName=&quot;X&quot;,Mask=1,MaskR=1))
      FunctionInputs(1)=(ExpressionInputId=B5BD7D1B494F6928732CCDA1C63D8E15,Input=(Expression=/Script/Engine.MaterialExpressionTextureSample&#39;&quot;MaterialGraphNode_2.MaterialExpressionTextureSample_2&quot;&#39;,OutputIndex=2,InputName=&quot;Y&quot;,Mask=1,MaskG=1))
      FunctionInputs(2)=(ExpressionInputId=050F17B8471570B47A802CB7CAA5A201,Input=(Expression=/Script/Engine.MaterialExpressionTextureSample&#39;&quot;MaterialGraphNode_3.MaterialExpressionTextureSample_3&quot;&#39;,OutputIndex=3,InputName=&quot;Z&quot;,Mask=1,MaskB=1))
      FunctionOutputs(0)=(ExpressionOutputId=0DD6F9954C067C3E5DDBBBA0D6910DD2,Output=(OutputName=&quot;Result&quot;))
      MaterialExpressionEditorX=-32
      MaterialExpressionEditorY=480
      MaterialExpressionGuid=D03431EE427BB9BAC13B8BB29674262D
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
      Outputs(0)=(OutputName=&quot;Result&quot;)
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMaterialFunctionCall&#39;&quot;MaterialExpressionMaterialFunctionCall_1&quot;&#39;
   NodePosX=-32
   NodePosY=480
   NodeGuid=36B1B3BC453C7960EA419D8FA6E75F70
   CustomProperties Pin (PinId=E9D89A7F4866B4EDC2991F9CDDE619D9,PinName=&quot;X (S)&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_1 DA79914E4BF0203FD41CD1B95FB19ABB,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=C2428625480962A9556D7098D8F28CEB,PinName=&quot;Y (S)&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_2 93EC14DE453FAFCF51FE179E42279CD3,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=41D8153240578EB806AF66BE19366D4A,PinName=&quot;Z (S)&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_3 A60701DD426122109BBB979337B469CF,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=2F49092F4D00FB2DAE14D5907E1E1C6B,PinName=&quot;Result&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_13 EE821C59458D7F9B963073BB26C8EC1A,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_5&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionAdd Name=&quot;MaterialExpressionAdd_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionAdd_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionMaterialFunctionCall&#39;&quot;MaterialGraphNode_6.MaterialExpressionMaterialFunctionCall_4&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_5.MaterialExpressionReroute_7&quot;&#39;)
      MaterialExpressionEditorX=-432
      MaterialExpressionEditorY=192
      MaterialExpressionGuid=A6C92EC74C10C561678874A94090E403
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionAdd&#39;&quot;MaterialExpressionAdd_0&quot;&#39;
   NodePosX=-432
   NodePosY=192
   NodeGuid=8F8FBB2A4FE0835C7830F78F8B063BBB
   CustomProperties Pin (PinId=873FE3F54F37925F6AE3CB9996834E84,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_6 96C6B21D4F12C4C464E7E88FC4FA240B,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=23A5E3E243E138904866A38C25011B88,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_Knot_5 3ED444DE4F5155BC9805918DA5E9933B,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=DBDDC65F443B0E454F9E4E9E8018220A,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_1 953804B9475506F95670919378EF54BB,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_6&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMaterialFunctionCall Name=&quot;MaterialExpressionMaterialFunctionCall_4&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMaterialFunctionCall_4&quot;
      MaterialFunction=/Script/Engine.MaterialFunction&#39;&quot;/Engine/Functions/Engine_MaterialFunctions02/Utility/MakeFloat2.MakeFloat2&quot;&#39;
      FunctionInputs(0)=(ExpressionInputId=529C1D96441E07EB03A9E59B8A7F67B6,Input=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_0.MaterialExpressionReroute_1&quot;&#39;,InputName=&quot;X&quot;))
      FunctionInputs(1)=(ExpressionInputId=B5BD7D1B494F6928732CCDA1C63D8E15,Input=(OutputIndex=-1,InputName=&quot;Y&quot;))
      FunctionOutputs(0)=(ExpressionOutputId=0DD6F9954C067C3E5DDBBBA0D6910DD2,Output=(OutputName=&quot;Result&quot;))
      MaterialExpressionEditorX=-608
      MaterialExpressionEditorY=192
      MaterialExpressionGuid=91136F4A442540B3B2BBA295258B8294
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
      Outputs(0)=(OutputName=&quot;Result&quot;)
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMaterialFunctionCall&#39;&quot;MaterialExpressionMaterialFunctionCall_4&quot;&#39;
   NodePosX=-608
   NodePosY=192
   NodeGuid=27A6A1EB44DE43144C45E0868E7D68C4
   CustomProperties Pin (PinId=9D607C8C431E83643DAF529C0A6A6CA3,PinName=&quot;X (S)&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_0 DA7360B44163C333C89C4EB59E310644,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=CB441FCC4F5330FFD2BBA985CAC14EFB,PinName=&quot;Y (S)&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=96C6B21D4F12C4C464E7E88FC4FA240B,PinName=&quot;Result&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_5 873FE3F54F37925F6AE3CB9996834E84,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_7&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMultiply Name=&quot;MaterialExpressionMultiply_6&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMultiply_6&quot;
      A=(Expression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialGraphNode_11.MaterialExpressionScalarParameter_3&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionAppendVector&#39;&quot;MaterialGraphNode_25.MaterialExpressionAppendVector_2&quot;&#39;)
      ConstB=0.005000
      MaterialExpressionEditorX=-992
      MaterialExpressionEditorY=416
      MaterialExpressionGuid=40CC51524E42619C6ABFDB9CECBDD9B0
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialExpressionMultiply_6&quot;&#39;
   NodePosX=-992
   NodePosY=416
   NodeGuid=CF4EA287492F6BF47A9F3380A56DE8F2
   CustomProperties Pin (PinId=8A9108F349C9CF6A2A474BB1A29AFE18,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_11 A89693B946E28A3347E7408B2CFD3DF2,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=C38806504AC8ABC558035986E4483418,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.005&quot;,LinkedTo=(MaterialGraphNode_25 0542412A489882E06954E7A815CE5849,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=C97A15894CF53EDCE21F15AEFE8FD52C,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_0 EF36361544B6CC73C989FA8F5F59F74E,MaterialGraphNode_Knot_3 67C7FBD041D58C065F7CF3BD8046A1CF,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_8&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMaterialFunctionCall Name=&quot;MaterialExpressionMaterialFunctionCall_5&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMaterialFunctionCall_5&quot;
      MaterialFunction=/Script/Engine.MaterialFunction&#39;&quot;/Engine/Functions/Engine_MaterialFunctions02/Utility/MakeFloat2.MakeFloat2&quot;&#39;
      FunctionInputs(0)=(ExpressionInputId=529C1D96441E07EB03A9E59B8A7F67B6,Input=(Expression=/Script/Engine.MaterialExpressionOneMinus&#39;&quot;MaterialGraphNode_10.MaterialExpressionOneMinus_1&quot;&#39;,InputName=&quot;X&quot;))
      FunctionInputs(1)=(ExpressionInputId=B5BD7D1B494F6928732CCDA1C63D8E15,Input=(OutputIndex=-1,InputName=&quot;Y&quot;))
      FunctionOutputs(0)=(ExpressionOutputId=0DD6F9954C067C3E5DDBBBA0D6910DD2,Output=(OutputName=&quot;Result&quot;))
      MaterialExpressionEditorX=-608
      MaterialExpressionEditorY=752
      MaterialExpressionGuid=91136F4A442540B3B2BBA295258B8294
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
      Outputs(0)=(OutputName=&quot;Result&quot;)
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMaterialFunctionCall&#39;&quot;MaterialExpressionMaterialFunctionCall_5&quot;&#39;
   NodePosX=-608
   NodePosY=752
   NodeGuid=B805BF314E743A212D937889E4362EF6
   CustomProperties Pin (PinId=AEDB0B1144BF010F9DBC73A3E419E66F,PinName=&quot;X (S)&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_10 9A6C29C54F1E108C915A4593A47A0EE6,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=C968679C4F9B2BF9F8C1A198BF5B5CB5,PinName=&quot;Y (S)&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=DAFD314442AACFD89B3B4BAAF11963F2,PinName=&quot;Result&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_9 4FA3755D4E9B76DF58031C92942E2728,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_9&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionAdd Name=&quot;MaterialExpressionAdd_8&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionAdd_8&quot;
      A=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_7.MaterialExpressionReroute_9&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionMaterialFunctionCall&#39;&quot;MaterialGraphNode_8.MaterialExpressionMaterialFunctionCall_5&quot;&#39;)
      MaterialExpressionEditorX=-432
      MaterialExpressionEditorY=720
      MaterialExpressionGuid=0DA3A18241F120FC011B00BEB520111D
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionAdd&#39;&quot;MaterialExpressionAdd_8&quot;&#39;
   NodePosX=-432
   NodePosY=720
   NodeGuid=B87308E440F33B0DF5EA21A49762748B
   CustomProperties Pin (PinId=936B16FA4F792FDFB40E80B07F9FECFA,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_Knot_7 0D04DD30461AF7CBA823E4AF5D044159,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=4FA3755D4E9B76DF58031C92942E2728,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_8 DAFD314442AACFD89B3B4BAAF11963F2,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=3B1A107E4F26224245EEE08FA730A17F,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_3 0A80509F4731E321A10C85BCEABE10BF,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_10&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionOneMinus Name=&quot;MaterialExpressionOneMinus_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionOneMinus_1&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_3.MaterialExpressionReroute_5&quot;&#39;)
      MaterialExpressionEditorX=-752
      MaterialExpressionEditorY=752
      MaterialExpressionGuid=3AC94DDA409B7E86BE321F8351F6850E
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionOneMinus&#39;&quot;MaterialExpressionOneMinus_1&quot;&#39;
   NodePosX=-752
   NodePosY=752
   NodeGuid=AF06E4994D76EA3F383E6785F8C44596
   CustomProperties Pin (PinId=AAC2E92843B951B17E89928DA5B77697,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_3 7AB25DAE48DF22109A7D13B99CD85F92,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=9A6C29C54F1E108C915A4593A47A0EE6,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_8 AEDB0B1144BF010F9DBC73A3E419E66F,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_1&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialGraphNode_7.MaterialExpressionMultiply_6&quot;&#39;)
      MaterialExpressionEditorX=-864
      MaterialExpressionEditorY=224
      MaterialExpressionGuid=0023D615488D81FFAC267693E7EA0D47
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_1&quot;&#39;
   NodePosX=-864
   NodePosY=224
   bCanRenameNode=False
   NodeGuid=D7DADF6548AB8183529319BCDA3ABFD0
   CustomProperties Pin (PinId=EF36361544B6CC73C989FA8F5F59F74E,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_7 C97A15894CF53EDCE21F15AEFE8FD52C,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=DA7360B44163C333C89C4EB59E310644,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_6 9D607C8C431E83643DAF529C0A6A6CA3,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_11&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionScalarParameter Name=&quot;MaterialExpressionScalarParameter_3&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionScalarParameter_3&quot;
      DefaultValue=0.020000
      SliderMax=0.100000
      ParameterName=&quot;ShiftValue&quot;
      ExpressionGUID=13BAE15C411A674734CA3693260751E0
      Group=&quot;83.Glitch Channel Shift&quot;
      SortPriority=2
      MaterialExpressionEditorX=-1232
      MaterialExpressionEditorY=368
      MaterialExpressionGuid=8426F7A040B9CF3DDC2685B05B78E63C
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
      Desc=&quot;チャンネルシフト量&quot;
      bCommentBubbleVisible=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialExpressionScalarParameter_3&quot;&#39;
   NodePosX=-1232
   NodePosY=368
   bCommentBubbleVisible=True
   bCanRenameNode=True
   NodeComment=&quot;チャンネルシフト量&quot;
   NodeGuid=FC4C38484CDEE14AF8C1BA80F7C0485D
   CustomProperties Pin (PinId=3DC8F4BC42E12D62687BEEAFFB083225,PinName=&quot;Default Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.02&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A89693B946E28A3347E7408B2CFD3DF2,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_7 8A9108F349C9CF6A2A474BB1A29AFE18,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_12&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionInput Name=&quot;MaterialExpressionFunctionInput_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionInput_0&quot;
      Preview=(Expression=/Script/Engine.MaterialExpressionTextureObject&#39;&quot;MaterialGraphNode_20.MaterialExpressionTextureObject_0&quot;&#39;)
      InputName=&quot;TextureObject&quot;
      Id=418A31B3459E5E9585E1A7B840D32801
      InputType=FunctionInput_Texture2D
      MaterialExpressionEditorX=-592
      MaterialExpressionEditorY=480
      MaterialExpressionGuid=FE3A68BB4E01FDBECC7830A543AF6300
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialExpressionFunctionInput_0&quot;&#39;
   NodePosX=-592
   NodePosY=480
   NodeGuid=F615999D493613B12DB790ACAFB85805
   CustomProperties Pin (PinId=6DA577134F3EEA87311E5AB3AEC90022,PinName=&quot;Preview&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_20 B7360C474A126F6D881E5F9A3551E4BC,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=90BA5EA6406B431810F09C88446706D9,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_1 0A53CD1840811C8F50F8A9829DC685E4,MaterialGraphNode_2 118491E34E3CF8AAC2C084BCFCF408AB,MaterialGraphNode_3 DAFF8C3A4612CC3567FE99ACC2ECCCF9,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_13&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionStaticSwitchParameter Name=&quot;MaterialExpressionStaticSwitchParameter_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionStaticSwitchParameter_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionMaterialFunctionCall&#39;&quot;MaterialGraphNode_4.MaterialExpressionMaterialFunctionCall_1&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_1.MaterialExpressionReroute_3&quot;&#39;)
      DefaultValue=True
      ParameterName=&quot;DrawChannelShift&quot;
      ExpressionGUID=A381CEDB4EC8EE878BAA3290A2459E3C
      Group=&quot;83.Glitch Channel Shift&quot;
      SortPriority=0
      MaterialExpressionEditorX=144
      MaterialExpressionEditorY=464
      MaterialExpressionGuid=C332FB3D4CE7EC54F5E871A7162D6F58
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionStaticSwitchParameter&#39;&quot;MaterialExpressionStaticSwitchParameter_0&quot;&#39;
   NodePosX=144
   NodePosY=464
   bCanRenameNode=True
   NodeGuid=9B9E9A194CFE1A960608FC80B9EF0A37
   CustomProperties Pin (PinId=EE821C59458D7F9B963073BB26C8EC1A,PinName=&quot;True&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_4 2F49092F4D00FB2DAE14D5907E1E1C6B,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=BEF7729D482F46A86FA9FDBA2C9A7DDB,PinName=&quot;False&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_1 27E43522452AE1266FB463BC11D79777,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=D741C7364BB42DCF16DBF6B05C0D1FA3,PinName=&quot;Default Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;true&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=10B0380E4C0AEA811FEA0EB55855AD6F,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_0 B136D3EC4F8315A035644C9CE17F1017,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_1&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_3&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_3&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_2.MaterialExpressionReroute_4&quot;&#39;)
      MaterialExpressionEditorX=64
      MaterialExpressionEditorY=448
      MaterialExpressionGuid=688E51B4467F9F363F147FA1F2636F8A
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_3&quot;&#39;
   NodePosX=64
   NodePosY=448
   bCanRenameNode=False
   NodeGuid=6DD64ECE4A7480B3269F0AB1BB6C8525
   CustomProperties Pin (PinId=83F831214BED6504B34225ADFC1FB063,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_2 DFC198CE42608479593A87BC584F5DD0,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=27E43522452AE1266FB463BC11D79777,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_13 BEF7729D482F46A86FA9FDBA2C9A7DDB,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_2&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_4&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_4&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionTextureSample&#39;&quot;MaterialGraphNode_2.MaterialExpressionTextureSample_2&quot;&#39;,Mask=1,MaskR=1,MaskG=1,MaskB=1)
      MaterialExpressionEditorX=-32
      MaterialExpressionEditorY=448
      MaterialExpressionGuid=067DDA51464BA0FACC8B06AD6B86C63C
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_4&quot;&#39;
   NodePosX=-32
   NodePosY=448
   bCanRenameNode=False
   NodeGuid=09016E464312968306FFDDBAB3D429AE
   CustomProperties Pin (PinId=560616674C817A0F05FDB08866EC48B8,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_2 121182CE436997084657948A60D5CD6B,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=DFC198CE42608479593A87BC584F5DD0,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_1 83F831214BED6504B34225ADFC1FB063,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_14&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionInput Name=&quot;MaterialExpressionFunctionInput_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionInput_1&quot;
      Preview=(Expression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialGraphNode_15.MaterialExpressionTextureCoordinate_3&quot;&#39;)
      InputName=&quot;UVs&quot;
      Id=D4045AE747F8F56427423B82C89AC016
      InputType=FunctionInput_Vector2
      bUsePreviewValueAsDefault=True
      MaterialExpressionEditorX=-816
      MaterialExpressionEditorY=480
      MaterialExpressionGuid=D48CF83C44A7A6CBA3196FBB2EDEA79A
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialExpressionFunctionInput_1&quot;&#39;
   NodePosX=-816
   NodePosY=480
   NodeGuid=BA85E3DD4195379F1D624DBBE3F19B47
   CustomProperties Pin (PinId=F8918312482BEB2CFDB1F6B246453F5D,PinName=&quot;Preview&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_15 A99F24A747D44741ED68B1BB3AB7CEB0,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=AF0BA5874523451EAD290D9958D28BFB,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_4 6D12C58C497F993DD61B1C8FBF479E49,MaterialGraphNode_Knot_6 504DB104490DA5F2ACFED69D143E68C5,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_3&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_5&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_5&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialGraphNode_7.MaterialExpressionMultiply_6&quot;&#39;)
      MaterialExpressionEditorX=-864
      MaterialExpressionEditorY=784
      MaterialExpressionGuid=EF8B470E449376C232F18685A1230854
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_5&quot;&#39;
   NodePosX=-864
   NodePosY=784
   bCanRenameNode=False
   NodeGuid=12D67CBC4B9731BD79B968B1DF739F7C
   CustomProperties Pin (PinId=67C7FBD041D58C065F7CF3BD8046A1CF,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_7 C97A15894CF53EDCE21F15AEFE8FD52C,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=7AB25DAE48DF22109A7D13B99CD85F92,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_10 AAC2E92843B951B17E89928DA5B77697,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_4&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_6&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_6&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_14.MaterialExpressionFunctionInput_1&quot;&#39;)
      MaterialExpressionEditorX=-608
      MaterialExpressionEditorY=448
      MaterialExpressionGuid=44B10FB345E71A548B1FFAA73A5F3AEB
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_6&quot;&#39;
   NodePosX=-608
   NodePosY=448
   bCanRenameNode=False
   NodeGuid=1FEAB6C44E5F82DCF7137C86A3E1172F
   CustomProperties Pin (PinId=6D12C58C497F993DD61B1C8FBF479E49,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_14 AF0BA5874523451EAD290D9958D28BFB,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=1F786E5B4EAA8AA81BC873B0D1131CD5,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_5 EAFC52D44463861A68B796968C065F32,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_5&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_7&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_7&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_4.MaterialExpressionReroute_6&quot;&#39;)
      MaterialExpressionEditorX=-512
      MaterialExpressionEditorY=448
      MaterialExpressionGuid=CBF30E90417C55A56E886C89780B7369
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_7&quot;&#39;
   NodePosX=-512
   NodePosY=448
   bCanRenameNode=False
   NodeGuid=226B3BB249399D0B491497B8E17C5D1F
   CustomProperties Pin (PinId=EAFC52D44463861A68B796968C065F32,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_4 1F786E5B4EAA8AA81BC873B0D1131CD5,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=3ED444DE4F5155BC9805918DA5E9933B,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_5 23A5E3E243E138904866A38C25011B88,MaterialGraphNode_Knot_8 FC836037478DB32A23FE6B8D7F23B3EF,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_6&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_8&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_8&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_14.MaterialExpressionFunctionInput_1&quot;&#39;)
      MaterialExpressionEditorX=-608
      MaterialExpressionEditorY=723
      MaterialExpressionGuid=D8C9E98C4B91EF2F0F70628D9BC49F5C
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_8&quot;&#39;
   NodePosX=-608
   NodePosY=723
   bCanRenameNode=False
   NodeGuid=853DB02C41D0B10910362DB19068B9F4
   CustomProperties Pin (PinId=504DB104490DA5F2ACFED69D143E68C5,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_14 AF0BA5874523451EAD290D9958D28BFB,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A2B2934A4CF75AB3E05A4497A1D176DB,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_7 4356AF57446F05D95BABC6B44AD621E1,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_7&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_9&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_9&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_6.MaterialExpressionReroute_8&quot;&#39;)
      MaterialExpressionEditorX=-512
      MaterialExpressionEditorY=723
      MaterialExpressionGuid=97AF50E94D9FD7D3F00179A1B0A45FC6
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_9&quot;&#39;
   NodePosX=-512
   NodePosY=723
   bCanRenameNode=False
   NodeGuid=CB2FDFA14E652869A37FFDB240818EB5
   CustomProperties Pin (PinId=4356AF57446F05D95BABC6B44AD621E1,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_6 A2B2934A4CF75AB3E05A4497A1D176DB,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=0D04DD30461AF7CBA823E4AF5D044159,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_9 936B16FA4F792FDFB40E80B07F9FECFA,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_15&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTextureCoordinate Name=&quot;MaterialExpressionTextureCoordinate_3&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTextureCoordinate_3&quot;
      MaterialExpressionEditorX=-832
      MaterialExpressionEditorY=544
      MaterialExpressionGuid=51238F624C824C8A7A7CEB8A45187BD5
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialExpressionTextureCoordinate_3&quot;&#39;
   NodePosX=-832
   NodePosY=544
   AdvancedPinDisplay=Hidden
   NodeGuid=68285C814911D0DD4704AA9869437FE0
   CustomProperties Pin (PinId=9FB145F541CD4662D9DDE59C9237117F,PinName=&quot;Coordinate Index&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;int&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=99D3A2D34C890B043A20C89DE797E237,PinName=&quot;UTiling&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=428278234AF405D805C2C8A26F347B98,PinName=&quot;VTiling&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=C332480F436CAE3DFA0B7C9F6350C954,PinName=&quot;Un Mirror U&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=1F2780F94C05A9AED6713F830BE61CB4,PinName=&quot;Un Mirror V&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A99F24A747D44741ED68B1BB3AB7CEB0,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_14 F8918312482BEB2CFDB1F6B246453F5D,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_8&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_10&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_10&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_5.MaterialExpressionReroute_7&quot;&#39;)
      MaterialExpressionEditorX=-400
      MaterialExpressionEditorY=448
      MaterialExpressionGuid=F68C56914B287A62A84ADFAF85BAFA8D
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_10&quot;&#39;
   NodePosX=-400
   NodePosY=448
   bCanRenameNode=False
   NodeGuid=96C9C1F948FE8665D9ACE9AE53345A02
   CustomProperties Pin (PinId=FC836037478DB32A23FE6B8D7F23B3EF,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_5 3ED444DE4F5155BC9805918DA5E9933B,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=5F40080F4925FC58FEDA26BC7ED01EDB,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_2 CC5327E440B5A192C17602B13479C0B9,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_16&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionAppendVector Name=&quot;MaterialExpressionAppendVector_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionAppendVector_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionVectorParameter&#39;&quot;MaterialGraphNode_18.MaterialExpressionVectorParameter_0&quot;&#39;,OutputIndex=1,Mask=1,MaskR=1)
      B=(Expression=/Script/Engine.MaterialExpressionVectorParameter&#39;&quot;MaterialGraphNode_18.MaterialExpressionVectorParameter_0&quot;&#39;,OutputIndex=2,Mask=1,MaskG=1)
      MaterialExpressionEditorX=-1872
      MaterialExpressionEditorY=416
      MaterialExpressionGuid=92DFA2AE4C73258594E96E8A8818C73A
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionAppendVector&#39;&quot;MaterialExpressionAppendVector_0&quot;&#39;
   NodePosX=-1872
   NodePosY=416
   NodeGuid=2E65924947898F1EA444D7AC7D17708B
   CustomProperties Pin (PinId=419507A74E36903320A7B6A6A2855A8A,PinName=&quot;A&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_18 3C5CE284452B69DA5D2549B626A8E0F8,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=C85029C54E5D336EF13CB1AB0F043118,PinName=&quot;B&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_18 174736B14B2FC3D3A26B4A83582197D4,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=B8AE99984D34645ED319218EE4BCB1B7,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_21 DBF14D6B49893739F1B64FA586230B13,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_17&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionAppendVector Name=&quot;MaterialExpressionAppendVector_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionAppendVector_1&quot;
      A=(Expression=/Script/Engine.MaterialExpressionVectorParameter&#39;&quot;MaterialGraphNode_18.MaterialExpressionVectorParameter_0&quot;&#39;,OutputIndex=3,Mask=1,MaskB=1)
      B=(Expression=/Script/Engine.MaterialExpressionVectorParameter&#39;&quot;MaterialGraphNode_18.MaterialExpressionVectorParameter_0&quot;&#39;,OutputIndex=4,Mask=1,MaskA=1)
      MaterialExpressionEditorX=-1872
      MaterialExpressionEditorY=528
      MaterialExpressionGuid=92DFA2AE4C73258594E96E8A8818C73A
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionAppendVector&#39;&quot;MaterialExpressionAppendVector_1&quot;&#39;
   NodePosX=-1872
   NodePosY=528
   NodeGuid=3B090A1D41315C0001059C928F5E3C5F
   CustomProperties Pin (PinId=82020F5B433BABEA2FF0B3B9C1CC2ACB,PinName=&quot;A&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_18 44ADF20C45C69658B9F0FCB922B9DE44,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=846D52DD4ED893533A5CF68AE9EE83E8,PinName=&quot;B&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_18 944FAEED469A81EE3A89E2B93B441C32,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=E9AE37A342BD3F7B176219922434CB05,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_9 FC5C1970460962F1C0891F8CE2B61077,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_18&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionVectorParameter Name=&quot;MaterialExpressionVectorParameter_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionVectorParameter_0&quot;
      DefaultValue=(R=0.000000,G=2.000000,B=0.300000,A=1.000000)
      ChannelNames=(R=NSLOCTEXT(&quot;&quot;, &quot;C0918CA340A9932E5D7A2CBCCFAD7D49&quot;, &quot;ScaleU&quot;),G=NSLOCTEXT(&quot;&quot;, &quot;954E5D1A4AEFD06E5CB470BDB1E68DC7&quot;, &quot;ScaleV&quot;),B=NSLOCTEXT(&quot;&quot;, &quot;DD6DC5BE45DD422EAB580D9A7DC52E06&quot;, &quot;ScrollU&quot;),A=NSLOCTEXT(&quot;&quot;, &quot;39EB59BE4D1FF41A6AB70A951D5094A3&quot;, &quot;ScrollV&quot;))
      ParameterName=&quot;ShiftParams&quot;
      ExpressionGUID=B515298E4FB36DAE43FF8DA79337EC75
      Group=&quot;83.Glitch Channel Shift&quot;
      SortPriority=3
      MaterialExpressionEditorX=-2128
      MaterialExpressionEditorY=400
      MaterialExpressionGuid=266D7DC44E1F8FB2A7E4D096CE9F444E
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
      bShowOutputNameOnPin=True
      bCollapsed=True
      Outputs(1)=(OutputName=&quot;ScaleU&quot;)
      Outputs(2)=(OutputName=&quot;ScaleV&quot;)
      Outputs(3)=(OutputName=&quot;ScrollU&quot;)
      Outputs(4)=(OutputName=&quot;ScrollV&quot;)
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionVectorParameter&#39;&quot;MaterialExpressionVectorParameter_0&quot;&#39;
   NodePosX=-2128
   NodePosY=400
   bCanRenameNode=True
   NodeGuid=499413DF4D1A293A36C13185243DA078
   CustomProperties Pin (PinId=147B210945E1546954E9BEA493E0E7B4,PinName=&quot;Default Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;rgba&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;(R=0.000000,G=2.000000,B=0.300000,A=1.000000)&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=3F001B04430E1A2F3E2B8289C55C0B03,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=3C5CE284452B69DA5D2549B626A8E0F8,PinName=&quot;ScaleU&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_16 419507A74E36903320A7B6A6A2855A8A,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=174736B14B2FC3D3A26B4A83582197D4,PinName=&quot;ScaleV&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;green&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_16 C85029C54E5D336EF13CB1AB0F043118,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=44ADF20C45C69658B9F0FCB922B9DE44,PinName=&quot;ScrollU&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;blue&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_17 82020F5B433BABEA2FF0B3B9C1CC2ACB,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=944FAEED469A81EE3A89E2B93B441C32,PinName=&quot;ScrollV&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;alpha&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_17 846D52DD4ED893533A5CF68AE9EE83E8,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_19&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTextureObjectParameter Name=&quot;MaterialExpressionTextureObjectParameter_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTextureObjectParameter_1&quot;
      ParameterName=&quot;ShiftNoiseTexture&quot;
      ExpressionGUID=814C37224B00FA179E32E2A5CEC0D111
      Group=&quot;83.Glitch Channel Shift&quot;
      SortPriority=1
      Texture=/Script/Engine.Texture2D&#39;&quot;/Game/Developers/yoshida/Materials/Textures/T_8x8_Normal.T_8x8_Normal&quot;&#39;
      SamplerType=SAMPLERTYPE_Normal
      MaterialExpressionEditorX=-1600
      MaterialExpressionEditorY=592
      MaterialExpressionGuid=919DBEA448F80A32B2EA7CADAA8E95FF
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTextureObjectParameter&#39;&quot;MaterialExpressionTextureObjectParameter_1&quot;&#39;
   NodePosX=-1600
   NodePosY=592
   AdvancedPinDisplay=Hidden
   bCanRenameNode=True
   NodeGuid=CE825605481F006DDB4D13BFF2460D87
   CustomProperties Pin (PinId=DCC8171346B4A2D7797B1DBE33E63015,PinName=&quot;MipValueMode&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.ETextureMipValueMode&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;None (use computed mip level)&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=866D3EF647FF871BFAF4C59D20F71521,PinName=&quot;Sampler Source&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.ESamplerSourceMode&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;From texture asset&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=E365E9274045BA185C5B57BCBEE587C4,PinName=&quot;Sampler Type&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.EMaterialSamplerType&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;Normal&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=BBCC98084CC480988B89888A879212C6,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_24 B74325584D4D9FD32765A99BBAE954B1,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_20&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTextureObject Name=&quot;MaterialExpressionTextureObject_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTextureObject_0&quot;
      Texture=/Script/Engine.Texture2D&#39;&quot;/Game/Developers/yoshida/Materials/Textures/T_8x8_Grid.T_8x8_Grid&quot;&#39;
      MaterialExpressionEditorX=-592
      MaterialExpressionEditorY=544
      MaterialExpressionGuid=48D51F4D4F579FDCA8BD308DAF50FB32
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTextureObject&#39;&quot;MaterialExpressionTextureObject_0&quot;&#39;
   NodePosX=-592
   NodePosY=544
   AdvancedPinDisplay=Hidden
   NodeGuid=4D21F1B84395AEC49281AE8800067756
   CustomProperties Pin (PinId=58ED671E4207822B9AE760828173A588,PinName=&quot;Sampler Type&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.EMaterialSamplerType&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;Color&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=B7360C474A126F6D881E5F9A3551E4BC,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_12 6DA577134F3EEA87311E5AB3AEC90022,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_21&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMultiply Name=&quot;MaterialExpressionMultiply_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMultiply_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialGraphNode_23.MaterialExpressionTextureCoordinate_0&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionAppendVector&#39;&quot;MaterialGraphNode_16.MaterialExpressionAppendVector_0&quot;&#39;)
      MaterialExpressionEditorX=-1728
      MaterialExpressionEditorY=384
      MaterialExpressionGuid=58A3B7CE403AFCFEEA0E189391F884B9
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialExpressionMultiply_0&quot;&#39;
   NodePosX=-1728
   NodePosY=384
   NodeGuid=B2E22E4E4539D86B2DC02DA1D6734CC8
   CustomProperties Pin (PinId=96CA57B24F22EADD31236E8EAC7DEC61,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_23 29808BB9435833B362B14FA448677584,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=DBF14D6B49893739F1B64FA586230B13,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_16 B8AE99984D34645ED319218EE4BCB1B7,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=E04D2BBA4FB09E2006D8CCB114E7E0B5,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_22 162495B5442DAFEE207008BF61CBE523,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_22&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionPanner Name=&quot;MaterialExpressionPanner_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionPanner_0&quot;
      Coordinate=(Expression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialGraphNode_21.MaterialExpressionMultiply_0&quot;&#39;)
      Speed=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_9.MaterialExpressionReroute_0&quot;&#39;)
      MaterialExpressionEditorX=-1584
      MaterialExpressionEditorY=416
      MaterialExpressionGuid=E0D401BF4CA2B6D3D305A899437748C6
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionPanner&#39;&quot;MaterialExpressionPanner_0&quot;&#39;
   NodePosX=-1584
   NodePosY=416
   NodeGuid=C86E64324DC8C6F743FF8293F20FCC30
   CustomProperties Pin (PinId=162495B5442DAFEE207008BF61CBE523,PinName=&quot;Coordinate&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;int&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0&quot;,LinkedTo=(MaterialGraphNode_21 E04D2BBA4FB09E2006D8CCB114E7E0B5,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=0FA2F0D64DF6F79CC08AD99136A74321,PinName=&quot;Time&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=4086F1CB44213112F92733BE3B763058,PinName=&quot;Speed&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;rg&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;X=0.000 Y=0.000&quot;,LinkedTo=(MaterialGraphNode_Knot_9 D2AF216D47A7ACC4904B78A9B5C8FC70,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=FD43D6F147B65460F7FEFB89F95BE52D,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_24 B106F3A84AC0F37B753389A45A8B4BDB,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_23&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTextureCoordinate Name=&quot;MaterialExpressionTextureCoordinate_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTextureCoordinate_0&quot;
      MaterialExpressionEditorX=-1968
      MaterialExpressionEditorY=272
      MaterialExpressionGuid=39B060DC40F1AA3A91FCFCAAAAD8C3E6
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialExpressionTextureCoordinate_0&quot;&#39;
   NodePosX=-1968
   NodePosY=272
   AdvancedPinDisplay=Hidden
   NodeGuid=0A905E19448900FF85C5EAA78D199CCE
   CustomProperties Pin (PinId=7A0C9AF24B2A01AC8F939DB092F4A331,PinName=&quot;Coordinate Index&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;int&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=0BDF1F9146598FF0AA9161AE26B34064,PinName=&quot;UTiling&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=09096D7A4AD96D8F9A59488654F551B9,PinName=&quot;VTiling&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=89FEA06D416A99D69970B8BAF750DFCF,PinName=&quot;Un Mirror U&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=B27601264BC3CFAA2F6996959AC271FB,PinName=&quot;Un Mirror V&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=29808BB9435833B362B14FA448677584,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_21 96CA57B24F22EADD31236E8EAC7DEC61,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_24&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTextureSample Name=&quot;MaterialExpressionTextureSample_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTextureSample_0&quot;
      Coordinates=(Expression=/Script/Engine.MaterialExpressionPanner&#39;&quot;MaterialGraphNode_22.MaterialExpressionPanner_0&quot;&#39;)
      TextureObject=(Expression=/Script/Engine.MaterialExpressionTextureObjectParameter&#39;&quot;MaterialGraphNode_19.MaterialExpressionTextureObjectParameter_1&quot;&#39;)
      MaterialExpressionEditorX=-1392
      MaterialExpressionEditorY=496
      MaterialExpressionGuid=8F8B0D7E4FE8F6224AC37B9FFF23D324
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTextureSample&#39;&quot;MaterialExpressionTextureSample_0&quot;&#39;
   NodePosX=-1392
   NodePosY=496
   AdvancedPinDisplay=Hidden
   NodeGuid=00C63F3A44EAD83A742F83A35CDB5F03
   CustomProperties Pin (PinId=B106F3A84AC0F37B753389A45A8B4BDB,PinName=&quot;UVs&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0&quot;,LinkedTo=(MaterialGraphNode_22 FD43D6F147B65460F7FEFB89F95BE52D,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=B74325584D4D9FD32765A99BBAE954B1,PinName=&quot;Tex&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_19 BBCC98084CC480988B89888A879212C6,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=0E39BF264F084E70DFB4648D540C99BC,PinName=&quot;Apply View MipBias&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=CBDFFC0F43FA6ADE6DEDEABC984E75C3,PinName=&quot;MipValueMode&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.ETextureMipValueMode&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;None (use computed mip level)&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=961E37C2456BFAB74B55C482A1BA22D4,PinName=&quot;Sampler Source&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.ESamplerSourceMode&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;From texture asset&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=8D0966EF49ED076B2B216492ACDE701F,PinName=&quot;Sampler Type&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.EMaterialSamplerType&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;Color&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=0A800B2B497B6A4B44450C9B557C827C,PinName=&quot;RGB&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=3FE6D082484E916CC6BB58B838DE182F,PinName=&quot;R&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_25 0AC0C6E944D59E7EA2D91A8238FEB17A,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=047ECAA94B640DB15176C2A1B7879E37,PinName=&quot;G&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;green&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=DC85EC244E08579741339B9B0285489B,PinName=&quot;B&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;blue&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=D8E91A9C40B2043A0F013CB3DD37E91A,PinName=&quot;A&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;alpha&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A803D54941D12AA17EC54BA0615756A7,PinName=&quot;RGBA&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;rgba&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_25&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionAppendVector Name=&quot;MaterialExpressionAppendVector_2&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionAppendVector_2&quot;
      A=(Expression=/Script/Engine.MaterialExpressionTextureSample&#39;&quot;MaterialGraphNode_24.MaterialExpressionTextureSample_0&quot;&#39;,OutputIndex=1,Mask=1,MaskR=1)
      B=(Expression=/Script/Engine.MaterialExpressionConstant&#39;&quot;MaterialGraphNode_26.MaterialExpressionConstant_0&quot;&#39;)
      MaterialExpressionEditorX=-1136
      MaterialExpressionEditorY=496
      MaterialExpressionGuid=63B792D24384D7B4D5B120A4E851EE18
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionAppendVector&#39;&quot;MaterialExpressionAppendVector_2&quot;&#39;
   NodePosX=-1136
   NodePosY=496
   NodeGuid=B2688E0B4E8FB283326CBDAD6835CA52
   CustomProperties Pin (PinId=0AC0C6E944D59E7EA2D91A8238FEB17A,PinName=&quot;A&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_24 3FE6D082484E916CC6BB58B838DE182F,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=0616088945FEB1C21A99D68908350BEF,PinName=&quot;B&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_26 AD5CEF7D488512A5F19A978947D0F353,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=0542412A489882E06954E7A815CE5849,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_7 C38806504AC8ABC558035986E4483418,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_9&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_0&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionAppendVector&#39;&quot;MaterialGraphNode_17.MaterialExpressionAppendVector_1&quot;&#39;)
      MaterialExpressionEditorX=-1680
      MaterialExpressionEditorY=560
      MaterialExpressionGuid=6794DE514761DC5F031F61BC9F46472C
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_0&quot;&#39;
   NodePosX=-1680
   NodePosY=560
   bCanRenameNode=False
   NodeGuid=15344A884D66713A4A852D9A3B96C3B0
   CustomProperties Pin (PinId=FC5C1970460962F1C0891F8CE2B61077,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_17 E9AE37A342BD3F7B176219922434CB05,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=D2AF216D47A7ACC4904B78A9B5C8FC70,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_22 4086F1CB44213112F92733BE3B763058,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_26&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionConstant Name=&quot;MaterialExpressionConstant_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionConstant_0&quot;
      MaterialExpressionEditorX=-1103
      MaterialExpressionEditorY=639
      MaterialExpressionGuid=8185C2A947D6270C6DCB19BAADB4C676
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_3&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionConstant&#39;&quot;MaterialExpressionConstant_0&quot;&#39;
   NodePosX=-1103
   NodePosY=639
   NodeGuid=D52C55FA49FFC9139DB2878C0FEB8B94
   CustomProperties Pin (PinId=B45AE7FC4C4F29548AB8028211C5FFBF,PinName=&quot;Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=AD5CEF7D488512A5F19A978947D0F353,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_25 0616088945FEB1C21A99D68908350BEF,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Comment Name=&quot;MaterialGraphNode_Comment_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionComment Name=&quot;MaterialExpressionComment_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionComment_0&quot;
      SizeX=2720
      SizeY=832
      Text=&quot;R, Bのチャンネルシフト&quot;
      MaterialExpressionEditorX=-2176
      MaterialExpressionEditorY=128
      MaterialExpressionGuid=23DC432E4DFFF493A0540DB28DE7EAB1
      Function=/Script/Engine.MaterialFunction&#39;&quot;/Engine/Transient.MF_GlitchChannelShift&quot;&#39;
   End Object
   MaterialExpressionComment=/Script/Engine.MaterialExpressionComment&#39;&quot;MaterialExpressionComment_0&quot;&#39;
   NodePosX=-2176
   NodePosY=128
   NodeWidth=2720
   NodeHeight=832
   NodeComment=&quot;R, Bのチャンネルシフト&quot;
   NodeGuid=717BAA6F444500A4B2C924BB2AB81512
End Object</code></pre></div>
</div></div>



<h3 class="wp-block-heading"><span id="toc5">カラーフィルタ</span></h3>



<p>彩度とカラーフィルター</p>



<figure class="wp-block-image size-large"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchColorFilter.png"><img loading="lazy" decoding="async" width="1024" height="306" src="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchColorFilter-1024x306.png" alt="" class="wp-image-601" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchColorFilter-1024x306.png 1024w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchColorFilter-300x90.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchColorFilter-768x229.png 768w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchColorFilter.png 1528w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><figcaption class="wp-element-caption">MF_GlitchColorFilter</figcaption></figure>



<div class="wp-block-cocoon-blocks-toggle-box-1 toggle-wrap toggle-box block-box"><input id="toggle-checkbox-20230221011945" class="toggle-checkbox" type="checkbox"/><label class="toggle-button" for="toggle-checkbox-20230221011945">コピペ用コード(5.1.1)</label><div class="toggle-content">
<div class="hcb_wrap"><pre class="prism off-numbers lang-plain" data-file="MF_GlitchColorFilter"><code>Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionOutput Name=&quot;MaterialExpressionFunctionOutput_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionOutput_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionStaticSwitchParameter&#39;&quot;MaterialGraphNode_5.MaterialExpressionStaticSwitchParameter_0&quot;&#39;)
      bLastPreviewed=True
      Id=3A66E6BF46ADDB6D736AC9BAC129AE07
      MaterialExpressionEditorX=160
      MaterialExpressionEditorY=384
      MaterialExpressionGuid=C95A7BF44CD7466764BAC19DB5F6D0DF
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionOutput&#39;&quot;MaterialExpressionFunctionOutput_0&quot;&#39;
   NodePosX=160
   NodePosY=384
   NodeGuid=31C85B77476F232C2307B08FC6925C9F
   CustomProperties Pin (PinId=DB3AD0614FEA290D511DE2B757121433,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_5 90E589814DDC41A2B5B2AABCE92D93C1,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=E2EF8E63422C8F285DA9288C4FF493B9,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_1&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMultiply Name=&quot;MaterialExpressionMultiply_4&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMultiply_4&quot;
      A=(Expression=/Script/Engine.MaterialExpressionDesaturation&#39;&quot;MaterialGraphNode_3.MaterialExpressionDesaturation_0&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionVectorParameter&#39;&quot;MaterialGraphNode_2.MaterialExpressionVectorParameter_0&quot;&#39;,Mask=1,MaskR=1,MaskG=1,MaskB=1)
      MaterialExpressionEditorX=-208
      MaterialExpressionEditorY=320
      MaterialExpressionGuid=BEC368AE4066821DC3D73280466B80F0
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialExpressionMultiply_4&quot;&#39;
   NodePosX=-208
   NodePosY=320
   NodeGuid=DFF4966C475F33A0B0F5F286A468C019
   CustomProperties Pin (PinId=6356A0D7486D0B048ABE34870655F461,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_3 4893114749A58913125B73BA62B5C424,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=412DAC7347AF028C4028B88CED60E574,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_2 3E3FA8D046A960C2757BE8880F1B4607,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=0325907B4C7011F63777BDA7B3C8BEF0,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_5 5B6C7EB148EA7CE3E685339466C90978,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_2&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionVectorParameter Name=&quot;MaterialExpressionVectorParameter_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionVectorParameter_0&quot;
      DefaultValue=(R=1.000000,G=1.000000,B=1.000000,A=1.000000)
      ParameterName=&quot;ColorFilter&quot;
      ExpressionGUID=D44690414E7A3F1B92B80FA4A0463FF6
      Group=&quot;84 - Glitch Color Filter&quot;
      SortPriority=2
      MaterialExpressionEditorX=-432
      MaterialExpressionEditorY=416
      MaterialExpressionGuid=B8ADA567445AE7C2635C9788CE5CD131
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
      Desc=&quot;カラーフィルタ&quot;
      bCommentBubbleVisible=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionVectorParameter&#39;&quot;MaterialExpressionVectorParameter_0&quot;&#39;
   NodePosX=-432
   NodePosY=416
   bCommentBubbleVisible=True
   bCanRenameNode=True
   NodeComment=&quot;カラーフィルタ&quot;
   NodeGuid=3D3541B64AEEFA50D78DDAAEA1369881
   CustomProperties Pin (PinId=F9662B8741BEE1DC19D811AA95DEEB0A,PinName=&quot;Default Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;rgba&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;(R=1.000000,G=1.000000,B=1.000000,A=1.000000)&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=3E3FA8D046A960C2757BE8880F1B4607,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_1 412DAC7347AF028C4028B88CED60E574,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=DDC936B54D62F378638E008D8831EAC0,PinName=&quot;Output2&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=D0CD5B9442149DC1D999E6B98D94E4AE,PinName=&quot;Output3&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;green&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=EEEAB6804AB7D3CD074CD2B03977B3C4,PinName=&quot;Output4&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;blue&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A0531D4B4DA6B24A43EF5486E759869F,PinName=&quot;Output5&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;alpha&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_3&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionDesaturation Name=&quot;MaterialExpressionDesaturation_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionDesaturation_0&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_2.MaterialExpressionReroute_0&quot;&#39;)
      Fraction=(Expression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialGraphNode_4.MaterialExpressionScalarParameter_0&quot;&#39;)
      MaterialExpressionEditorX=-608
      MaterialExpressionEditorY=320
      MaterialExpressionGuid=1ADAEBCF42F07B7A761C7281BFAE1B5C
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
      Desc=&quot;彩度&quot;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionDesaturation&#39;&quot;MaterialExpressionDesaturation_0&quot;&#39;
   NodePosX=-608
   NodePosY=320
   AdvancedPinDisplay=Hidden
   NodeComment=&quot;彩度&quot;
   NodeGuid=1E2CEC5F4292B12923257591EFD913B7
   CustomProperties Pin (PinId=BE1F8C344DAFBD4F81310C8E1D8762AA,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_2 79AA4FC34DCB2287A22C5A9070702486,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A57AB1354D5A8870A54FDBB3F072D44E,PinName=&quot;Fraction&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_4 B43EE8604F879610CEA3F4AF64F3B74D,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=D81C2597484A2C8BD43EB982487AA50E,PinName=&quot;Luminance Factors&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;rgba&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;(R=0.300000,G=0.590000,B=0.110000,A=0.000000)&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=4893114749A58913125B73BA62B5C424,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_1 6356A0D7486D0B048ABE34870655F461,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_4&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionScalarParameter Name=&quot;MaterialExpressionScalarParameter_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionScalarParameter_0&quot;
      DefaultValue=0.500000
      SliderMax=1.000000
      ParameterName=&quot;Saturation&quot;
      ExpressionGUID=72BF979844EF12ADDCA660ABE98E6CE1
      Group=&quot;84 - Glitch Color Filter&quot;
      SortPriority=1
      MaterialExpressionEditorX=-832
      MaterialExpressionEditorY=432
      MaterialExpressionGuid=DE9E396E44FA3290F7AC799EEDC4E589
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
      Desc=&quot;彩度&quot;
      bCommentBubbleVisible=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialExpressionScalarParameter_0&quot;&#39;
   NodePosX=-832
   NodePosY=432
   bCommentBubbleVisible=True
   bCanRenameNode=True
   NodeComment=&quot;彩度&quot;
   NodeGuid=9936EA144224D0355FEC05B4ECB9F8C0
   CustomProperties Pin (PinId=55E1E2D641F57EB7F92046BD3D376A93,PinName=&quot;Default Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.5&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=B43EE8604F879610CEA3F4AF64F3B74D,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_3 A57AB1354D5A8870A54FDBB3F072D44E,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_5&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionStaticSwitchParameter Name=&quot;MaterialExpressionStaticSwitchParameter_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionStaticSwitchParameter_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialGraphNode_1.MaterialExpressionMultiply_4&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_1.MaterialExpressionReroute_13&quot;&#39;)
      DefaultValue=True
      ParameterName=&quot;UseColorFilter&quot;
      ExpressionGUID=F0CAB8FE497171ED9F82E0882B9617BB
      Group=&quot;84 - Glitch Color Filter&quot;
      SortPriority=0
      MaterialExpressionEditorX=-64
      MaterialExpressionEditorY=400
      MaterialExpressionGuid=FB930DBD43070D075B4598940D1DBC5D
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
      Desc=&quot;カラーフィルタを使用するか&quot;
      bCommentBubbleVisible=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionStaticSwitchParameter&#39;&quot;MaterialExpressionStaticSwitchParameter_0&quot;&#39;
   NodePosX=-64
   NodePosY=400
   bCommentBubbleVisible=True
   bCanRenameNode=True
   NodeComment=&quot;カラーフィルタを使用するか&quot;
   NodeGuid=C9A5500E4AB52E5642276FA88FE742C7
   CustomProperties Pin (PinId=5B6C7EB148EA7CE3E685339466C90978,PinName=&quot;True&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_1 0325907B4C7011F63777BDA7B3C8BEF0,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=B904F95146FA91E3600131872A058085,PinName=&quot;False&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_1 4521881B4C3CBACB239B9BB327AF2D47,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=6E6F155B419A8122EB1BA0955DE663FF,PinName=&quot;Default Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;true&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=90E589814DDC41A2B5B2AABCE92D93C1,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_0 DB3AD0614FEA290D511DE2B757121433,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_12&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_12&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_6.MaterialExpressionFunctionInput_0&quot;&#39;)
      MaterialExpressionEditorX=-832
      MaterialExpressionEditorY=624
      MaterialExpressionGuid=B03CBC5443253BB3FF060ABDCD7D4086
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_12&quot;&#39;
   NodePosX=-832
   NodePosY=624
   bCanRenameNode=False
   NodeGuid=840EBD084A80BFC43E52D8BFCAFAB5FD
   CustomProperties Pin (PinId=0FC5520449A490DC023DC28D2741879E,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_6 DB4B8ADA47998B174B509380DB613ED9,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=AA8ABE304871DDE02B924BBD952605D2,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_1 C85C605E4E65D71FB975C7A45D2A4D97,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_1&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_13&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_13&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_0.MaterialExpressionReroute_12&quot;&#39;)
      MaterialExpressionEditorX=-144
      MaterialExpressionEditorY=624
      MaterialExpressionGuid=DE6890F6431008994C3FF4B525BE855E
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_13&quot;&#39;
   NodePosX=-144
   NodePosY=624
   bCanRenameNode=False
   NodeGuid=EDD902F144F8145844BC0F94F1616BFE
   CustomProperties Pin (PinId=C85C605E4E65D71FB975C7A45D2A4D97,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_0 AA8ABE304871DDE02B924BBD952605D2,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=4521881B4C3CBACB239B9BB327AF2D47,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_5 B904F95146FA91E3600131872A058085,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_6&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionInput Name=&quot;MaterialExpressionFunctionInput_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionInput_0&quot;
      InputName=&quot;Base Color&quot;
      Id=08DF0DB444B727E0149A08964972938C
      PreviewValue=(X=0.500000,Y=0.500000,Z=0.500000,W=1.000000)
      MaterialExpressionEditorX=-1104
      MaterialExpressionEditorY=432
      MaterialExpressionGuid=10F0B80547EF4BC491DE77B0FEAFE751
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialExpressionFunctionInput_0&quot;&#39;
   NodePosX=-1104
   NodePosY=432
   NodeGuid=0EC518AD49398AFC79DC67A1A53BDE18
   CustomProperties Pin (PinId=BD38DF424A008EF08EB1C9A9368ACF3D,PinName=&quot;Preview&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=DB4B8ADA47998B174B509380DB613ED9,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_0 0FC5520449A490DC023DC28D2741879E,MaterialGraphNode_Knot_2 DBFCB5464607D9A07B0FC589CFF167D9,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_2&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_0&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_6.MaterialExpressionFunctionInput_0&quot;&#39;)
      MaterialExpressionEditorX=-832
      MaterialExpressionEditorY=352
      MaterialExpressionGuid=D432E58E404A43661C2822A268645993
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_1&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_0&quot;&#39;
   NodePosX=-832
   NodePosY=352
   bCanRenameNode=False
   NodeGuid=765916A04B70F1E18ECC87A0351DFE45
   CustomProperties Pin (PinId=DBFCB5464607D9A07B0FC589CFF167D9,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_6 DB4B8ADA47998B174B509380DB613ED9,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=79AA4FC34DCB2287A22C5A9070702486,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_3 BE1F8C344DAFBD4F81310C8E1D8762AA,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Comment Name=&quot;MaterialGraphNode_Comment_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionComment Name=&quot;MaterialExpressionComment_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionComment_1&quot;
      SizeX=1488
      SizeY=416
      Text=&quot;カラーフィルタ&quot;
      MaterialExpressionEditorX=-1152
      MaterialExpressionEditorY=256
      MaterialExpressionGuid=995199E748CB40C20B02A9AD3E1811C6
      Function=/Script/Engine.MaterialFunction&#39;&quot;/Engine/Transient.MF_GlitchColorFilter&quot;&#39;
   End Object
   MaterialExpressionComment=/Script/Engine.MaterialExpressionComment&#39;&quot;MaterialExpressionComment_1&quot;&#39;
   NodePosX=-1152
   NodePosY=256
   NodeWidth=1488
   NodeHeight=416
   NodeComment=&quot;カラーフィルタ&quot;
   NodeGuid=798A3FF4418ACEBFE95FBEB15D365174
End Object</code></pre></div>
</div></div>



<h3 class="wp-block-heading"><span id="toc6">ブレ</span></h3>



<figure class="wp-block-image size-large"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchBlur.png"><img loading="lazy" decoding="async" width="1024" height="312" src="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchBlur-1024x312.png" alt="" class="wp-image-641" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchBlur-1024x312.png 1024w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchBlur-300x91.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchBlur-768x234.png 768w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchBlur-1536x467.png 1536w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_GlitchBlur.png 2024w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><figcaption class="wp-element-caption">MF_GlitchBlur</figcaption></figure>



<div class="wp-block-cocoon-blocks-toggle-box-1 toggle-wrap toggle-box block-box"><input id="toggle-checkbox-20230226163251" class="toggle-checkbox" type="checkbox"/><label class="toggle-button" for="toggle-checkbox-20230226163251">コピペ用コード(5.1.1)</label><div class="toggle-content">
<div class="hcb_wrap"><pre class="prism off-numbers lang-plain"><code>Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionOutput Name=&quot;MaterialExpressionFunctionOutput_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionOutput_0&quot;
      OutputName=&quot;UVs&quot;
      A=(Expression=/Script/Engine.MaterialExpressionStaticSwitchParameter&#39;&quot;MaterialGraphNode_7.MaterialExpressionStaticSwitchParameter_3&quot;&#39;)
      bLastPreviewed=True
      Id=45D69E41443A63EBD7F3C9AC8F1A63A1
      MaterialExpressionEditorX=32
      MaterialExpressionEditorY=528
      MaterialExpressionGuid=F11029DF4258F1104D2B7887081FF787
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_5&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionOutput&#39;&quot;MaterialExpressionFunctionOutput_0&quot;&#39;
   NodePosX=32
   NodePosY=528
   NodeGuid=9EBCEABC44BC6BA1B059FBBD35474CE5
   CustomProperties Pin (PinId=FC92E45B464A70AE180A999539B40CE4,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_7 CAA766A243BE613782770FA49216DC1E,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=54E53F30451FCD849E409DA7B677CEC8,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_1&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTextureCoordinate Name=&quot;MaterialExpressionTextureCoordinate_3&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTextureCoordinate_3&quot;
      MaterialExpressionEditorX=-560
      MaterialExpressionEditorY=432
      MaterialExpressionGuid=69DFEDD0426B718AEBF396A435467CDB
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_5&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialExpressionTextureCoordinate_3&quot;&#39;
   NodePosX=-560
   NodePosY=432
   AdvancedPinDisplay=Hidden
   NodeGuid=3BDAAFFC4D11D114BE5770B3E0A1DFFE
   CustomProperties Pin (PinId=9C798109424F1C1EF1F25183ECF58E7E,PinName=&quot;Coordinate Index&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;int&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=0F02FA6C47387B41A7AC2B8F192C309F,PinName=&quot;UTiling&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=53C76D5B4D9243632F36539CF4886C63,PinName=&quot;VTiling&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=6204B3FB45B5198957368693B76A2CF1,PinName=&quot;Un Mirror U&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=919CEE044CDC3ADDC29E57B9F03B3640,PinName=&quot;Un Mirror V&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=AD23B65F48E0CA91014FC7B042507D26,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_2 7375DD2D412556F3B7BBBDBB92B75533,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_2&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionAdd Name=&quot;MaterialExpressionAdd_6&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionAdd_6&quot;
      A=(Expression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialGraphNode_1.MaterialExpressionTextureCoordinate_3&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialGraphNode_3.MaterialExpressionMultiply_3&quot;&#39;)
      MaterialExpressionEditorX=-320
      MaterialExpressionEditorY=480
      MaterialExpressionGuid=3CB638F24655E6AA8D577C990D345484
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_5&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionAdd&#39;&quot;MaterialExpressionAdd_6&quot;&#39;
   NodePosX=-320
   NodePosY=480
   NodeGuid=4E6963DD43945C67780F53B9F08C2B35
   CustomProperties Pin (PinId=7375DD2D412556F3B7BBBDBB92B75533,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_1 AD23B65F48E0CA91014FC7B042507D26,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=5E96667D48F43DAF1F3427AC0AE4CEAE,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_3 4DE1DDF84888C50DC53964B69110F730,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=600A1359486C7915C00574A31AA9113A,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_7 EC459C044F572B66B791B389A225552C,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_3&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMultiply Name=&quot;MaterialExpressionMultiply_3&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMultiply_3&quot;
      A=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_0.MaterialExpressionReroute_0&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionAppendVector&#39;&quot;MaterialGraphNode_4.MaterialExpressionAppendVector_0&quot;&#39;)
      ConstB=0.095238
      MaterialExpressionEditorX=-464
      MaterialExpressionEditorY=528
      MaterialExpressionGuid=4E66F9E441B4CE5B498CE7A35C20F56A
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_5&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialExpressionMultiply_3&quot;&#39;
   NodePosX=-464
   NodePosY=528
   NodeGuid=049B3D2A424EFBAED8E340A0A2C517EA
   CustomProperties Pin (PinId=A06C267B4EEE14D3DA5FA3BB54C19D3F,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_Knot_0 42E875A646227946B0691A9291C5A1F7,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=C135C74C4C005ABF671E49971BE12107,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.095238&quot;,LinkedTo=(MaterialGraphNode_4 B1E226F140FDE1906A17E5B7C83B133F,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=4DE1DDF84888C50DC53964B69110F730,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_2 5E96667D48F43DAF1F3427AC0AE4CEAE,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_4&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionAppendVector Name=&quot;MaterialExpressionAppendVector_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionAppendVector_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialGraphNode_5.MaterialExpressionScalarParameter_9&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionConstant&#39;&quot;MaterialGraphNode_6.MaterialExpressionConstant_6&quot;&#39;)
      MaterialExpressionEditorX=-608
      MaterialExpressionEditorY=672
      MaterialExpressionGuid=0E5DE91E4D97149116A915BF5AEAB8FC
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_5&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionAppendVector&#39;&quot;MaterialExpressionAppendVector_0&quot;&#39;
   NodePosX=-608
   NodePosY=672
   NodeGuid=37BD7E4149BCFC3A86551EB7429D7A81
   CustomProperties Pin (PinId=C8A42B5F49FA3A516FEBCB92A29912DC,PinName=&quot;A&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_5 F2F69B1343A501001C2540AFE9547DBB,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=D0C1DAC14375C2B1A1EB84A1A6D2F5C1,PinName=&quot;B&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_6 9671FAFB424832C0CC41BC9B9EDEB692,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=B1E226F140FDE1906A17E5B7C83B133F,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_3 C135C74C4C005ABF671E49971BE12107,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_5&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionScalarParameter Name=&quot;MaterialExpressionScalarParameter_9&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionScalarParameter_9&quot;
      DefaultValue=0.020000
      SliderMin=0.001000
      SliderMax=0.100000
      ParameterName=&quot;BlurSlideScale&quot;
      ExpressionGUID=C4575FFD493C15EDFBA70086A8C06E97
      Group=&quot;85.Glitch Blur&quot;
      SortPriority=3
      MaterialExpressionEditorX=-848
      MaterialExpressionEditorY=640
      MaterialExpressionGuid=F96ADB0D4630D19205A021BDBC6F0E69
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_5&quot;&#39;
      Desc=&quot;ずらし幅&quot;
      bCommentBubbleVisible=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionScalarParameter&#39;&quot;MaterialExpressionScalarParameter_9&quot;&#39;
   NodePosX=-848
   NodePosY=640
   bCommentBubbleVisible=True
   bCanRenameNode=True
   NodeComment=&quot;ずらし幅&quot;
   NodeGuid=59D1D41842BB03F95079138073EE5995
   CustomProperties Pin (PinId=48A52A16469C0CA5E9FFCE893A05D0F2,PinName=&quot;Default Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.02&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=F2F69B1343A501001C2540AFE9547DBB,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_4 C8A42B5F49FA3A516FEBCB92A29912DC,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_6&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionConstant Name=&quot;MaterialExpressionConstant_6&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionConstant_6&quot;
      MaterialExpressionEditorX=-800
      MaterialExpressionEditorY=736
      MaterialExpressionGuid=0B4059E74726B162841C7CABDE9595F1
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_5&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionConstant&#39;&quot;MaterialExpressionConstant_6&quot;&#39;
   NodePosX=-800
   NodePosY=736
   NodeGuid=9166EE3443683929061A758D89F93E78
   CustomProperties Pin (PinId=7589AB4C4E4AED9F7C9215A3CB671E08,PinName=&quot;Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=9671FAFB424832C0CC41BC9B9EDEB692,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_4 D0C1DAC14375C2B1A1EB84A1A6D2F5C1,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_7&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionStaticSwitchParameter Name=&quot;MaterialExpressionStaticSwitchParameter_3&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionStaticSwitchParameter_3&quot;
      A=(Expression=/Script/Engine.MaterialExpressionAdd&#39;&quot;MaterialGraphNode_2.MaterialExpressionAdd_6&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialGraphNode_8.MaterialExpressionTextureCoordinate_4&quot;&#39;)
      DefaultValue=True
      ParameterName=&quot;UseBlur&quot;
      ExpressionGUID=04A4AF5041893EEC714DDA8B8C04FC81
      Group=&quot;85.Glitch Blur&quot;
      SortPriority=0
      MaterialExpressionEditorX=-192
      MaterialExpressionEditorY=544
      MaterialExpressionGuid=FB930DBD43070D075B4598940D1DBC5D
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_5&quot;&#39;
      Desc=&quot;ブラーを発生させるか&quot;
      bCommentBubbleVisible=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionStaticSwitchParameter&#39;&quot;MaterialExpressionStaticSwitchParameter_3&quot;&#39;
   NodePosX=-192
   NodePosY=544
   bCommentBubbleVisible=True
   bCanRenameNode=True
   NodeComment=&quot;ブラーを発生させるか&quot;
   NodeGuid=86F5476748D9BDBC33E50889812DBFEC
   CustomProperties Pin (PinId=EC459C044F572B66B791B389A225552C,PinName=&quot;True&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_2 600A1359486C7915C00574A31AA9113A,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=66120CF740B5E41CB11C0E95283FCD83,PinName=&quot;False&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_8 3530218E4B40F4DE28C430924363296A,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=7EA7FD7A427C4EAE252E8E9F118ADA1C,PinName=&quot;Default Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;true&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=CAA766A243BE613782770FA49216DC1E,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_0 FC92E45B464A70AE180A999539B40CE4,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_8&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTextureCoordinate Name=&quot;MaterialExpressionTextureCoordinate_4&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTextureCoordinate_4&quot;
      MaterialExpressionEditorX=-432
      MaterialExpressionEditorY=672
      MaterialExpressionGuid=69DFEDD0426B718AEBF396A435467CDB
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_5&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialExpressionTextureCoordinate_4&quot;&#39;
   NodePosX=-432
   NodePosY=672
   AdvancedPinDisplay=Hidden
   NodeGuid=1A9DDC9F43FA638256A1B79A74830AFB
   CustomProperties Pin (PinId=F9DC909E4B7C52399B47FCB8CB3BC574,PinName=&quot;Coordinate Index&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;int&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=2AEC463E4524504BAB9AD691B836A535,PinName=&quot;UTiling&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=6C5E36DE4ADF68579AD91B8183FC0561,PinName=&quot;VTiling&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=CC7A6FB54993C77CF8D8F79AA6F7F5C3,PinName=&quot;Un Mirror U&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=688873D047C14018B33A0BBC55F506E9,PinName=&quot;Un Mirror V&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=3530218E4B40F4DE28C430924363296A,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_7 66120CF740B5E41CB11C0E95283FCD83,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_9&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionAppendVector Name=&quot;MaterialExpressionAppendVector_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionAppendVector_1&quot;
      A=(Expression=/Script/Engine.MaterialExpressionVectorParameter&#39;&quot;MaterialGraphNode_11.MaterialExpressionVectorParameter_0&quot;&#39;,OutputIndex=1,Mask=1,MaskR=1)
      B=(Expression=/Script/Engine.MaterialExpressionVectorParameter&#39;&quot;MaterialGraphNode_11.MaterialExpressionVectorParameter_0&quot;&#39;,OutputIndex=2,Mask=1,MaskG=1)
      MaterialExpressionEditorX=-1472
      MaterialExpressionEditorY=464
      MaterialExpressionGuid=92DFA2AE4C73258594E96E8A8818C73A
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_5&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionAppendVector&#39;&quot;MaterialExpressionAppendVector_1&quot;&#39;
   NodePosX=-1472
   NodePosY=464
   NodeGuid=5DC13D134CA1AB7885EB4693DCE35E71
   CustomProperties Pin (PinId=1272584E40168C1B0A656C8796391C61,PinName=&quot;A&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_11 B9A2D1D24F6AF15A5DB407B17742D41B,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=D2C1240B4DC0169BCE90EF88DB247D6A,PinName=&quot;B&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_11 83CFC35648D4532CF9966AA0B4A15555,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=BEA0625140850094B46DAB8EB5847D2E,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_17 83DA94B346EF127603EA78AFDE3401EC,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_10&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionAppendVector Name=&quot;MaterialExpressionAppendVector_3&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionAppendVector_3&quot;
      A=(Expression=/Script/Engine.MaterialExpressionVectorParameter&#39;&quot;MaterialGraphNode_11.MaterialExpressionVectorParameter_0&quot;&#39;,OutputIndex=3,Mask=1,MaskB=1)
      B=(Expression=/Script/Engine.MaterialExpressionVectorParameter&#39;&quot;MaterialGraphNode_11.MaterialExpressionVectorParameter_0&quot;&#39;,OutputIndex=4,Mask=1,MaskA=1)
      MaterialExpressionEditorX=-1472
      MaterialExpressionEditorY=576
      MaterialExpressionGuid=92DFA2AE4C73258594E96E8A8818C73A
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_5&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionAppendVector&#39;&quot;MaterialExpressionAppendVector_3&quot;&#39;
   NodePosX=-1472
   NodePosY=576
   NodeGuid=17F7FF1A4860E5679AC7EFA0F28813B5
   CustomProperties Pin (PinId=AE8ED4FE4933674338A466BF85FC21BF,PinName=&quot;A&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_11 23E1D69E483C132A183699A33A58860D,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A39F252A4A5E0A389B7B3BAD521AFD20,PinName=&quot;B&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_11 8B3CCDF74888E6A463AC868ACE25CC2B,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=81929B894044B8A8E275DCB6222626CD,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_13 50D680EA4DF794DC53C275828544110E,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_11&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionVectorParameter Name=&quot;MaterialExpressionVectorParameter_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionVectorParameter_0&quot;
      DefaultValue=(R=1.000000,G=3.000000,B=0.020000,A=0.010000)
      ChannelNames=(R=NSLOCTEXT(&quot;&quot;, &quot;ACD4AE264F840A67011742951C1096F5&quot;, &quot;Scale U&quot;),G=NSLOCTEXT(&quot;&quot;, &quot;67878C0C47E842B6D21561A880AF2B5F&quot;, &quot;Scale V&quot;),B=NSLOCTEXT(&quot;&quot;, &quot;8848094548644A7971ABC281A8524614&quot;, &quot;Scroll U&quot;),A=NSLOCTEXT(&quot;&quot;, &quot;FA40F3C64173A0F7C59D68A8E7896DB3&quot;, &quot;Scroll V&quot;))
      ParameterName=&quot;BlurParams&quot;
      ExpressionGUID=D0C5824141244E72FF7EF9A91AF1D011
      Group=&quot;85.Glitch Blur&quot;
      SortPriority=3
      MaterialExpressionEditorX=-1728
      MaterialExpressionEditorY=448
      MaterialExpressionGuid=266D7DC44E1F8FB2A7E4D096CE9F444E
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_5&quot;&#39;
      bShowOutputNameOnPin=True
      bCollapsed=True
      Outputs(1)=(OutputName=&quot;Scale U&quot;)
      Outputs(2)=(OutputName=&quot;Scale V&quot;)
      Outputs(3)=(OutputName=&quot;Scroll U&quot;)
      Outputs(4)=(OutputName=&quot;Scroll V&quot;)
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionVectorParameter&#39;&quot;MaterialExpressionVectorParameter_0&quot;&#39;
   NodePosX=-1728
   NodePosY=448
   bCanRenameNode=True
   NodeGuid=A36C4D124D06E1377879C68FF08353EC
   CustomProperties Pin (PinId=F81BD90542EFE8655A7C65981EE57882,PinName=&quot;Default Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;rgba&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;(R=1.000000,G=3.000000,B=0.020000,A=0.010000)&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A590474647903435F6BD969B95D7601B,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=B9A2D1D24F6AF15A5DB407B17742D41B,PinName=&quot;Scale U&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_9 1272584E40168C1B0A656C8796391C61,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=83CFC35648D4532CF9966AA0B4A15555,PinName=&quot;Scale V&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;green&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_9 D2C1240B4DC0169BCE90EF88DB247D6A,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=23E1D69E483C132A183699A33A58860D,PinName=&quot;Scroll U&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;blue&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_10 AE8ED4FE4933674338A466BF85FC21BF,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=8B3CCDF74888E6A463AC868ACE25CC2B,PinName=&quot;Scroll V&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;alpha&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_10 A39F252A4A5E0A389B7B3BAD521AFD20,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_12&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTextureObjectParameter Name=&quot;MaterialExpressionTextureObjectParameter_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTextureObjectParameter_1&quot;
      ParameterName=&quot;BlurTexture&quot;
      ExpressionGUID=759E52F94E87566637D29B9B6DF295BA
      Group=&quot;85.Glitch Blur&quot;
      SortPriority=1
      Texture=/Script/Engine.Texture2D&#39;&quot;/Game/Developers/yoshida/Materials/Textures/T_8x8_Normal.T_8x8_Normal&quot;&#39;
      SamplerType=SAMPLERTYPE_Normal
      MaterialExpressionEditorX=-1184
      MaterialExpressionEditorY=496
      MaterialExpressionGuid=919DBEA448F80A32B2EA7CADAA8E95FF
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_5&quot;&#39;
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTextureObjectParameter&#39;&quot;MaterialExpressionTextureObjectParameter_1&quot;&#39;
   NodePosX=-1184
   NodePosY=496
   AdvancedPinDisplay=Hidden
   bCanRenameNode=True
   NodeGuid=65F9EC1D4D10E2EF160A78A9F84182A9
   CustomProperties Pin (PinId=3F41E5434CC753AF2BD99C875CABB09F,PinName=&quot;MipValueMode&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.ETextureMipValueMode&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;None (use computed mip level)&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=4279E5DE4A86C854F35E1599F0AA4A92,PinName=&quot;Sampler Source&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.ESamplerSourceMode&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;From texture asset&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=C5A92B4F4573CC5CDEA608B499B63D5D,PinName=&quot;Sampler Type&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.EMaterialSamplerType&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;Normal&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=BE0C6B5A4E63C4912E86D88AABE2C878,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_14 2B5264A44E7D5A369723D1AC5DE3BA0F,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_13&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionPanner Name=&quot;MaterialExpressionPanner_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionPanner_0&quot;
      Coordinate=(Expression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialGraphNode_17.MaterialExpressionMultiply_2&quot;&#39;)
      Speed=(Expression=/Script/Engine.MaterialExpressionAppendVector&#39;&quot;MaterialGraphNode_10.MaterialExpressionAppendVector_3&quot;&#39;)
      MaterialExpressionEditorX=-1184
      MaterialExpressionEditorY=336
      MaterialExpressionGuid=E643D272450C7CF7AF9B7CBB42A5AFD0
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_5&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionPanner&#39;&quot;MaterialExpressionPanner_0&quot;&#39;
   NodePosX=-1184
   NodePosY=336
   NodeGuid=AD1C99134CEAF7999D9F8FB4D7958235
   CustomProperties Pin (PinId=68026FFF4E446FC770363D9D90C4B1A2,PinName=&quot;Coordinate&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;int&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0&quot;,LinkedTo=(MaterialGraphNode_17 87B4D5DE464762D39B65C6ABAA6DEC20,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=B3CE29E843F807838D2FCDA4EB9086CA,PinName=&quot;Time&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=50D680EA4DF794DC53C275828544110E,PinName=&quot;Speed&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;rg&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;X=0.000 Y=0.000&quot;,LinkedTo=(MaterialGraphNode_10 81929B894044B8A8E275DCB6222626CD,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=B570384044A1D6C732FE038153829DEC,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_14 EDB612784CA6265B87DC99A4B90C8A28,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_14&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTextureSample Name=&quot;MaterialExpressionTextureSample_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTextureSample_1&quot;
      Coordinates=(Expression=/Script/Engine.MaterialExpressionPanner&#39;&quot;MaterialGraphNode_13.MaterialExpressionPanner_0&quot;&#39;)
      TextureObject=(Expression=/Script/Engine.MaterialExpressionTextureObjectParameter&#39;&quot;MaterialGraphNode_12.MaterialExpressionTextureObjectParameter_1&quot;&#39;)
      Texture=/Script/Engine.Texture2D&#39;&quot;/Game/Developers/yoshida/Materials/Textures/T_8x8_Normal.T_8x8_Normal&quot;&#39;
      SamplerType=SAMPLERTYPE_Normal
      MaterialExpressionEditorX=-992
      MaterialExpressionEditorY=336
      MaterialExpressionGuid=AA3E51ED48B4F695ACA00E9AB8937BB5
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_5&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTextureSample&#39;&quot;MaterialExpressionTextureSample_1&quot;&#39;
   NodePosX=-992
   NodePosY=336
   AdvancedPinDisplay=Hidden
   NodeGuid=DBB861E1408B071C9B5694A9328B6C97
   CustomProperties Pin (PinId=EDB612784CA6265B87DC99A4B90C8A28,PinName=&quot;UVs&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0&quot;,LinkedTo=(MaterialGraphNode_13 B570384044A1D6C732FE038153829DEC,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=2B5264A44E7D5A369723D1AC5DE3BA0F,PinName=&quot;Tex&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_12 BE0C6B5A4E63C4912E86D88AABE2C878,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=DBE2BFA24668366BE7E8EBAC80F2B4A6,PinName=&quot;Apply View MipBias&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=2EA30FD548C47E95D52C6D8B410A99AF,PinName=&quot;MipValueMode&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.ETextureMipValueMode&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;None (use computed mip level)&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=6A3A2D4F42E9282E2FE05488A231F847,PinName=&quot;Sampler Source&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.ESamplerSourceMode&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;From texture asset&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=1D54DC304C028AC9F582E695DCD3556B,PinName=&quot;Sampler Type&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;byte&quot;,PinType.PinSubCategoryObject=/Script/CoreUObject.Enum&#39;&quot;/Script/Engine.EMaterialSamplerType&quot;&#39;,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;Normal&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=62AA080A42CA73BD597D7D9E36732EF3,PinName=&quot;RGB&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=C875F0884DBECC15BBCCEDB8D6335DBD,PinName=&quot;R&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_15 FEB2913F437C26981E816C8AE471F7FF,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=98AD33334348EA1854CE6F8CA41B42BC,PinName=&quot;G&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;green&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_15 04EFCA654636A8522705DF88AA3155F0,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=F0B47A4F44D34E618C7AA0BB3752DD7E,PinName=&quot;B&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;blue&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=0E4C48954BE9D2BE031C2BB78A50220B,PinName=&quot;A&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;alpha&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=21FF132F4317D20276A684AAAE4721E0,PinName=&quot;RGBA&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;mask&quot;,PinType.PinSubCategory=&quot;rgba&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_15&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionAppendVector Name=&quot;MaterialExpressionAppendVector_2&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionAppendVector_2&quot;
      A=(Expression=/Script/Engine.MaterialExpressionTextureSample&#39;&quot;MaterialGraphNode_14.MaterialExpressionTextureSample_1&quot;&#39;,OutputIndex=1,Mask=1,MaskR=1)
      B=(Expression=/Script/Engine.MaterialExpressionTextureSample&#39;&quot;MaterialGraphNode_14.MaterialExpressionTextureSample_1&quot;&#39;,OutputIndex=2,Mask=1,MaskG=1)
      MaterialExpressionEditorX=-736
      MaterialExpressionEditorY=368
      MaterialExpressionGuid=2A15141D472F0EEE3531148CA865C049
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_5&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionAppendVector&#39;&quot;MaterialExpressionAppendVector_2&quot;&#39;
   NodePosX=-736
   NodePosY=368
   NodeGuid=194EC111416EC17E2E60C78D342718E0
   CustomProperties Pin (PinId=FEB2913F437C26981E816C8AE471F7FF,PinName=&quot;A&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_14 C875F0884DBECC15BBCCEDB8D6335DBD,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=04EFCA654636A8522705DF88AA3155F0,PinName=&quot;B&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_14 98AD33334348EA1854CE6F8CA41B42BC,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=666DE47B4F4031C4A860F9A6899E6726,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_0 0C36E2F44DFCA633D478F5BC18110ECA,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_16&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTextureCoordinate Name=&quot;MaterialExpressionTextureCoordinate_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTextureCoordinate_1&quot;
      MaterialExpressionEditorX=-1744
      MaterialExpressionEditorY=336
      MaterialExpressionGuid=7078B2D1489FA270A3972CB3B5CF95CD
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_5&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialExpressionTextureCoordinate_1&quot;&#39;
   NodePosX=-1744
   NodePosY=336
   AdvancedPinDisplay=Hidden
   NodeGuid=86EC2A514E6A8E705ACFF28D09E13873
   CustomProperties Pin (PinId=4DC8E075480718141824CCA7AF85D268,PinName=&quot;Coordinate Index&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;int&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=2476E64447AA3BDD980E2D9A281CEECC,PinName=&quot;UTiling&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=029473554D69C850BB74E48DE26E1943,PinName=&quot;VTiling&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=862B39944D2AA87EFFDBB08D3C494F43,PinName=&quot;Un Mirror U&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=FCAA0C3647823FB69F478ABCD03D2AE6,PinName=&quot;Un Mirror V&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=7AAE08F043C2AF28958767B3ADD59646,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_18 F7DEF780430E3E15A3C80F9680BBF997,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_17&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMultiply Name=&quot;MaterialExpressionMultiply_2&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMultiply_2&quot;
      A=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_18.MaterialExpressionFunctionInput_0&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionAppendVector&#39;&quot;MaterialGraphNode_9.MaterialExpressionAppendVector_1&quot;&#39;)
      MaterialExpressionEditorX=-1328
      MaterialExpressionEditorY=336
      MaterialExpressionGuid=DA0891614E07EC5578CB158BA5B0EEF3
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_5&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialExpressionMultiply_2&quot;&#39;
   NodePosX=-1328
   NodePosY=336
   NodeGuid=D43142E74982B58617A2328FA05368F3
   CustomProperties Pin (PinId=E9BACCBE490E5EFFFEE133BCC3E4319D,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_18 5080DE824BD5ECB447FBBF8A64F0A322,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=83DA94B346EF127603EA78AFDE3401EC,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_9 BEA0625140850094B46DAB8EB5847D2E,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=87B4D5DE464762D39B65C6ABAA6DEC20,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_13 68026FFF4E446FC770363D9D90C4B1A2,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_0&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionAppendVector&#39;&quot;MaterialGraphNode_15.MaterialExpressionAppendVector_2&quot;&#39;)
      MaterialExpressionEditorX=-592
      MaterialExpressionEditorY=560
      MaterialExpressionGuid=DA2F348940A0EDBE3D0DFE99C7B3AD09
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_5&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_0&quot;&#39;
   NodePosX=-592
   NodePosY=560
   bCanRenameNode=False
   NodeGuid=5BE5F455459050A95C3B79AC58BB6597
   CustomProperties Pin (PinId=0C36E2F44DFCA633D478F5BC18110ECA,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_15 666DE47B4F4031C4A860F9A6899E6726,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=42E875A646227946B0691A9291C5A1F7,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_3 A06C267B4EEE14D3DA5FA3BB54C19D3F,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_18&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionInput Name=&quot;MaterialExpressionFunctionInput_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionInput_0&quot;
      Preview=(Expression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialGraphNode_16.MaterialExpressionTextureCoordinate_1&quot;&#39;)
      InputName=&quot;UVs&quot;
      Id=93EB52E749DD66694BAC7BAF27AF3535
      InputType=FunctionInput_Vector2
      bUsePreviewValueAsDefault=True
      MaterialExpressionEditorX=-1552
      MaterialExpressionEditorY=336
      MaterialExpressionGuid=588C05FA4AD1D5AC81E9B0A8706B3932
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_5&quot;&#39;
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialExpressionFunctionInput_0&quot;&#39;
   NodePosX=-1552
   NodePosY=336
   NodeGuid=D5B9A3034C7453DF6C1699BD84BCA9CA
   CustomProperties Pin (PinId=F7DEF780430E3E15A3C80F9680BBF997,PinName=&quot;Preview&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_16 7AAE08F043C2AF28958767B3ADD59646,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=5080DE824BD5ECB447FBBF8A64F0A322,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_17 E9BACCBE490E5EFFFEE133BCC3E4319D,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Comment Name=&quot;MaterialGraphNode_Comment_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionComment Name=&quot;MaterialExpressionComment_4&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionComment_4&quot;
      SizeX=1984
      SizeY=576
      Text=&quot;ブレ&quot;
      MaterialExpressionEditorX=-1792
      MaterialExpressionEditorY=256
      MaterialExpressionGuid=A1729EA64931B180341C1CB30A55A721
      Function=/Script/Engine.MaterialFunction&#39;&quot;/Engine/Transient.MF_GlitchBlur&quot;&#39;
   End Object
   MaterialExpressionComment=/Script/Engine.MaterialExpressionComment&#39;&quot;MaterialExpressionComment_4&quot;&#39;
   NodePosX=-1792
   NodePosY=256
   NodeWidth=1984
   NodeHeight=576
   NodeComment=&quot;ブレ&quot;
   NodeGuid=97CD8FAE400F6EE22BE5428639F63C72
End Object</code></pre></div>
</div></div>



<h3 class="wp-block-heading"><span id="toc7">Materialの作成</span></h3>



<p>Actor Positionを使って、配置でボーダーとブレのをずらす</p>



<figure class="wp-block-image size-large"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/02/M_AnalogDisplay.png"><img loading="lazy" decoding="async" width="1024" height="218" src="https://ydlprog.ddns.net/wp-content/uploads/2023/02/M_AnalogDisplay-1024x218.png" alt="" class="wp-image-646" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/02/M_AnalogDisplay-1024x218.png 1024w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/M_AnalogDisplay-300x64.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/M_AnalogDisplay-768x164.png 768w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/M_AnalogDisplay-1536x327.png 1536w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/M_AnalogDisplay-2048x437.png 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>
]]></content:encoded>
					
					<wfw:commentRss>https://ydlprog.ddns.net/2023/02/26/%e8%b5%b0%e6%9f%bb%e7%b7%9amaterial/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>グラフ描画(UE)</title>
		<link>https://ydlprog.ddns.net/2023/02/12/%e3%82%b0%e3%83%aa%e3%83%83%e3%83%89%e6%8f%8f%e7%94%bbue-material/</link>
					<comments>https://ydlprog.ddns.net/2023/02/12/%e3%82%b0%e3%83%aa%e3%83%83%e3%83%89%e6%8f%8f%e7%94%bbue-material/#respond</comments>
		
		<dc:creator><![CDATA[ydlprog]]></dc:creator>
		<pubDate>Sun, 12 Feb 2023 06:24:26 +0000</pubDate>
				<category><![CDATA[Material]]></category>
		<category><![CDATA[UnrealEngine]]></category>
		<guid isPermaLink="false">https://ydlprog.ddns.net/?p=413</guid>

					<description><![CDATA[グリッド描画 コサインを使い、Stepで閾値計算すればグリッドは簡単に描けます RGBグラフ描画 ポイントは0.5を中央にしLerpで入れ替えるPreview用のノードリンクは動作チェックが終わったら切っておく 使用例]]></description>
										<content:encoded><![CDATA[
<h3 class="wp-block-heading"><span id="toc1">グリッド描画</span></h3>



<p>コサインを使い、Stepで閾値計算すればグリッドは簡単に描けます</p>



<figure class="wp-block-image size-large"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_DebugDrawGrid.png"><img loading="lazy" decoding="async" width="1024" height="464" src="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_DebugDrawGrid-1024x464.png" alt="" class="wp-image-565" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_DebugDrawGrid-1024x464.png 1024w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_DebugDrawGrid-300x136.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_DebugDrawGrid-768x348.png 768w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_DebugDrawGrid.png 1464w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><figcaption class="wp-element-caption">MF_DebugDrawGrid</figcaption></figure>



<div class="wp-block-cocoon-blocks-toggle-box-1 toggle-wrap toggle-box block-box"><input id="toggle-checkbox-20230212152228" class="toggle-checkbox" type="checkbox"/><label class="toggle-button" for="toggle-checkbox-20230212152228">コピペ用コード(5.1.1)</label><div class="toggle-content">
<div class="hcb_wrap"><pre class="prism off-numbers lang-plain"><code>Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionOutput Name=&quot;MaterialExpressionFunctionOutput_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionOutput_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionLinearInterpolate&#39;&quot;MaterialGraphNode_8.MaterialExpressionLinearInterpolate_0&quot;&#39;)
      bLastPreviewed=True
      Id=4395A1A446FE994C995F9D99505E074A
      MaterialExpressionEditorX=992
      MaterialExpressionEditorY=-240
      MaterialExpressionGuid=809B3C124B6D440536AD0CAE8FB4DC9E
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionOutput&#39;&quot;MaterialExpressionFunctionOutput_0&quot;&#39;
   NodePosX=992
   NodePosY=-240
   NodeGuid=F2A92EDF434E48A2F5374DAE574F65A2
   CustomProperties Pin (PinId=11DDDF344FD44D641C96AE9F26F7DC6C,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_8 4208503B4B9059DB92807C8F08501139,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=9681793A4C0D97D4B8FAC88973228EA0,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_1&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTextureCoordinate Name=&quot;MaterialExpressionTextureCoordinate_2&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTextureCoordinate_2&quot;
      MaterialExpressionEditorX=-224
      MaterialExpressionEditorY=-48
      MaterialExpressionGuid=235456CA4E90AFF367E88AA3169914B5
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialExpressionTextureCoordinate_2&quot;&#39;
   NodePosX=-224
   NodePosY=-48
   AdvancedPinDisplay=Hidden
   NodeGuid=3AFB33E14BA5BA9FD9F17C884B42A9E1
   CustomProperties Pin (PinId=501A27B04AA9EACC461D9BA5FFAC4692,PinName=&quot;Coordinate Index&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;int&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=1DE1D6924721CAD79D07ECADC524655D,PinName=&quot;UTiling&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=F695996C4D5860BCAD74EDAB5B33F892,PinName=&quot;VTiling&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=5999936749435DE8EF6D33A4F5A7500B,PinName=&quot;Un Mirror U&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=83636A2D432D037F5864D19D882CBD92,PinName=&quot;Un Mirror V&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=F452C33B40140198C486F7805BC762A9,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_2 11F56F01460F1D99D7FFCF9EBDE4418B,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_2&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMultiply Name=&quot;MaterialExpressionMultiply_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMultiply_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialGraphNode_1.MaterialExpressionTextureCoordinate_2&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_11.MaterialExpressionFunctionInput_6&quot;&#39;)
      ConstB=4.000000
      MaterialExpressionEditorX=16
      MaterialExpressionEditorY=16
      MaterialExpressionGuid=820F73F541471DF777A6DB9A9BB9F66B
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialExpressionMultiply_0&quot;&#39;
   NodePosX=16
   NodePosY=16
   NodeGuid=34F6067C47E4CD6B5196AEBD5F6D5045
   CustomProperties Pin (PinId=11F56F01460F1D99D7FFCF9EBDE4418B,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_1 F452C33B40140198C486F7805BC762A9,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=45F70B3D463CE8A32B05909AF481DC5D,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;4.0&quot;,LinkedTo=(MaterialGraphNode_11 87B754204E4E3746683B608462B5B08F,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A129D91A4315D81F50477C87FC962F16,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_6 0522DAA54E41331B062DADA843DF3CEF,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_3&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionStep Name=&quot;MaterialExpressionStep_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionStep_1&quot;
      Y=(Expression=/Script/Engine.MaterialExpressionCosine&#39;&quot;MaterialGraphNode_4.MaterialExpressionCosine_1&quot;&#39;)
      X=(Expression=/Script/Engine.MaterialExpressionCosine&#39;&quot;MaterialGraphNode_6.MaterialExpressionCosine_2&quot;&#39;)
      ConstY=0.299019
      ConstX=0.500000
      MaterialExpressionEditorX=336
      MaterialExpressionEditorY=-80
      MaterialExpressionGuid=100045FE43EDB952086A7DBDB12B0557
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionStep&#39;&quot;MaterialExpressionStep_1&quot;&#39;
   NodePosX=336
   NodePosY=-80
   NodeGuid=27CA390744CF44E28F0563A9D5869236
   CustomProperties Pin (PinId=3F9D8B8744D690355AC597A9F17840DB,PinName=&quot;Y&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.299019&quot;,LinkedTo=(MaterialGraphNode_4 F0A7AD61448D08AA45B149B01E75D5B7,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=391F2B44445E9F9C9C288495B54DFFC6,PinName=&quot;X&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.5&quot;,LinkedTo=(MaterialGraphNode_6 07CB0C084B59FC8B0A706C9CAAFBD1D7,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=DB876E594460FD0A24B54F8487710A6A,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_13 892172F24A697763652BEC9AFA67B1B1,MaterialGraphNode_14 D186896140B881F647B52FBDAE1ED22B,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_4&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionCosine Name=&quot;MaterialExpressionCosine_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionCosine_1&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialGraphNode_5.MaterialExpressionMultiply_1&quot;&#39;)
      MaterialExpressionEditorX=192
      MaterialExpressionEditorY=-144
      MaterialExpressionGuid=A1057D0B4F5C2FAE3DF6978DE83F353F
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionCosine&#39;&quot;MaterialExpressionCosine_1&quot;&#39;
   NodePosX=192
   NodePosY=-144
   AdvancedPinDisplay=Hidden
   NodeGuid=07E5EA594509CD31122792982E90B6B3
   CustomProperties Pin (PinId=5567D6BC469068B29682A496D76D0D8F,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_5 134483F242894DCE59F36F835FC5C63A,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=E55DB757436A357B627F0787D8117D96,PinName=&quot;Period&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=F0A7AD61448D08AA45B149B01E75D5B7,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_3 3F9D8B8744D690355AC597A9F17840DB,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_5&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMultiply Name=&quot;MaterialExpressionMultiply_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMultiply_1&quot;
      A=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_9.MaterialExpressionFunctionInput_4&quot;&#39;)
      ConstB=0.500000
      MaterialExpressionEditorX=16
      MaterialExpressionEditorY=-144
      MaterialExpressionGuid=F9BF70314C65242858A725B1399C7446
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialExpressionMultiply_1&quot;&#39;
   NodePosX=16
   NodePosY=-144
   NodeGuid=67CF2CE64A2671C17E22EDADA7C34552
   CustomProperties Pin (PinId=5D57AA634B2625A78018B3848EB7CA3A,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_9 AA3E8AAD4FAC6AEE66378FAFC1E7C51C,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=C4D6E66245012331AA137886DA05C8F0,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.5&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=134483F242894DCE59F36F835FC5C63A,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_4 5567D6BC469068B29682A496D76D0D8F,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_6&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionCosine Name=&quot;MaterialExpressionCosine_2&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionCosine_2&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialGraphNode_2.MaterialExpressionMultiply_0&quot;&#39;)
      MaterialExpressionEditorX=176
      MaterialExpressionEditorY=16
      MaterialExpressionGuid=A1057D0B4F5C2FAE3DF6978DE83F353F
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      bCollapsed=False
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionCosine&#39;&quot;MaterialExpressionCosine_2&quot;&#39;
   NodePosX=176
   NodePosY=16
   AdvancedPinDisplay=Hidden
   NodeGuid=4CD4163F4873776E30A620905897B3FA
   CustomProperties Pin (PinId=0522DAA54E41331B062DADA843DF3CEF,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_2 A129D91A4315D81F50477C87FC962F16,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=F8DD862F42C6E7CF2AD6D6A014D93D56,PinName=&quot;Period&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=07CB0C084B59FC8B0A706C9CAAFBD1D7,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_3 391F2B44445E9F9C9C288495B54DFFC6,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_7&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMax Name=&quot;MaterialExpressionMax_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMax_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionComponentMask&#39;&quot;MaterialGraphNode_13.MaterialExpressionComponentMask_0&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionComponentMask&#39;&quot;MaterialGraphNode_14.MaterialExpressionComponentMask_1&quot;&#39;)
      MaterialExpressionEditorX=624
      MaterialExpressionEditorY=-48
      MaterialExpressionGuid=20262B2D4AD64C2CFAACCC93ABE8A8B5
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      bCollapsed=False
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMax&#39;&quot;MaterialExpressionMax_0&quot;&#39;
   NodePosX=624
   NodePosY=-48
   NodeGuid=9CC3C87B4EE7661A45F856A045F8863F
   CustomProperties Pin (PinId=75E8D1F94E29389F9190E48E59A35ED0,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_13 622CB82C403426FE131BF586C92F565C,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=8998344C4FD50381FEA5789B48ACEC84,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_14 B2D9A1EE4E1A6F66D47947BDCB26A015,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=DFE654C447E1869D349DE5B18BF05447,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_8 D7C5A74442D6015CD479CD8BD0B4A959,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_8&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionLinearInterpolate Name=&quot;MaterialExpressionLinearInterpolate_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionLinearInterpolate_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_12.MaterialExpressionFunctionInput_0&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_10.MaterialExpressionFunctionInput_5&quot;&#39;)
      Alpha=(Expression=/Script/Engine.MaterialExpressionMax&#39;&quot;MaterialGraphNode_7.MaterialExpressionMax_0&quot;&#39;)
      MaterialExpressionEditorX=832
      MaterialExpressionEditorY=-208
      MaterialExpressionGuid=D318245D4DB964DDA69E969EA91C714E
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionLinearInterpolate&#39;&quot;MaterialExpressionLinearInterpolate_0&quot;&#39;
   NodePosX=832
   NodePosY=-208
   NodeGuid=F6F978864791DE6CB8E69385859F14DE
   CustomProperties Pin (PinId=A01D7D3641C17F4291A7399C7AA71A37,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_12 D9485623441598CE3F81FC9CE970790E,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=0B08A9804191957207C60CA17B65B3F9,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_10 243EC12A4FC3B44102880685D863786E,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=D7C5A74442D6015CD479CD8BD0B4A959,PinName=&quot;Alpha&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.5&quot;,LinkedTo=(MaterialGraphNode_7 DFE654C447E1869D349DE5B18BF05447,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=4208503B4B9059DB92807C8F08501139,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_0 11DDDF344FD44D641C96AE9F26F7DC6C,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_9&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionInput Name=&quot;MaterialExpressionFunctionInput_4&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionInput_4&quot;
      InputName=&quot;Width&quot;
      Description=&quot;グリッドの幅&quot;
      Id=A9F20C464F5297D1C034359C45627368
      InputType=FunctionInput_Scalar
      PreviewValue=(X=0.050000,Y=0.000000,Z=0.000000,W=1.000000)
      bUsePreviewValueAsDefault=True
      SortPriority=3
      MaterialExpressionEditorX=-224
      MaterialExpressionEditorY=-144
      MaterialExpressionGuid=FC81FAB3408B22C058D75E8C29EB72F4
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      Desc=&quot;グリッドの幅&quot;
      bCommentBubbleVisible=True
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialExpressionFunctionInput_4&quot;&#39;
   NodePosX=-224
   NodePosY=-144
   bCommentBubbleVisible=True
   NodeComment=&quot;グリッドの幅&quot;
   NodeGuid=9AEE48FB48B475D415476D9B5B0121C0
   CustomProperties Pin (PinId=E3C7F0FC4A8EE395C829ECA19E990B8A,PinName=&quot;Preview&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=AA3E8AAD4FAC6AEE66378FAFC1E7C51C,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_5 5D57AA634B2625A78018B3848EB7CA3A,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_10&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionInput Name=&quot;MaterialExpressionFunctionInput_5&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionInput_5&quot;
      InputName=&quot;GridColor&quot;
      Description=&quot;グリッドの色&quot;
      Id=FBDF9C2D4E09E4B62F32FF87DB5C49BE
      PreviewValue=(X=0.100000,Y=0.100000,Z=0.100000,W=1.000000)
      bUsePreviewValueAsDefault=True
      SortPriority=1
      MaterialExpressionEditorX=544
      MaterialExpressionEditorY=-176
      MaterialExpressionGuid=4E5CCF0D455DABD26965FC9F0394EF0B
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      Desc=&quot;グリッドの色&quot;
      bCommentBubbleVisible=True
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialExpressionFunctionInput_5&quot;&#39;
   NodePosX=544
   NodePosY=-176
   bCommentBubbleVisible=True
   NodeComment=&quot;グリッドの色&quot;
   NodeGuid=CCA55ACE41120FA361FDE79BE69333A6
   CustomProperties Pin (PinId=D8738A9644B63C9DFC10E892CDFBBB8A,PinName=&quot;Preview&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=243EC12A4FC3B44102880685D863786E,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_8 0B08A9804191957207C60CA17B65B3F9,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_11&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionInput Name=&quot;MaterialExpressionFunctionInput_6&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionInput_6&quot;
      InputName=&quot;Divisions&quot;
      Description=&quot;分割数&quot;
      Id=A33F98BA474FF8C276DD28AC9794E5C6
      InputType=FunctionInput_Scalar
      PreviewValue=(X=4.000000,Y=0.000000,Z=0.000000,W=1.000000)
      bUsePreviewValueAsDefault=True
      SortPriority=2
      MaterialExpressionEditorX=-224
      MaterialExpressionEditorY=96
      MaterialExpressionGuid=31FE06A34CC5E27EB2111498C70513D0
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      Desc=&quot;分割数&quot;
      bCommentBubbleVisible=True
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialExpressionFunctionInput_6&quot;&#39;
   NodePosX=-224
   NodePosY=96
   bCommentBubbleVisible=True
   NodeComment=&quot;分割数&quot;
   NodeGuid=8CC8AA0642C6FF761B280DA534F3E7B1
   CustomProperties Pin (PinId=8C46718E4A6A2C2ABB3F2D89F42A36C6,PinName=&quot;Preview&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=87B754204E4E3746683B608462B5B08F,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_2 45F70B3D463CE8A32B05909AF481DC5D,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_12&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionInput Name=&quot;MaterialExpressionFunctionInput_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionInput_0&quot;
      InputName=&quot;BackgroundColor&quot;
      Description=&quot;背景色&quot;
      Id=16483AD74067634F7F6F0AA3543888E2
      bUsePreviewValueAsDefault=True
      MaterialExpressionEditorX=544
      MaterialExpressionEditorY=-288
      MaterialExpressionGuid=4E5CCF0D455DABD26965FC9F0394EF0B
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      Desc=&quot;背景色&quot;
      bCommentBubbleVisible=True
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialExpressionFunctionInput_0&quot;&#39;
   NodePosX=544
   NodePosY=-288
   bCommentBubbleVisible=True
   NodeComment=&quot;背景色&quot;
   NodeGuid=EC25D7B647812F487AAAF99B11B12D3F
   CustomProperties Pin (PinId=DFC07ACA48AEA40E8FA748A8C8D63BAF,PinName=&quot;Preview&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=D9485623441598CE3F81FC9CE970790E,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_8 A01D7D3641C17F4291A7399C7AA71A37,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_13&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionComponentMask Name=&quot;MaterialExpressionComponentMask_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionComponentMask_0&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionStep&#39;&quot;MaterialGraphNode_3.MaterialExpressionStep_1&quot;&#39;)
      R=True
      MaterialExpressionEditorX=464
      MaterialExpressionEditorY=-80
      MaterialExpressionGuid=BE2E339343BC79E5CC6F95B631A115ED
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionComponentMask&#39;&quot;MaterialExpressionComponentMask_0&quot;&#39;
   NodePosX=464
   NodePosY=-80
   AdvancedPinDisplay=Hidden
   NodeGuid=A4CE81BE4EBDB20B13D62C8ED8D2EACC
   CustomProperties Pin (PinId=892172F24A697763652BEC9AFA67B1B1,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_3 DB876E594460FD0A24B54F8487710A6A,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=94FF5A42438305AD042905B218AA34DB,PinName=&quot;R&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;true&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=872FAFB646D1E7294B421BBBDF74D961,PinName=&quot;G&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=45690BBA49DACA6AECFF6F85BC2ACCCE,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=794AAE664911942E373FC7B2E85D5D70,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=622CB82C403426FE131BF586C92F565C,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_7 75E8D1F94E29389F9190E48E59A35ED0,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_14&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionComponentMask Name=&quot;MaterialExpressionComponentMask_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionComponentMask_1&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionStep&#39;&quot;MaterialGraphNode_3.MaterialExpressionStep_1&quot;&#39;)
      G=True
      MaterialExpressionEditorX=464
      MaterialExpressionEditorY=16
      MaterialExpressionGuid=BE2E339343BC79E5CC6F95B631A115ED
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionComponentMask&#39;&quot;MaterialExpressionComponentMask_1&quot;&#39;
   NodePosX=464
   NodePosY=16
   AdvancedPinDisplay=Hidden
   NodeGuid=AD96BE4847B62AE1A354728050B07937
   CustomProperties Pin (PinId=D186896140B881F647B52FBDAE1ED22B,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_3 DB876E594460FD0A24B54F8487710A6A,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=655FB2EC4713EBF10DE5FC9ED8180D30,PinName=&quot;R&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=D55E3F4940A7DF4F466DD7B53BAFE129,PinName=&quot;G&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;true&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=55A301B249E2F6D4773807B81ADF101D,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=54A3ED644FD3CF35CBC9348E553856F9,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=B2D9A1EE4E1A6F66D47947BDCB26A015,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_7 8998344C4FD50381FEA5789B48ACEC84,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Comment Name=&quot;MaterialGraphNode_Comment_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionComment Name=&quot;MaterialExpressionComment_2&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionComment_2&quot;
      SizeX=1424
      SizeY=624
      Text=&quot;グリッド描画&quot;
      MaterialExpressionEditorX=-256
      MaterialExpressionEditorY=-384
      MaterialExpressionGuid=A1FEBB99497E65DA82CB57901C4FCAFF
      Function=/Script/Engine.MaterialFunction&#39;&quot;/Engine/Transient.MF_DebugDrawGrid&quot;&#39;
   End Object
   MaterialExpressionComment=/Script/Engine.MaterialExpressionComment&#39;&quot;MaterialExpressionComment_2&quot;&#39;
   NodePosX=-256
   NodePosY=-384
   NodeWidth=1424
   NodeHeight=624
   NodeComment=&quot;グリッド描画&quot;
   NodeGuid=F17E850B464C6A7FC4A7D4AFBAB314CD
End Object</code></pre></div>
</div></div>



<h3 class="wp-block-heading"><span id="toc2">RGBグラフ描画</span></h3>



<p>ポイントは0.5を中央にしLerpで入れ替える<br>Preview用のノードリンクは動作チェックが終わったら切っておく</p>



<figure class="wp-block-image size-large"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_DebugDrawGraph.png"><img loading="lazy" decoding="async" width="1024" height="272" src="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_DebugDrawGraph-1024x272.png" alt="" class="wp-image-621" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_DebugDrawGraph-1024x272.png 1024w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_DebugDrawGraph-300x80.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_DebugDrawGraph-768x204.png 768w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_DebugDrawGraph-1536x409.png 1536w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/MF_DebugDrawGraph-2048x545.png 2048w" sizes="(max-width: 1024px) 100vw, 1024px" /></a><figcaption class="wp-element-caption">MF_DebugDrawGraph</figcaption></figure>



<div class="wp-block-cocoon-blocks-toggle-box-1 toggle-wrap toggle-box block-box"><input id="toggle-checkbox-20230214020223" class="toggle-checkbox" type="checkbox"/><label class="toggle-button" for="toggle-checkbox-20230214020223">コピペ用コード(5.1.1)</label><div class="toggle-content">
<div class="hcb_wrap"><pre class="prism off-numbers lang-plain"><code>Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionOutput Name=&quot;MaterialExpressionFunctionOutput_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionOutput_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionMaterialFunctionCall&#39;&quot;MaterialGraphNode_5.MaterialExpressionMaterialFunctionCall_0&quot;&#39;)
      bLastPreviewed=True
      Id=A56D05D546A1590ADD01FF88197942EE
      MaterialExpressionEditorX=192
      MaterialExpressionEditorY=512
      MaterialExpressionGuid=625C7EB94A4415336A5797985DBCAFBE
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionOutput&#39;&quot;MaterialExpressionFunctionOutput_0&quot;&#39;
   NodePosX=192
   NodePosY=512
   NodeGuid=EA594A2A4ADAE7D428CA6D8AA3ACCF60
   CustomProperties Pin (PinId=ECB0D1804118CE3DC88F7A8266E37D50,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_5 098D11404F9E510D6FB60A920EF5B597,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=1D48416A4481648D864433996855BC8D,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_1&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionInput Name=&quot;MaterialExpressionFunctionInput_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionInput_0&quot;
      InputName=&quot;R Value&quot;
      Id=1ADE5D004A3FCBD0A17A2C8925C35F7D
      InputType=FunctionInput_Scalar
      bUsePreviewValueAsDefault=True
      MaterialExpressionEditorX=-1488
      MaterialExpressionEditorY=320
      MaterialExpressionGuid=C8E8887B43DF130CC9A76D88FA052D11
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialExpressionFunctionInput_0&quot;&#39;
   NodePosX=-1488
   NodePosY=320
   NodeGuid=3AED1A9F4B496E5F56E73BAC59016E8F
   CustomProperties Pin (PinId=E2C1B7F347BD30A528D73486AA99908B,PinName=&quot;Preview&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=9D02C6B647CB905765A7B58C1AEEA1C2,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_4 B6AAAFC842D41A0DAF0A229CA39CBE4C,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_2&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionInput Name=&quot;MaterialExpressionFunctionInput_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionInput_1&quot;
      InputName=&quot;G Value&quot;
      Id=694E01B142CB6B41194C79B6044DB548
      InputType=FunctionInput_Scalar
      bUsePreviewValueAsDefault=True
      SortPriority=1
      MaterialExpressionEditorX=-1488
      MaterialExpressionEditorY=400
      MaterialExpressionGuid=C8E8887B43DF130CC9A76D88FA052D11
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialExpressionFunctionInput_1&quot;&#39;
   NodePosX=-1488
   NodePosY=400
   NodeGuid=CA5C8E214141F32CBC36008C2E700202
   CustomProperties Pin (PinId=673D83D943DC53E63E9CD7B97183E3CF,PinName=&quot;Preview&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=AC685C4F4B741691B0F25DAEC9818B80,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_4 6CED9400478546460D9D4BB18582CC75,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_3&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionInput Name=&quot;MaterialExpressionFunctionInput_2&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionInput_2&quot;
      InputName=&quot;B Value&quot;
      Id=952EF78844BF7464C1E19699416272C1
      InputType=FunctionInput_Scalar
      bUsePreviewValueAsDefault=True
      SortPriority=2
      MaterialExpressionEditorX=-1488
      MaterialExpressionEditorY=480
      MaterialExpressionGuid=C8E8887B43DF130CC9A76D88FA052D11
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialExpressionFunctionInput_2&quot;&#39;
   NodePosX=-1488
   NodePosY=480
   NodeGuid=7D539FBD4E94E6527D678BB162EDAE0F
   CustomProperties Pin (PinId=4C11E0264B84BCB1681A66928ECF0E49,PinName=&quot;Preview&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=02CAD3F645A237DA4AD828AC2099483A,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_4 87938EC54BF8280161B43F85558780A3,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_4&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMaterialFunctionCall Name=&quot;MaterialExpressionMaterialFunctionCall_2&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMaterialFunctionCall_2&quot;
      MaterialFunction=/Script/Engine.MaterialFunction&#39;&quot;/Engine/Functions/Engine_MaterialFunctions02/Utility/MakeFloat3.MakeFloat3&quot;&#39;
      FunctionInputs(0)=(ExpressionInputId=529C1D96441E07EB03A9E59B8A7F67B6,Input=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_1.MaterialExpressionFunctionInput_0&quot;&#39;,InputName=&quot;X&quot;))
      FunctionInputs(1)=(ExpressionInputId=B5BD7D1B494F6928732CCDA1C63D8E15,Input=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_2.MaterialExpressionFunctionInput_1&quot;&#39;,InputName=&quot;Y&quot;))
      FunctionInputs(2)=(ExpressionInputId=050F17B8471570B47A802CB7CAA5A201,Input=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_3.MaterialExpressionFunctionInput_2&quot;&#39;,InputName=&quot;Z&quot;))
      FunctionOutputs(0)=(ExpressionOutputId=0DD6F9954C067C3E5DDBBBA0D6910DD2,Output=(OutputName=&quot;Result&quot;))
      MaterialExpressionEditorX=-1264
      MaterialExpressionEditorY=372
      MaterialExpressionGuid=4E4A54BD44D95B71A8FA248B0B9F3171
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      Outputs(0)=(OutputName=&quot;Result&quot;)
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMaterialFunctionCall&#39;&quot;MaterialExpressionMaterialFunctionCall_2&quot;&#39;
   NodePosX=-1264
   NodePosY=372
   NodeGuid=E30329F046EDC3DEA1FA0FADF480B18B
   CustomProperties Pin (PinId=B6AAAFC842D41A0DAF0A229CA39CBE4C,PinName=&quot;X (S)&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_1 9D02C6B647CB905765A7B58C1AEEA1C2,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=6CED9400478546460D9D4BB18582CC75,PinName=&quot;Y (S)&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_2 AC685C4F4B741691B0F25DAEC9818B80,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=87938EC54BF8280161B43F85558780A3,PinName=&quot;Z (S)&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_3 02CAD3F645A237DA4AD828AC2099483A,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=8949E19A4FCBE4BD053BC586AED9E1E2,PinName=&quot;Result&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_8 7C01081E42C1D361D2096280A3D3C48A,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_5&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMaterialFunctionCall Name=&quot;MaterialExpressionMaterialFunctionCall_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMaterialFunctionCall_0&quot;
      MaterialFunction=/Script/Engine.MaterialFunction&#39;&quot;/Game/Developers/yoshida/Materials/Functions/Debug/MF_DebugDrawGrid.MF_DebugDrawGrid&quot;&#39;
      FunctionInputs(0)=(ExpressionInputId=16483AD74067634F7F6F0AA3543888E2,Input=(Expression=/Script/Engine.MaterialExpressionLinearInterpolate&#39;&quot;MaterialGraphNode_14.MaterialExpressionLinearInterpolate_0&quot;&#39;,InputName=&quot;BackgroundColor&quot;))
      FunctionInputs(1)=(ExpressionInputId=FBDF9C2D4E09E4B62F32FF87DB5C49BE,Input=(OutputIndex=-1,InputName=&quot;GridColor&quot;))
      FunctionInputs(2)=(ExpressionInputId=A33F98BA474FF8C276DD28AC9794E5C6,Input=(InputName=&quot;Divisions&quot;))
      FunctionInputs(3)=(ExpressionInputId=A9F20C464F5297D1C034359C45627368,Input=(OutputIndex=-1,InputName=&quot;Width&quot;))
      FunctionOutputs(0)=(ExpressionOutputId=4395A1A446FE994C995F9D99505E074A,Output=(OutputName=&quot;Result&quot;))
      MaterialExpressionEditorX=-80
      MaterialExpressionEditorY=544
      MaterialExpressionGuid=14B751F146C14E2B2CD4749DD69ADA73
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      Outputs(0)=(OutputName=&quot;Result&quot;)
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMaterialFunctionCall&#39;&quot;MaterialExpressionMaterialFunctionCall_0&quot;&#39;
   NodePosX=-80
   NodePosY=544
   NodeGuid=A0EDA1B84BCD1EB11EE92798B751FFEC
   CustomProperties Pin (PinId=2D4008E8406DFE67006AA3A7B112A9AB,PinName=&quot;BackgroundColor (V3)&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_14 279B0B234C1779CE3233728367A1CD42,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=C455E96E4052577F2317FDB97FCA2140,PinName=&quot;GridColor (V3)&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=E7C4791649413A48C5825588E5CA4E12,PinName=&quot;Divisions (S)&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=3ECD3EF5487F4BCEA0CE7494F3C1800D,PinName=&quot;Width (S)&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=098D11404F9E510D6FB60A920EF5B597,PinName=&quot;Result&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_0 ECB0D1804118CE3DC88F7A8266E37D50,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_6&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionInput Name=&quot;MaterialExpressionFunctionInput_4&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionInput_4&quot;
      Preview=(Expression=/Script/Engine.MaterialExpressionStaticBool&#39;&quot;MaterialGraphNode_7.MaterialExpressionStaticBool_0&quot;&#39;)
      InputName=&quot;Is Horizon&quot;
      Description=&quot;水平グラフか&quot;
      Id=656E19214A98A5F97D63F394EFACB9B8
      InputType=FunctionInput_StaticBool
      bUsePreviewValueAsDefault=True
      SortPriority=3
      MaterialExpressionEditorX=-1328
      MaterialExpressionEditorY=816
      MaterialExpressionGuid=329755BC42F62FFD99B6EF941D0245E5
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      Desc=&quot;水平グラフか&quot;
      bCommentBubbleVisible=True
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialExpressionFunctionInput_4&quot;&#39;
   NodePosX=-1328
   NodePosY=816
   bCommentBubbleVisible=True
   NodeComment=&quot;水平グラフか&quot;
   NodeGuid=BAF654B5459827CD562C19B8F700DED5
   CustomProperties Pin (PinId=5E77C6D24F3ABCE805EC9481D7CEE87A,PinName=&quot;Preview&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_7 58F275FC4C6B6CCFB914948D19FDE762,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=FEA39C374448D67265664AB2686C6F84,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_1 244B9DB94D617331ACF0B381172B01F1,MaterialGraphNode_Knot_5 51E9431C4519E2CF8DA7938DE7AB8D79,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_7&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionStaticBool Name=&quot;MaterialExpressionStaticBool_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionStaticBool_0&quot;
      Value=True
      MaterialExpressionEditorX=-1488
      MaterialExpressionEditorY=800
      MaterialExpressionGuid=3E98016E428C0524F59D83B81A860F96
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionStaticBool&#39;&quot;MaterialExpressionStaticBool_0&quot;&#39;
   NodePosX=-1488
   NodePosY=800
   NodeGuid=8373569C4B788AD12E3A64A99309E15A
   CustomProperties Pin (PinId=2EA979A049CD3D870AA1B2B9581A8CF8,PinName=&quot;Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;true&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=58F275FC4C6B6CCFB914948D19FDE762,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_6 5E77C6D24F3ABCE805EC9481D7CEE87A,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_8&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMultiply Name=&quot;MaterialExpressionMultiply_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMultiply_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionMaterialFunctionCall&#39;&quot;MaterialGraphNode_4.MaterialExpressionMaterialFunctionCall_2&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_0.MaterialExpressionReroute_4&quot;&#39;)
      MaterialExpressionEditorX=-1088
      MaterialExpressionEditorY=448
      MaterialExpressionGuid=194412174533FA7E5A1F858CB6202C10
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialExpressionMultiply_0&quot;&#39;
   NodePosX=-1088
   NodePosY=448
   NodeGuid=F1B603A248A060196E5E4C86F4A179B1
   CustomProperties Pin (PinId=7C01081E42C1D361D2096280A3D3C48A,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_4 8949E19A4FCBE4BD053BC586AED9E1E2,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=0D06FC0A48D12F36B2FEE5BF987CB3C1,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_Knot_0 2BEC56BE46BDFF8D203E5B93291903DD,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=F0A5396C4BCA585CFB9035816E9604F3,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_12 54EF76C249E81EC2913AB4880C37739A,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_9&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionFunctionInput Name=&quot;MaterialExpressionFunctionInput_3&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionFunctionInput_3&quot;
      InputName=&quot;Graph Scale&quot;
      Description=&quot;グラフ倍率&quot;
      Id=A59854304596BD5E09B4FF9CBB1DB325
      InputType=FunctionInput_Scalar
      PreviewValue=(X=1.000000,Y=0.000000,Z=0.000000,W=1.000000)
      bUsePreviewValueAsDefault=True
      SortPriority=4
      MaterialExpressionEditorX=-1488
      MaterialExpressionEditorY=592
      MaterialExpressionGuid=FA7C371F4DDF6DBBD96A089A9AA5605D
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      Desc=&quot;グラフ倍率&quot;
      bCommentBubbleVisible=True
      bCollapsed=True
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialExpressionFunctionInput_3&quot;&#39;
   NodePosX=-1488
   NodePosY=592
   bCommentBubbleVisible=True
   NodeComment=&quot;グラフ倍率&quot;
   NodeGuid=0376412D4743E3FAEE4037B6519479BA
   CustomProperties Pin (PinId=9385831A4A076D67DFEAE69567274AAD,PinName=&quot;Preview&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=8AC314F44C74D1DFC76E689F3AD8350B,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_0 BA87870843CD1BFE5450C8A4F76A6812,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_4&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_4&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_9.MaterialExpressionFunctionInput_3&quot;&#39;)
      MaterialExpressionEditorX=-1168
      MaterialExpressionEditorY=624
      MaterialExpressionGuid=27ECD93E4CAC0BACDDC792B13E7FA195
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_4&quot;&#39;
   NodePosX=-1168
   NodePosY=624
   bCanRenameNode=False
   NodeGuid=6D7B615047FDFB7670B6C99C37548CEC
   CustomProperties Pin (PinId=BA87870843CD1BFE5450C8A4F76A6812,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_9 8AC314F44C74D1DFC76E689F3AD8350B,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=2BEC56BE46BDFF8D203E5B93291903DD,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_8 0D06FC0A48D12F36B2FEE5BF987CB3C1,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_1&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_5&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_5&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_6.MaterialExpressionFunctionInput_4&quot;&#39;)
      MaterialExpressionEditorX=-848
      MaterialExpressionEditorY=848
      MaterialExpressionGuid=A03C79BB44A44C217B430A85D73F13D9
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_5&quot;&#39;
   NodePosX=-848
   NodePosY=848
   bCanRenameNode=False
   NodeGuid=E6E64F404147D5F9FE5722BD7BEAB650
   CustomProperties Pin (PinId=244B9DB94D617331ACF0B381172B01F1,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_6 FEA39C374448D67265664AB2686C6F84,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=4F4085764CC5A27A9EFCCF9A699F2D54,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_18 C838530D4F2E2439CBC3898073CB22B0,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_10&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionOneMinus Name=&quot;MaterialExpressionOneMinus_2&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionOneMinus_2&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionComponentMask&#39;&quot;MaterialGraphNode_17.MaterialExpressionComponentMask_1&quot;&#39;)
      MaterialExpressionEditorX=-896
      MaterialExpressionEditorY=624
      MaterialExpressionGuid=5BCB854F4017203B57030AACA01DCBB7
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionOneMinus&#39;&quot;MaterialExpressionOneMinus_2&quot;&#39;
   NodePosX=-896
   NodePosY=624
   NodeGuid=9DD4DB3F45618EA2DE51738068CCF85A
   CustomProperties Pin (PinId=65A6ECE846D88917BF4A3AB4C5C77CAD,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_17 B79D0BE343F7FBE846D5F78F8B94E4AF,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=C968074548BAE7FC9FF4358C7DB2DE1D,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_18 A60F5F394C6471A7BE086D9CD771DDFD,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_11&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionMultiply Name=&quot;MaterialExpressionMultiply_4&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionMultiply_4&quot;
      A=(Expression=/Script/Engine.MaterialExpressionAdd&#39;&quot;MaterialGraphNode_12.MaterialExpressionAdd_1&quot;&#39;)
      ConstB=0.500000
      MaterialExpressionEditorX=-784
      MaterialExpressionEditorY=448
      MaterialExpressionGuid=DDC990D3447FFEF2C22F788065249BB7
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialExpressionMultiply_4&quot;&#39;
   NodePosX=-784
   NodePosY=448
   NodeGuid=6A75B72B41FD5484A092CD885FC32B31
   CustomProperties Pin (PinId=1B6B3FFD468096E4251F989379FB539B,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_12 73C62F984271AABC5179F7B12D363838,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=9D4E67CC47743E7896C11E8FE1230662,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.5&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=10524F214DC1BB4EF821A6AC4ACDE1ED,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_13 EE24129F4AAF964BB30197AB37162FB7,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_12&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionAdd Name=&quot;MaterialExpressionAdd_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionAdd_1&quot;
      A=(Expression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialGraphNode_8.MaterialExpressionMultiply_0&quot;&#39;)
      MaterialExpressionEditorX=-944
      MaterialExpressionEditorY=448
      MaterialExpressionGuid=3EAF80E04E9A4B9CD44CCCAA0292FF4C
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionAdd&#39;&quot;MaterialExpressionAdd_1&quot;&#39;
   NodePosX=-944
   NodePosY=448
   NodeGuid=CE92C43B4CADF40B9AD89387ABE7F57C
   CustomProperties Pin (PinId=54EF76C249E81EC2913AB4880C37739A,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_8 F0A5396C4BCA585CFB9035816E9604F3,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=2B47C93A404A9F6B33C5C4B8046A9466,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=73C62F984271AABC5179F7B12D363838,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_11 1B6B3FFD468096E4251F989379FB539B,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_13&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionStep Name=&quot;MaterialExpressionStep_3&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionStep_3&quot;
      Y=(Expression=/Script/Engine.MaterialExpressionStaticSwitch&#39;&quot;MaterialGraphNode_18.MaterialExpressionStaticSwitch_1&quot;&#39;)
      X=(Expression=/Script/Engine.MaterialExpressionMultiply&#39;&quot;MaterialGraphNode_11.MaterialExpressionMultiply_4&quot;&#39;)
      MaterialExpressionEditorX=-608
      MaterialExpressionEditorY=416
      MaterialExpressionGuid=8CC06C8E4EA233BEC24A13828AC9EC56
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      bCollapsed=False
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionStep&#39;&quot;MaterialExpressionStep_3&quot;&#39;
   NodePosX=-608
   NodePosY=416
   NodeGuid=38C92D3047202AD9AAA73EA05FD143E6
   CustomProperties Pin (PinId=83EA0F5C4000A857A3DE268BA72F72B9,PinName=&quot;Y&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_18 610368D34CB48EF6B6BC70ADA13B0486,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=EE24129F4AAF964BB30197AB37162FB7,PinName=&quot;X&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_11 10524F214DC1BB4EF821A6AC4ACDE1ED,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=66E407D848C21E4D13CD508AAD89F073,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_16 9FEBD7BD42D4E95E3BC8389139610002,MaterialGraphNode_Knot_2 DA016F654222C3FDE9886384195F1DDC,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_14&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionLinearInterpolate Name=&quot;MaterialExpressionLinearInterpolate_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionLinearInterpolate_0&quot;
      A=(Expression=/Script/Engine.MaterialExpressionOneMinus&#39;&quot;MaterialGraphNode_16.MaterialExpressionOneMinus_5&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_2.MaterialExpressionReroute_7&quot;&#39;)
      Alpha=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_7.MaterialExpressionReroute_15&quot;&#39;)
      MaterialExpressionEditorX=-240
      MaterialExpressionEditorY=544
      MaterialExpressionGuid=D888B7FB4631C403058032B7C308E73C
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionLinearInterpolate&#39;&quot;MaterialExpressionLinearInterpolate_0&quot;&#39;
   NodePosX=-240
   NodePosY=544
   NodeGuid=873BCCAC4F5DF5C7F3B9C0B856F8DD73
   CustomProperties Pin (PinId=E3AEA91F43374EA9410AA5AD3546EA65,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.0&quot;,LinkedTo=(MaterialGraphNode_16 4E3521624CAE52EAA97E349D1CB5E631,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=5D3ED24A4781728BD1177F9BBEED672D,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_Knot_2 1CD44E23482512E77E40B7A64FA93B1B,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=43D63D674B3791F889327888A57D8FE6,PinName=&quot;Alpha&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.5&quot;,LinkedTo=(MaterialGraphNode_Knot_7 9054C6F74807A163994BF1BA164D0E6A,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=279B0B234C1779CE3233728367A1CD42,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_5 2D4008E8406DFE67006AA3A7B112A9AB,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_15&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionStep Name=&quot;MaterialExpressionStep_5&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionStep_5&quot;
      X=(Expression=/Script/Engine.MaterialExpressionStaticSwitch&#39;&quot;MaterialGraphNode_18.MaterialExpressionStaticSwitch_1&quot;&#39;)
      ConstY=0.500000
      MaterialExpressionEditorX=-608
      MaterialExpressionEditorY=640
      MaterialExpressionGuid=8CC06C8E4EA233BEC24A13828AC9EC56
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionStep&#39;&quot;MaterialExpressionStep_5&quot;&#39;
   NodePosX=-608
   NodePosY=640
   NodeGuid=C43E6EF14D1805B905DEC7B19801FE87
   CustomProperties Pin (PinId=7484739D4F9F5E03B3AFAE9BA22D26E4,PinName=&quot;Y&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0.5&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=05B4F82D48EC36E4EA13BC8A030A8987,PinName=&quot;X&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,LinkedTo=(MaterialGraphNode_18 610368D34CB48EF6B6BC70ADA13B0486,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=AC0B804946359109B2DDBAAF08BE9A3D,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_7 D41247BB437E16A8E257799FC05EB8F5,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_16&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionOneMinus Name=&quot;MaterialExpressionOneMinus_5&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionOneMinus_5&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionStep&#39;&quot;MaterialGraphNode_13.MaterialExpressionStep_3&quot;&#39;)
      MaterialExpressionEditorX=-400
      MaterialExpressionEditorY=416
      MaterialExpressionGuid=7CA90E404F271977F5DD8DAF1543E60C
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      bCollapsed=False
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionOneMinus&#39;&quot;MaterialExpressionOneMinus_5&quot;&#39;
   NodePosX=-400
   NodePosY=416
   NodeGuid=33C91AED4D12513449F7A29D002E2DE5
   CustomProperties Pin (PinId=9FEBD7BD42D4E95E3BC8389139610002,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_13 66E407D848C21E4D13CD508AAD89F073,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=4E3521624CAE52EAA97E349D1CB5E631,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_14 E3AEA91F43374EA9410AA5AD3546EA65,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_2&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_7&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_7&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionStep&#39;&quot;MaterialGraphNode_13.MaterialExpressionStep_3&quot;&#39;)
      MaterialExpressionEditorX=-400
      MaterialExpressionEditorY=608
      MaterialExpressionGuid=0ABA347A4E2646FE7A51839E093750F5
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_7&quot;&#39;
   NodePosX=-400
   NodePosY=608
   bCanRenameNode=False
   NodeGuid=9A1C7154401C17CB946481801D5429CF
   CustomProperties Pin (PinId=DA016F654222C3FDE9886384195F1DDC,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_13 66E407D848C21E4D13CD508AAD89F073,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=1CD44E23482512E77E40B7A64FA93B1B,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_14 5D3ED24A4781728BD1177F9BBEED672D,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_17&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionComponentMask Name=&quot;MaterialExpressionComponentMask_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionComponentMask_1&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialGraphNode_20.MaterialExpressionTextureCoordinate_0&quot;&#39;)
      G=True
      MaterialExpressionEditorX=-1008
      MaterialExpressionEditorY=624
      MaterialExpressionGuid=402F927C4630759ECB553886A83A8633
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionComponentMask&#39;&quot;MaterialExpressionComponentMask_1&quot;&#39;
   NodePosX=-1008
   NodePosY=624
   AdvancedPinDisplay=Hidden
   NodeGuid=F4AEEEFD4F8438344F48A8A1D7402106
   CustomProperties Pin (PinId=394C7C6E48C3F4723F6C3D8D566E8E97,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_20 37D1A69848745359984573B34E1ECA4B,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=59F0EC5847F904F42BD777AE939B7252,PinName=&quot;R&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=9D8B1AA14915113B56C329A81E19F8D9,PinName=&quot;G&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;true&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=5D6F20D04B956BE8B8356CBD32E2C6DE,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=92287C6B474D628BEABB1F8291942744,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=B79D0BE343F7FBE846D5F78F8B94E4AF,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_10 65A6ECE846D88917BF4A3AB4C5C77CAD,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_18&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionStaticSwitch Name=&quot;MaterialExpressionStaticSwitch_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionStaticSwitch_1&quot;
      A=(Expression=/Script/Engine.MaterialExpressionOneMinus&#39;&quot;MaterialGraphNode_10.MaterialExpressionOneMinus_2&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_3.MaterialExpressionReroute_8&quot;&#39;)
      Value=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_1.MaterialExpressionReroute_5&quot;&#39;)
      MaterialExpressionEditorX=-768
      MaterialExpressionEditorY=624
      MaterialExpressionGuid=8070636C47D39671D5B3DDBD796F9D3F
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionStaticSwitch&#39;&quot;MaterialExpressionStaticSwitch_1&quot;&#39;
   NodePosX=-768
   NodePosY=624
   NodeGuid=F4BD21E84F5A74D46DDCA1B2C2E45520
   CustomProperties Pin (PinId=A60F5F394C6471A7BE086D9CD771DDFD,PinName=&quot;True&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_10 C968074548BAE7FC9FF4358C7DB2DE1D,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=ECD7C37F4B2913F3D74519AAD84CDE1E,PinName=&quot;False&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_3 9AF035864028578F665AE8AC4066368C,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=C838530D4F2E2439CBC3898073CB22B0,PinName=&quot;Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,LinkedTo=(MaterialGraphNode_Knot_1 4F4085764CC5A27A9EFCCF9A699F2D54,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=610368D34CB48EF6B6BC70ADA13B0486,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_13 83EA0F5C4000A857A3DE268BA72F72B9,MaterialGraphNode_15 05B4F82D48EC36E4EA13BC8A030A8987,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_19&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionComponentMask Name=&quot;MaterialExpressionComponentMask_4&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionComponentMask_4&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialGraphNode_20.MaterialExpressionTextureCoordinate_0&quot;&#39;)
      R=True
      MaterialExpressionEditorX=-1008
      MaterialExpressionEditorY=704
      MaterialExpressionGuid=402F927C4630759ECB553886A83A8633
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionComponentMask&#39;&quot;MaterialExpressionComponentMask_4&quot;&#39;
   NodePosX=-1008
   NodePosY=704
   AdvancedPinDisplay=Hidden
   NodeGuid=D63A0DCE4B6E0354A6BD2E86EAEFA2A8
   CustomProperties Pin (PinId=AD1C9BFD40F1EC2571CE199A944440D7,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_20 37D1A69848745359984573B34E1ECA4B,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=CD7C9319491AAC3CE71191B106F741CC,PinName=&quot;R&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;true&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=EE2D57904EC06A24C468F7A394CD5D5E,PinName=&quot;G&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=C910419E46C2D74FA16F8089786D978B,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=CF94B799499314C8DBFD13A6018273FA,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=736C5426429F8991E5A86CA04346E89C,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_3 9D2C4E3E498B18093EF4A388E351DF3F,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_3&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_8&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_8&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionComponentMask&#39;&quot;MaterialGraphNode_19.MaterialExpressionComponentMask_4&quot;&#39;)
      MaterialExpressionEditorX=-864
      MaterialExpressionEditorY=736
      MaterialExpressionGuid=4836596C4CA1C1C5DA96CA8124AF2102
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_8&quot;&#39;
   NodePosX=-864
   NodePosY=736
   bCanRenameNode=False
   NodeGuid=A093E01A4BB392E2CAFD86B185DC2585
   CustomProperties Pin (PinId=9D2C4E3E498B18093EF4A388E351DF3F,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_19 736C5426429F8991E5A86CA04346E89C,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=9AF035864028578F665AE8AC4066368C,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_18 ECD7C37F4B2913F3D74519AAD84CDE1E,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_20&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTextureCoordinate Name=&quot;MaterialExpressionTextureCoordinate_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTextureCoordinate_0&quot;
      MaterialExpressionEditorX=-1248
      MaterialExpressionEditorY=656
      MaterialExpressionGuid=107B8F014DE9FFEF891C62A6E20E57DF
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialExpressionTextureCoordinate_0&quot;&#39;
   NodePosX=-1248
   NodePosY=656
   AdvancedPinDisplay=Hidden
   NodeGuid=13DBC1A0423F7C069E4F569E56F503BC
   CustomProperties Pin (PinId=510530644F471C309ADBDEBB69B004DB,PinName=&quot;Coordinate Index&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;int&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=FFE849E7485A4FD1BA91DAB935CF53C2,PinName=&quot;UTiling&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=909D2CAF45EFA9AE95EDDE949BB73B05,PinName=&quot;VTiling&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=77AAB8F6429F0E0A3ADE9897C81588DB,PinName=&quot;Un Mirror U&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=E89F077D42786D5C613059892FAAD172,PinName=&quot;Un Mirror V&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=37D1A69848745359984573B34E1ECA4B,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_17 394C7C6E48C3F4723F6C3D8D566E8E97,MaterialGraphNode_19 AD1C9BFD40F1EC2571CE199A944440D7,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_4&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_12&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_12&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_5.MaterialExpressionReroute_13&quot;&#39;)
      MaterialExpressionEditorX=-1840
      MaterialExpressionEditorY=752
      MaterialExpressionGuid=619EF2C544AE950E12E679BC50C30E09
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_12&quot;&#39;
   NodePosX=-1840
   NodePosY=752
   bCanRenameNode=False
   NodeGuid=AA9F23824E6DBE52F251149524C9B08D
   CustomProperties Pin (PinId=9B03D4AD40FCA2F1E1BC8AA7BDD0CCFB,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_5 A4D1FA6D4C896FAC8A0AEE93CD8BD364,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=7E7DCF57446FA0F72883989E2EE0426F,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_6 A5F3B6714588CE0488CD6C9CA1D2FF25,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_5&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_13&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_13&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionFunctionInput&#39;&quot;MaterialGraphNode_6.MaterialExpressionFunctionInput_4&quot;&#39;)
      MaterialExpressionEditorX=-1152
      MaterialExpressionEditorY=752
      MaterialExpressionGuid=40D5932A4237A0A95EA9DF9B933D7AAB
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_13&quot;&#39;
   NodePosX=-1152
   NodePosY=752
   bCanRenameNode=False
   NodeGuid=D953122D4935CB6D0C692996D19EB323
   CustomProperties Pin (PinId=51E9431C4519E2CF8DA7938DE7AB8D79,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_6 FEA39C374448D67265664AB2686C6F84,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A4D1FA6D4C896FAC8A0AEE93CD8BD364,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_4 9B03D4AD40FCA2F1E1BC8AA7BDD0CCFB,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_6&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_14&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_14&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_4.MaterialExpressionReroute_12&quot;&#39;)
      MaterialExpressionEditorX=-1840
      MaterialExpressionEditorY=576
      MaterialExpressionGuid=160F373F4D9E548E957DA7B10816B0A7
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_14&quot;&#39;
   NodePosX=-1840
   NodePosY=576
   bCanRenameNode=False
   NodeGuid=03BE8E0B49672F621B51A292926E4A7E
   CustomProperties Pin (PinId=A5F3B6714588CE0488CD6C9CA1D2FF25,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_Knot_4 7E7DCF57446FA0F72883989E2EE0426F,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=6FE27B3743A1FDE01F3CDD87671CE1E9,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_22 E23437A54C28B0F206ADA799FE2EB795,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Knot Name=&quot;MaterialGraphNode_Knot_7&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionReroute Name=&quot;MaterialExpressionReroute_15&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionReroute_15&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionStep&#39;&quot;MaterialGraphNode_15.MaterialExpressionStep_5&quot;&#39;)
      MaterialExpressionEditorX=-320
      MaterialExpressionEditorY=672
      MaterialExpressionGuid=6C85AC0147550E8D8182F3882F6FFCF1
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialExpressionReroute_15&quot;&#39;
   NodePosX=-320
   NodePosY=672
   bCanRenameNode=False
   NodeGuid=56789AD840A0B12A5C0C389D38A47E73
   CustomProperties Pin (PinId=D41247BB437E16A8E257799FC05EB8F5,PinName=&quot;InputPin&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_15 AC0B804946359109B2DDBAAF08BE9A3D,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=True,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=9054C6F74807A163994BF1BA164D0E6A,PinName=&quot;OutputPin&quot;,Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;wildcard&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_14 43D63D674B3791F889327888A57D8FE6,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Comment Name=&quot;MaterialGraphNode_Comment_0&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionComment Name=&quot;MaterialExpressionComment_1&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionComment_1&quot;
      SizeX=2576
      SizeY=656
      Text=&quot;RGBグラフ描画&quot;
      MaterialExpressionEditorX=-2208
      MaterialExpressionEditorY=256
      MaterialExpressionGuid=ED8281FF492520693584BEA62F08DC7D
      Function=/Script/Engine.MaterialFunction&#39;&quot;/Engine/Transient.MF_DebugDrawGraph&quot;&#39;
   End Object
   MaterialExpressionComment=/Script/Engine.MaterialExpressionComment&#39;&quot;MaterialExpressionComment_1&quot;&#39;
   CommentDepth=-2
   NodePosX=-2208
   NodePosY=256
   NodeWidth=2576
   NodeHeight=656
   NodeComment=&quot;RGBグラフ描画&quot;
   NodeGuid=778647854A3C604886D2C2AF597440DC
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode_Comment Name=&quot;MaterialGraphNode_Comment_1&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionComment Name=&quot;MaterialExpressionComment_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionComment_0&quot;
      SizeX=640
      SizeY=224
      Text=&quot;Preview Data&quot;
      CommentColor=(R=0.000000,G=0.800000,B=1.000000,A=1.000000)
      MaterialExpressionEditorX=-2176
      MaterialExpressionEditorY=336
      MaterialExpressionGuid=315CD1CF497F4A398FEC269F676ADBFD
      Function=/Script/Engine.MaterialFunction&#39;&quot;/Engine/Transient.MF_DebugDrawGraph&quot;&#39;
   End Object
   MaterialExpressionComment=/Script/Engine.MaterialExpressionComment&#39;&quot;MaterialExpressionComment_0&quot;&#39;
   CommentColor=(R=0.000000,G=0.800000,B=1.000000,A=1.000000)
   NodePosX=-2176
   NodePosY=336
   NodeWidth=640
   NodeHeight=224
   NodeComment=&quot;Preview Data&quot;
   NodeGuid=8227F2BD4B9D0BAAB0DED3A29C20A680
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_21&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionSine Name=&quot;MaterialExpressionSine_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionSine_0&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionStaticSwitch&#39;&quot;MaterialGraphNode_22.MaterialExpressionStaticSwitch_2&quot;&#39;)
      MaterialExpressionEditorX=-1632
      MaterialExpressionEditorY=400
      MaterialExpressionGuid=439CAE6B4BF63388FDE5969B9061569F
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionSine&#39;&quot;MaterialExpressionSine_0&quot;&#39;
   NodePosX=-1632
   NodePosY=400
   AdvancedPinDisplay=Hidden
   ErrorType=1
   ErrorMsg=&quot;Missing Sine input&quot;
   NodeGuid=6A9E85CB414F741AFF4102ABD555FA46
   CustomProperties Pin (PinId=F55525884FD542DE2F5CBD8C5C9DC113,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_22 775CF08548955FB6A085F1978EF196E1,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=BD535EDB4CF068AFF082CC934831663B,PinName=&quot;Period&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=209A7B9E492AED17B1510C8F4AE21E5B,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_22&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionStaticSwitch Name=&quot;MaterialExpressionStaticSwitch_2&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionStaticSwitch_2&quot;
      A=(Expression=/Script/Engine.MaterialExpressionComponentMask&#39;&quot;MaterialGraphNode_24.MaterialExpressionComponentMask_0&quot;&#39;)
      B=(Expression=/Script/Engine.MaterialExpressionComponentMask&#39;&quot;MaterialGraphNode_23.MaterialExpressionComponentMask_3&quot;&#39;)
      Value=(Expression=/Script/Engine.MaterialExpressionReroute&#39;&quot;MaterialGraphNode_Knot_6.MaterialExpressionReroute_14&quot;&#39;)
      MaterialExpressionEditorX=-1776
      MaterialExpressionEditorY=400
      MaterialExpressionGuid=B135513346297244D9EA72A4F26813D3
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionStaticSwitch&#39;&quot;MaterialExpressionStaticSwitch_2&quot;&#39;
   NodePosX=-1776
   NodePosY=400
   NodeGuid=C224970D4881027DAB5ADDA319534BF7
   CustomProperties Pin (PinId=14D3580E4060BF7E621B38AD6236EC9C,PinName=&quot;True&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_24 F422AA214F4AB2357C118B9E98A0835F,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=0F1C0AF24E1206330F3D21A26570CC89,PinName=&quot;False&quot;,PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_23 F422AA214F4AB2357C118B9E98A0835F,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=E23437A54C28B0F206ADA799FE2EB795,PinName=&quot;Value&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,LinkedTo=(MaterialGraphNode_Knot_6 6FE27B3743A1FDE01F3CDD87671CE1E9,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=775CF08548955FB6A085F1978EF196E1,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_21 F55525884FD542DE2F5CBD8C5C9DC113,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_24&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionComponentMask Name=&quot;MaterialExpressionComponentMask_0&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionComponentMask_0&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialGraphNode_25.MaterialExpressionTextureCoordinate_2&quot;&#39;)
      R=True
      MaterialExpressionEditorX=-1936
      MaterialExpressionEditorY=384
      MaterialExpressionGuid=3A3FE2E243E63ACD21AFE09A5B01FBB6
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionComponentMask&#39;&quot;MaterialExpressionComponentMask_0&quot;&#39;
   NodePosX=-1936
   NodePosY=384
   AdvancedPinDisplay=Hidden
   ErrorType=1
   ErrorMsg=&quot;Missing ComponentMask input&quot;
   NodeGuid=DAA53CF74EF3312CD9D364AEFAE71DF4
   CustomProperties Pin (PinId=5EE6BF594146D313CDC60A92F2B54517,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_25 005F6A614DA34EF69059B48DB613DAE6,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A459A5EE492B55D25ACEF5A8B56886BA,PinName=&quot;R&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;true&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=5B7CC0FC4A9F5319943311BC9ED9ADDC,PinName=&quot;G&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=551157DC42E2186825BD66A9D76C39F6,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=8C91E3464596560ADA0386A4F3179925,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=F422AA214F4AB2357C118B9E98A0835F,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_22 14D3580E4060BF7E621B38AD6236EC9C,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_23&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionComponentMask Name=&quot;MaterialExpressionComponentMask_3&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionComponentMask_3&quot;
      Input=(Expression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialGraphNode_25.MaterialExpressionTextureCoordinate_2&quot;&#39;)
      G=True
      MaterialExpressionEditorX=-1936
      MaterialExpressionEditorY=464
      MaterialExpressionGuid=3A3FE2E243E63ACD21AFE09A5B01FBB6
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
      Function=/Script/Engine.MaterialFunction&#39;&quot;/Engine/Transient.MF_DebugDrawGraph&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionComponentMask&#39;&quot;MaterialExpressionComponentMask_3&quot;&#39;
   NodePosX=-1936
   NodePosY=464
   AdvancedPinDisplay=Hidden
   ErrorType=1
   ErrorMsg=&quot;Missing ComponentMask input&quot;
   NodeGuid=F676D83146FB813077FF098627AA5902
   CustomProperties Pin (PinId=5EE6BF594146D313CDC60A92F2B54517,PinName=&quot;Input&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),PinType.PinCategory=&quot;required&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_25 005F6A614DA34EF69059B48DB613DAE6,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=A459A5EE492B55D25ACEF5A8B56886BA,PinName=&quot;R&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=5B7CC0FC4A9F5319943311BC9ED9ADDC,PinName=&quot;G&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;true&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=551157DC42E2186825BD66A9D76C39F6,PinName=&quot;B&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=8C91E3464596560ADA0386A4F3179925,PinName=&quot;A&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=F422AA214F4AB2357C118B9E98A0835F,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_22 0F1C0AF24E1206330F3D21A26570CC89,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object
Begin Object Class=/Script/UnrealEd.MaterialGraphNode Name=&quot;MaterialGraphNode_25&quot;
   Begin Object Class=/Script/Engine.MaterialExpressionTextureCoordinate Name=&quot;MaterialExpressionTextureCoordinate_2&quot;
   End Object
   Begin Object Name=&quot;MaterialExpressionTextureCoordinate_2&quot;
      MaterialExpressionEditorX=-2160
      MaterialExpressionEditorY=416
      MaterialExpressionGuid=EA561FB549DFF6C6E7C9D28321FD2EF1
      Material=/Script/Engine.Material&#39;&quot;/Engine/Transient.Material_0&quot;&#39;
   End Object
   MaterialExpression=/Script/Engine.MaterialExpressionTextureCoordinate&#39;&quot;MaterialExpressionTextureCoordinate_2&quot;&#39;
   NodePosX=-2160
   NodePosY=416
   AdvancedPinDisplay=Hidden
   NodeGuid=DD7102DD4888BA5532ADD9BED643723E
   CustomProperties Pin (PinId=EC2A9C084E4937E602374EAA1F263978,PinName=&quot;Coordinate Index&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;int&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
   CustomProperties Pin (PinId=AA11153A46037E26C1AA97AB57C67C7D,PinName=&quot;UTiling&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=4B85FD4346A65BB21819FA87675B4DBC,PinName=&quot;VTiling&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;red&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;1.0&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=D82D4EC646E126F33A1A0897D4891065,PinName=&quot;Un Mirror U&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=9BF8F291424B4DA53E11DB8E4A986DFB,PinName=&quot;Un Mirror V&quot;,PinType.PinCategory=&quot;optional&quot;,PinType.PinSubCategory=&quot;bool&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,DefaultValue=&quot;false&quot;,PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=True,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=True,bOrphanedPin=False,)
   CustomProperties Pin (PinId=005F6A614DA34EF69059B48DB613DAE6,PinName=&quot;Output&quot;,PinFriendlyName=NSLOCTEXT(&quot;MaterialGraphNode&quot;, &quot;Space&quot;, &quot; &quot;),Direction=&quot;EGPD_Output&quot;,PinType.PinCategory=&quot;&quot;,PinType.PinSubCategory=&quot;&quot;,PinType.PinSubCategoryObject=None,PinType.PinSubCategoryMemberReference=(),PinType.PinValueType=(),PinType.ContainerType=None,PinType.bIsReference=False,PinType.bIsConst=False,PinType.bIsWeakPointer=False,PinType.bIsUObjectWrapper=False,PinType.bSerializeAsSinglePrecisionFloat=False,LinkedTo=(MaterialGraphNode_24 5EE6BF594146D313CDC60A92F2B54517,MaterialGraphNode_23 5EE6BF594146D313CDC60A92F2B54517,),PersistentGuid=00000000000000000000000000000000,bHidden=False,bNotConnectable=False,bDefaultValueIsReadOnly=False,bDefaultValueIsIgnored=False,bAdvancedView=False,bOrphanedPin=False,)
End Object</code></pre></div>
</div></div>



<h3 class="wp-block-heading"><span id="toc3">使用例</span></h3>



<figure class="wp-block-image size-large"><a href="https://ydlprog.ddns.net/wp-content/uploads/2023/02/M_DebugDrawGraph.png"><img loading="lazy" decoding="async" width="1024" height="311" src="https://ydlprog.ddns.net/wp-content/uploads/2023/02/M_DebugDrawGraph-1024x311.png" alt="" class="wp-image-627" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/02/M_DebugDrawGraph-1024x311.png 1024w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/M_DebugDrawGraph-300x91.png 300w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/M_DebugDrawGraph-768x234.png 768w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/M_DebugDrawGraph.png 1345w" sizes="(max-width: 1024px) 100vw, 1024px" /></a></figure>
]]></content:encoded>
					
					<wfw:commentRss>https://ydlprog.ddns.net/2023/02/12/%e3%82%b0%e3%83%aa%e3%83%83%e3%83%89%e6%8f%8f%e7%94%bbue-material/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Unreal Engine Tips(UE5.1.1 随時更新)</title>
		<link>https://ydlprog.ddns.net/2023/02/11/unreal-engine-tips/</link>
					<comments>https://ydlprog.ddns.net/2023/02/11/unreal-engine-tips/#respond</comments>
		
		<dc:creator><![CDATA[ydlprog]]></dc:creator>
		<pubDate>Fri, 10 Feb 2023 16:08:23 +0000</pubDate>
				<category><![CDATA[UnrealEngine]]></category>
		<guid isPermaLink="false">https://ydlprog.ddns.net/?p=396</guid>

					<description><![CDATA[目次 エディタ起動時に最後に開いていたレベルを開く最後に開いていたコンテンツブラウザの位置を記録ウィンドウの開く位置(ドッキング)の変更Blueprintのノードを明示的に無効化FAQDDCDDCのフォルダ指定 エディタ [&#8230;]]]></description>
										<content:encoded><![CDATA[

  <div id="toc" class="toc tnt-number tnt-number border-element"><input type="checkbox" class="toc-checkbox" id="toc-checkbox-20"><label class="toc-title" for="toc-checkbox-20">目次</label>
    <div class="toc-content">
    <ol class="toc-list open"><li><a href="#toc1" tabindex="0">エディタ</a><ol><li><a href="#toc2" tabindex="0">起動時に最後に開いていたレベルを開く</a></li><li><a href="#toc3" tabindex="0">最後に開いていたコンテンツブラウザの位置を記録</a></li><li><a href="#toc4" tabindex="0">ウィンドウの開く位置(ドッキング)の変更</a></li><li><a href="#toc5" tabindex="0">Blueprintのノードを明示的に無効化</a></li><li><a href="#toc6" tabindex="0">FAQ</a></li></ol></li><li><a href="#toc7" tabindex="0">DDC</a><ol><li><a href="#toc8" tabindex="0">DDCのフォルダ指定</a></li></ol></li></ol>
    </div>
  </div>

<h2 class="wp-block-heading"><span id="toc1">エディタ</span></h2>



<h3 class="wp-block-heading"><span id="toc2">起動時に最後に開いていたレベルを開く</span></h3>



<p>loadlevelで検索し、Last Openedを選択</p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="346" height="157" src="https://ydlprog.ddns.net/wp-content/uploads/2023/02/Editor_004.png" alt="" class="wp-image-464" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/02/Editor_004.png 346w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/Editor_004-300x136.png 300w" sizes="(max-width: 346px) 100vw, 346px" /></figure>



<h3 class="wp-block-heading"><span id="toc3">最後に開いていたコンテンツブラウザの位置を記録</span></h3>



<p>AssetTabで検索しチェック</p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="304" height="156" src="https://ydlprog.ddns.net/wp-content/uploads/2023/02/Editor_005.png" alt="" class="wp-image-467" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/02/Editor_005.png 304w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/Editor_005-300x154.png 300w" sizes="(max-width: 304px) 100vw, 304px" /></figure>



<h3 class="wp-block-heading"><span id="toc4">ウィンドウの開く位置(ドッキング)の変更</span></h3>



<p>openlで検索し「アセットエディタの起動場所」を変更</p>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="433" height="156" src="https://ydlprog.ddns.net/wp-content/uploads/2023/02/Editor_006.png" alt="" class="wp-image-470" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/02/Editor_006.png 433w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/Editor_006-300x108.png 300w" sizes="(max-width: 433px) 100vw, 433px" /></figure>



<h3 class="wp-block-heading"><span id="toc5">Blueprintのノードを明示的に無効化</span></h3>



<p>nodedで検索しチェック</p>



<div class="wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-6c531013 wp-block-group-is-layout-flex">
<figure class="wp-block-image size-full"><img decoding="async" src="https://ydlprog.ddns.net/wp-content/uploads/2023/02/Editor_002.png" alt="" class="wp-image-459"/></figure>



<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="234" height="167" src="https://ydlprog.ddns.net/wp-content/uploads/2023/02/Editor_003.png" alt="" class="wp-image-461"/></figure>
</div>



<h3 class="wp-block-heading"><span id="toc6">FAQ</span></h3>



<figure class="wp-block-table"><table><thead><tr><th>問題</th><th>解決方法</th></tr></thead><tbody><tr><td>アウトライナでコピペができない</td><td>メインウィンドウにドッキングしていないとキーボード操作がだめ<br>キー操作をしたいならアウトライナは別ウインドウにしない</td></tr><tr><td>「現在のレベルのみ」で空フォルダが表示される</td><td><img loading="lazy" decoding="async" width="515" height="387" class="wp-image-403" style="width: 515px;" src="https://ydlprog.ddns.net/wp-content/uploads/2023/02/Editor_001.png" alt="" srcset="https://ydlprog.ddns.net/wp-content/uploads/2023/02/Editor_001.png 515w, https://ydlprog.ddns.net/wp-content/uploads/2023/02/Editor_001-300x225.png 300w" sizes="(max-width: 515px) 100vw, 515px" /><br>UE5.1で、UE4の様にBのチェックで非表示に<br>また、今までなかったAの機能も追加されてます</td></tr></tbody></table></figure>



<h2 class="wp-block-heading"><span id="toc7">DDC</span></h2>



<h3 class="wp-block-heading"><span id="toc8">DDCのフォルダ指定</span></h3>



<p>外付けSSD等にプロジェクトを作った場合、他のPCで起動してもシェーダーコンパイルが入らない用に、DDCをプロジェクトのサブフォルダに生成するように設定</p>



<div class="hcb_wrap"><pre class="prism off-numbers lang-plain" data-file="Config/DefaultEngine.ini"><code>[InstalledDerivedDataBackendGraph]
Local=(Type=FileSystem, ReadOnly=false, Clean=false, Flush=false, PurgeTransient=true, DeleteUnused=true, UnusedFileAge=34, FoldersToClean=-1, Path=&quot;%GAMEDIR%DerivedDataCache&quot;)

[DerivedDataBackendGraph]
Local=(Type=FileSystem, ReadOnly=false, Clean=false, Flush=false, PurgeTransient=true, DeleteUnused=true, UnusedFileAge=34, FoldersToClean=-1, Path=&quot;%GAMEDIR%DerivedDataCache&quot;)</code></pre></div>



<p>デフォルトだとUsersに作られる為、消しづらい、UsersはHDDだから遅いといった問題が解消します<br><br>出典元: <a rel="noopener" target="_blank" href="https://forums.unrealengine.com/t/ddc/142044">【テレワーク】 共有 ddc をもたない場合にその影響を軽減させる (翻訳)</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://ydlprog.ddns.net/2023/02/11/unreal-engine-tips/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
