[插件]_Highlighting System插件控制

[插件]_Highlighting System插件控制_第1张图片

 

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using HighlightingSystem;

public class hijglingCtrl : MonoBehaviour
{
    public static void highlighterObjectByBool(GameObject _obj, bool isOn)//开或关
    {


        if (_obj.GetComponent() == null)
        {
            _obj.AddComponent();
        }
        if (isOn)

            _obj.GetComponent().FlashingOn();
        else
            _obj.GetComponent().FlashingOff();


    }
}

 

  public GameObject men;
  hijglingCtrl.highlighterObjectByBool(men, true);

1.相机挂载渲染

2.第二个脚本不需挂载

3.使用合适高亮

你可能感兴趣的:(插件使用)