fix: 所有描边宽度提到0.1+补挂PingClickHandler/ChanraoTuibuHandler

This commit is contained in:
yangbear
2026-07-06 04:36:50 +08:00
parent 80fffd41e1
commit 3c76ce47df
5 changed files with 14 additions and 8 deletions
@@ -51,7 +51,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.06f);
mat.SetFloat("_OutlineWidth", 0.1f);
var go = new GameObject("Outline");
go.transform.SetParent(transform, false);
go.AddComponent<MeshFilter>().sharedMesh = mf.sharedMesh;