diff --git a/Assets/Scripts/Interaction/ShoseClickHandler.cs b/Assets/Scripts/Interaction/ShoseClickHandler.cs index fa7ec8e..9be0d80 100644 --- a/Assets/Scripts/Interaction/ShoseClickHandler.cs +++ b/Assets/Scripts/Interaction/ShoseClickHandler.cs @@ -16,7 +16,7 @@ public class ShoseClickHandler : MonoBehaviour if (GetComponent() == null) { var sc = gameObject.AddComponent(); - sc.radius = 0.5f; + sc.radius = 1.0f; sc.isTrigger = false; } CreateOutlineMesh(); @@ -36,7 +36,7 @@ public class ShoseClickHandler : MonoBehaviour var mat = new Material(shader); mat.SetColor("_OutlineColor", new Color(0.2f, 0.5f, 1f, 1f)); mat.SetColor("_MainColor", new Color(0, 0, 0, 0)); - mat.SetFloat("_OutlineWidth", 0.03f); + mat.SetFloat("_OutlineWidth", 0.06f); var go = new GameObject("Outline"); go.transform.SetParent(transform, false); go.AddComponent().sharedMesh = mf.sharedMesh;