Added alerts and modified the rocks in the environment.

This commit is contained in:
2025-10-13 17:10:25 +02:00
parent 65e14c07d2
commit ddbeb0fca3
55 changed files with 7299 additions and 486 deletions

View File

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