ARcameraのLightEstimationModeをAmbientIntensityに変更する
Shaderを作成する。Unit Shaderを選択し、名前をLightEstimationに変更する。
キャラクターのMaterialをコピーする。わかりやすいように名前を変更しておく。
LightEstimation.Shaderに下記を追記する
Character/LightEstimation.Shader
Shader "Character/LightEstimation"
{
Properties
{
_MainTex ("Texture", 2D) = "white" {}
_Brightness ("Brightness", Float) = 0.5 //追記
}
SubShader
{
Tags { "RenderType"="Opaque" }
LOD 100
Pass
{
CGPROGRAM
#pragma vertex vert
#pragma fragment frag
// make fog work
#pragma multi_compile_fog
#include "UnityCG.cginc"
struct appdata
{
float4 vertex : POSITION;
float2 uv : TEXCOORD0;
};
struct v2f
{
float2 uv : TEXCOORD0;
UNITY_FOG_COORDS(1)
float4 vertex : SV_POSITION;
};
sampler2D _MainTex;
float4 _MainTex_ST;
float _Brightness; //追記
v2f vert (appdata v)
{
v2f o;
o.vertex = UnityObjectToClipPos(v.vertex);
o.uv = TRANSFORM_TEX(v.uv, _MainTex);
UNITY_TRANSFER_FOG(o,o.vertex);
return o;
}
fixed4 frag (v2f i) : SV_Target
{
// sample the texture
fixed4 col = tex2D(_MainTex, i.uv);
// apply fog
UNITY_APPLY_FOG(i.fogCoord, col);
col *= _Brightness; //追記
return col;
}
ENDCG
}
}
}
コピーしたMaterialを全選択し、ShaderをCharacter/LightEstimationに変更する
各Materialが暗くなっているか確認する。なっていない場合はBrightnessを0.5に変更する。
キャラクターの部位に作成したMaterialをドラッグ&ドロップする。
LightEstimationObject.csを作成する。
LightEstimationObject.csに下記を記述する
LightEstimationObject.cs
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.XR.ARFoundation;
public class LightEstimationObject : MonoBehaviour
{
[SerializeField]
ARCameraManager m_CameraManager;
private Renderer[] renderers;
void OnEnable()
{
renderers = GetComponentsInChildren<Renderer>();
if (m_CameraManager != null)
m_CameraManager.frameReceived += FrameChanged;
}
void OnDisable()
{
renderers = null;
if (m_CameraManager != null)
m_CameraManager.frameReceived -= FrameChanged;
}
void FrameChanged(ARCameraFrameEventArgs args)
{
foreach (Renderer renderer in renderers)
{
renderer.material.SetFloat(
"_Brightness",
args.lightEstimation.averageBrightness.Value
);
}
}
}
キャラクターにスクリプトをつけ、CameramanagerにARcameraをアタッチする。
ビルドする