mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-15 16:04:44 +01:00
16 lines
306 B
C#
16 lines
306 B
C#
using UnityEngine;
|
|
|
|
namespace MoleMole
|
|
{
|
|
public class MonoIslandBuildingsUtil : MonoBehaviour
|
|
{
|
|
public Material _highLightMat;
|
|
|
|
public float _highLightLerpDuration = 0.5f;
|
|
|
|
public float _ratioOfOpaquenessToPolygonOffsetFront = 0.2f;
|
|
|
|
public float _ratioOfOpaquenessToPolygonOffsetBack = 1f;
|
|
}
|
|
}
|