Modified the size of the Step indicator

This commit is contained in:
2025-10-17 11:43:26 +02:00
parent 7cbc80627b
commit c1cbd651f2
2 changed files with 47 additions and 174 deletions

View File

@@ -31,12 +31,12 @@ public class TestIndicator : MonoBehaviour, PuzzleS.IPuzzlePrompt
public void ShowClose()
{
gameObject.transform.localScale = new Vector3(1f, 1f, 1f);
gameObject.transform.localScale = new Vector3(2f, 2f, 2f);
}
public void HideClose()
{
gameObject.transform.localScale = new Vector3(0.5f, 0.5f, 0.5f);
gameObject.transform.localScale = new Vector3(1f, 1f, 1f);
}
public void HideFar()