Wszystkie funkcjonalnosci git, potrzeba poprawy UI

This commit is contained in:
Angelones12
2026-05-03 14:18:17 +02:00
parent 3344421418
commit 9cd0ffceab
42 changed files with 4221 additions and 510 deletions

View File

@@ -0,0 +1,24 @@
using UnityEngine;
using UnityEngine.SceneManagement;
public class InstructionController : MonoBehaviour
{
[Header("Scene Settings")]
public string nextSceneName = "NeutralScene";
public void StartNeutralPhase()
{
Debug.Log("[InstructionController] Button clicked. Starting Neutral phase.");
if (ExperimentManager.Instance != null)
{
ExperimentManager.Instance.SetPhase("Neutral");
}
else
{
Debug.LogWarning("[InstructionController] ExperimentManager not found! Start from InitialScene.");
}
SceneManager.LoadScene(nextSceneName);
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 795ee5d5d52d30d448ecaca241e2f893