0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ARFoundation 環境光推定を行う

Last updated at Posted at 2021-07-26

ARcameraのLightEstimationModeをAmbientIntensityに変更する
9F05992D-5052-4097-BC3A-52816F32FD07.jpeg

Shaderを作成する。Unit Shaderを選択し、名前をLightEstimationに変更する。
169C429A-E2D8-4CAE-8B22-1D0A2520093D.jpeg

キャラクターのMaterialをコピーする。わかりやすいように名前を変更しておく。
01894344-B1D6-4D1C-BAD4-8982C91523C2.jpeg

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に変更する
53AAAC5F-0BE0-416A-BA64-AADB8BDCC97B.jpeg

各Materialが暗くなっているか確認する。なっていない場合はBrightnessを0.5に変更する。
A8B62403-6A94-4241-8BD8-DBC5FDA15CB1.jpeg

キャラクターの部位に作成したMaterialをドラッグ&ドロップする。
D9DB40F2-C297-4794-AA71-DD91945BF69D.jpeg

LightEstimationObject.csを作成する。
F541C76D-F174-4E60-8C1A-7C6DCFE90B32_4_5005_c.jpeg

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をアタッチする。
C20A25B9-D627-441F-A5B0-C5189AEC25B4.jpeg

ビルドする

0
0
0

Register as a new user and use Qiita more conveniently

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?