From e08a43c72ca8582a4dd9ca1fe1399f1abfd5a103 Mon Sep 17 00:00:00 2001 From: playmaker1210 Date: Wed, 29 Mar 2023 11:06:00 +0200 Subject: [PATCH] eletvesztes ugynok --- Assets/Scripts/Akciok.cs | 4 +- Assets/Scripts/Ugynok.cs | 558 ++++++------------------- Assets/Scripts/movement.cs | 344 +++++++-------- UserSettings/Layouts/default-2021.dwlt | 162 +++---- 4 files changed, 388 insertions(+), 680 deletions(-) diff --git a/Assets/Scripts/Akciok.cs b/Assets/Scripts/Akciok.cs index ef8dcad..4b20ef9 100644 --- a/Assets/Scripts/Akciok.cs +++ b/Assets/Scripts/Akciok.cs @@ -64,9 +64,9 @@ public class Akciok : MonoBehaviour { if (tolteny_index < 24 && ap.akciopont != 0) { - if (tolteny_index + betarazas > 23) + if (tolteny_index + betarazas > 24) { - tolteny_index = 23; + tolteny_index = 24; } else { diff --git a/Assets/Scripts/Ugynok.cs b/Assets/Scripts/Ugynok.cs index 1fd7212..b0e658e 100644 --- a/Assets/Scripts/Ugynok.cs +++ b/Assets/Scripts/Ugynok.cs @@ -9,6 +9,7 @@ public class Ugynok : MonoBehaviour private Akciok akciok; private Upgrade upgrade; private jatekmanager jatekmanager; + private Elet elet; private movement movement; public TMP_Text[] oneone; @@ -43,11 +44,18 @@ public class Ugynok : MonoBehaviour public void setCanKillTrue(){ canKill = true; } public Camera maincamera; + private string[] previus_ugynok_csapatok; + private int elozo_x; + private int elozo_y ; + private void Awake() { akciok = FindObjectOfType(); upgrade = FindObjectOfType(); jatekmanager = FindObjectOfType(); movement = FindObjectOfType(); + elet = FindObjectOfType(); + + previus_ugynok_csapatok = new string[3]; } private void Start() @@ -338,466 +346,150 @@ public class Ugynok : MonoBehaviour } - - - - /* private void Update() - { - if(canShoot){ - if(oneone[0].text.Equals("")){ - + public void ugynokMegolveElozoHelyen(){ + if(elozo_x != movement.jelenlegi_x || elozo_y != movement.jelenlegi_y){ + foreach(var item in previus_ugynok_csapatok){ + if(!item.Equals("")){ + //ha nem ures a text vagyis volt atirva szamra nezze meg hogy X-e + if(!item.Equals("x")){ + //vonjon le egy eletet + elet.Eletvesztes(); + break; + } + } + } + } + + if(elozo_x == 1 && elozo_y == 1){ + for (int i = 0; i < 3; i++) + { + previus_ugynok_csapatok[i] = oneone[i].text; + } + }else if(elozo_x == 1 && elozo_y == 2){ + for (int i = 0; i < 3; i++) + { + previus_ugynok_csapatok[i] = onetwo[i].text; + } + }else if(elozo_x == 1 && elozo_y == 3){ + for (int i = 0; i < 3; i++) + { + previus_ugynok_csapatok[i] = onethree[i].text; + } + }else if(elozo_x == 1 && elozo_y == 4){ + for (int i = 0; i < 3; i++) + { + previus_ugynok_csapatok[i] = onefour[i].text; + } + }else if(elozo_x == 2 && elozo_y == 1){ + for (int i = 0; i < 3; i++) + { + previus_ugynok_csapatok[i] = twoone[i].text; + } + }else if(elozo_x == 2 && elozo_y == 2){ + for (int i = 0; i < 3; i++) + { + previus_ugynok_csapatok[i] = twotwo[i].text; + } + }else if(elozo_x == 2 && elozo_y == 3){ + for (int i = 0; i < 3; i++) + { + previus_ugynok_csapatok[i] = twothree[i].text; + } + }else if(elozo_x == 2 && elozo_y == 4){ + for (int i = 0; i < 3; i++) + { + previus_ugynok_csapatok[i] = twofour[i].text; + } + }else if(elozo_x == 3 && elozo_y == 1){ + for (int i = 0; i < 3; i++) + { + previus_ugynok_csapatok[i] = threeone[i].text; + } + }else if(elozo_x == 3 && elozo_y == 2){ + for (int i = 0; i < 3; i++) + { + previus_ugynok_csapatok[i] = threetwo[i].text; + } + }else if(elozo_x == 3 && elozo_y == 3){ + for (int i = 0; i < 3; i++) + { + previus_ugynok_csapatok[i] = threethree[i].text; + } + }else if(elozo_x == 3 && elozo_y == 4){ + for (int i = 0; i < 3; i++) + { + previus_ugynok_csapatok[i] = threefour[i].text; } } - if (canKill) - { - //check for collider onclick then x out tmp text then set canKill false - //check if text field is empty - //oneone - if (Input.GetKeyDown(KeyCode.Mouse0) && oneoneCollider[0].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) + elozo_x = movement.jelenlegi_x; + elozo_y = movement.jelenlegi_y; + } + + public void setElozoHelyszin(int x, int y){ + elozo_x = x; + elozo_y = y; + + if(elozo_x == 1 && elozo_y == 1){ + for (int i = 0; i < 3; i++) { - if (!oneone[0].text.Equals("")) - { - oneone[0].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } + previus_ugynok_csapatok[i] = oneone[i].text; } - else if (Input.GetKeyDown(KeyCode.Mouse0) && oneoneCollider[1].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) + }else if(elozo_x == 1 && elozo_y == 2){ + for (int i = 0; i < 3; i++) { - if (!oneone[1].text.Equals("")) - { - oneone[1].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } + previus_ugynok_csapatok[i] = onetwo[i].text; } - else if (Input.GetKeyDown(KeyCode.Mouse0) && oneoneCollider[2].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) + }else if(elozo_x == 1 && elozo_y == 3){ + for (int i = 0; i < 3; i++) { - if (!oneone[2].text.Equals("")) - { - oneone[2].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } + previus_ugynok_csapatok[i] = onethree[i].text; } - //onetwo - if (Input.GetKeyDown(KeyCode.Mouse0) && onetwoCollider[0].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) + }else if(elozo_x == 1 && elozo_y == 4){ + for (int i = 0; i < 3; i++) { - if (!onetwo[0].text.Equals("")) - { - onetwo[0].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } + previus_ugynok_csapatok[i] = onefour[i].text; } - else if (Input.GetKeyDown(KeyCode.Mouse0) && onetwoCollider[1].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) + }else if(elozo_x == 2 && elozo_y == 1){ + for (int i = 0; i < 3; i++) { - if (!onetwo[1].text.Equals("")) - { - onetwo[1].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } + previus_ugynok_csapatok[i] = twoone[i].text; } - else if (Input.GetKeyDown(KeyCode.Mouse0) && onetwoCollider[2].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) + }else if(elozo_x == 2 && elozo_y == 2){ + for (int i = 0; i < 3; i++) { - if (!onetwo[2].text.Equals("")) - { - onetwo[2].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } + previus_ugynok_csapatok[i] = twotwo[i].text; } - //onethree - if (Input.GetKeyDown(KeyCode.Mouse0) && onethreeCollider[0].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) + }else if(elozo_x == 2 && elozo_y == 3){ + for (int i = 0; i < 3; i++) { - if (!onethree[0].text.Equals("")) - { - onethree[0].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } + previus_ugynok_csapatok[i] = twothree[i].text; } - else if (Input.GetKeyDown(KeyCode.Mouse0) && onethreeCollider[1].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) + }else if(elozo_x == 2 && elozo_y == 4){ + for (int i = 0; i < 3; i++) { - if (!onethree[1].text.Equals("")) - { - onethree[1].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } + previus_ugynok_csapatok[i] = twofour[i].text; } - else if (Input.GetKeyDown(KeyCode.Mouse0) && onethreeCollider[2].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) + }else if(elozo_x == 3 && elozo_y == 1){ + for (int i = 0; i < 3; i++) { - if (!onethree[2].text.Equals("")) - { - onethree[2].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } + previus_ugynok_csapatok[i] = threeone[i].text; } - //onefour - if (Input.GetKeyDown(KeyCode.Mouse0) && onefourCollider[0].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) + }else if(elozo_x == 3 && elozo_y == 2){ + for (int i = 0; i < 3; i++) { - if (!onefour[0].text.Equals("")) - { - onefour[0].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } + previus_ugynok_csapatok[i] = threetwo[i].text; } - else if (Input.GetKeyDown(KeyCode.Mouse0) && onefourCollider[1].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) + }else if(elozo_x == 3 && elozo_y == 3){ + for (int i = 0; i < 3; i++) { - if (!onefour[1].text.Equals("")) - { - onefour[1].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } + previus_ugynok_csapatok[i] = threethree[i].text; } - else if (Input.GetKeyDown(KeyCode.Mouse0) && onefourCollider[2].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) + }else if(elozo_x == 3 && elozo_y == 4){ + for (int i = 0; i < 3; i++) { - if (!onefour[2].text.Equals("")) - { - onefour[2].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - //twoone - if (Input.GetKeyDown(KeyCode.Mouse0) && twooneCollider[0].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!twoone[0].text.Equals("")) - { - twoone[0].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - else if (Input.GetKeyDown(KeyCode.Mouse0) && twooneCollider[1].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!twoone[1].text.Equals("")) - { - twoone[1].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - else if (Input.GetKeyDown(KeyCode.Mouse0) && twooneCollider[2].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!twoone[2].text.Equals("")) - { - twoone[2].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - //twotwo - if (Input.GetKeyDown(KeyCode.Mouse0) && twotwoCollider[0].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!twotwo[0].text.Equals("")) - { - twotwo[0].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - else if (Input.GetKeyDown(KeyCode.Mouse0) && twotwoCollider[1].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!twotwo[1].text.Equals("")) - { - twotwo[1].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - else if (Input.GetKeyDown(KeyCode.Mouse0) && twotwoCollider[2].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!twotwo[2].text.Equals("")) - { - twotwo[2].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - //twothree - if (Input.GetKeyDown(KeyCode.Mouse0) && twothreeCollider[0].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!twothree[0].text.Equals("")) - { - twothree[0].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - else if (Input.GetKeyDown(KeyCode.Mouse0) && twothreeCollider[1].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!twothree[1].text.Equals("")) - { - twothree[1].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - else if (Input.GetKeyDown(KeyCode.Mouse0) && twothreeCollider[2].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!twothree[2].text.Equals("")) - { - twothree[2].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - //twofour - if (Input.GetKeyDown(KeyCode.Mouse0) && twofourCollider[0].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!twofour[0].text.Equals("")) - { - twofour[0].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - else if (Input.GetKeyDown(KeyCode.Mouse0) && twofourCollider[1].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!twofour[1].text.Equals("")) - { - twofour[1].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - else if (Input.GetKeyDown(KeyCode.Mouse0) && twofourCollider[2].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!twofour[2].text.Equals("")) - { - twofour[2].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - //threeone - if (Input.GetKeyDown(KeyCode.Mouse0) && threeoneCollider[0].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!threeone[0].text.Equals("")) - { - threeone[0].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - else if (Input.GetKeyDown(KeyCode.Mouse0) && threeoneCollider[1].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!threeone[1].text.Equals("")) - { - threeone[1].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - else if (Input.GetKeyDown(KeyCode.Mouse0) && threeoneCollider[2].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!threeone[2].text.Equals("")) - { - threeone[2].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - //threetwo - if (Input.GetKeyDown(KeyCode.Mouse0) && threetwoCollider[0].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!threetwo[0].text.Equals("")) - { - threetwo[0].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - else if (Input.GetKeyDown(KeyCode.Mouse0) && threetwoCollider[1].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!threetwo[1].text.Equals("")) - { - threetwo[1].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - else if (Input.GetKeyDown(KeyCode.Mouse0) && threetwoCollider[2].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!threetwo[2].text.Equals("")) - { - threetwo[2].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - //threethree - if (Input.GetKeyDown(KeyCode.Mouse0) && threethreeCollider[0].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!threethree[0].text.Equals("")) - { - threethree[0].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - else if (Input.GetKeyDown(KeyCode.Mouse0) && threethreeCollider[1].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!threethree[1].text.Equals("")) - { - threethree[1].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - else if (Input.GetKeyDown(KeyCode.Mouse0) && threethreeCollider[2].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!threethree[2].text.Equals("")) - { - threethree[2].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - //threefour - if (Input.GetKeyDown(KeyCode.Mouse0) && threefourCollider[0].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!threefour[0].text.Equals("")) - { - threefour[0].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - else if (Input.GetKeyDown(KeyCode.Mouse0) && threefourCollider[1].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!threefour[1].text.Equals("")) - { - threefour[1].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } - } - else if (Input.GetKeyDown(KeyCode.Mouse0) && threefourCollider[2].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition))) - { - if (!threefour[2].text.Equals("")) - { - threefour[2].text = "X"; - canKill = false; - } - else - { - Debug.Log("itt nincs ugynok csapat!!!"); - } + previus_ugynok_csapatok[i] = threefour[i].text; } } } -*/ } \ No newline at end of file diff --git a/Assets/Scripts/movement.cs b/Assets/Scripts/movement.cs index aca8fbd..aa749e9 100644 --- a/Assets/Scripts/movement.cs +++ b/Assets/Scripts/movement.cs @@ -105,10 +105,11 @@ public class movement : MonoBehaviour {"", "", "", "" } }; - private void Awake() { + private void Awake() + { ap = FindObjectOfType(); ugynok = FindObjectOfType(); - targyak = FindObjectOfType(); + targyak = FindObjectOfType(); } void Start() @@ -265,6 +266,8 @@ public class movement : MonoBehaviour jelenlegi_y = 4; ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); } + + ugynok.setElozoHelyszin(jelenlegi_x, jelenlegi_y); } public void mozgasHelyre(int x, int y) @@ -351,7 +354,7 @@ public class movement : MonoBehaviour Debug.Log("Player clicked on the collider: " + oneone_Collider.gameObject.name); if (eromulepes1.activeSelf == true & eromulepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -381,7 +384,7 @@ public class movement : MonoBehaviour Debug.Log("Player clicked on the collider: " + twoone_Collider.gameObject.name); if (feketepiaclepes1.activeSelf == true & feketepiaclepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -407,7 +410,7 @@ public class movement : MonoBehaviour } else { - Debug.Log("Maximum k�tszer l�phetsz egy mez?re"); + Debug.Log("Maximum ketszer lephetsz egy mez?re"); } } @@ -421,7 +424,7 @@ public class movement : MonoBehaviour Debug.Log("Player clicked on the collider: " + threeone_Collider.gameObject.name); if (metrolepes1.activeSelf == true & metrolepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -458,7 +461,7 @@ public class movement : MonoBehaviour Debug.Log("Player clicked on the collider: " + onetwo_Collider.gameObject.name); if (szervereklepes1.activeSelf == true & szervereklepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -485,7 +488,7 @@ public class movement : MonoBehaviour } else { - Debug.Log("Nincs el�g akci�pontod vagy nem 1 mez�n bel�l akarsz l�pni"); + Debug.Log("Nincs eleg akciopontod vagy nem 1 mezon belul akarsz lepni"); } } @@ -496,7 +499,7 @@ public class movement : MonoBehaviour Debug.Log("Player clicked on the collider: " + twotwo_Collider.gameObject.name); if (kingcasinolepes1.activeSelf == true & kingcasinolepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -522,7 +525,7 @@ public class movement : MonoBehaviour } else { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } } } @@ -533,7 +536,7 @@ public class movement : MonoBehaviour Debug.Log("Player clicked on the collider: " + threetwo_Collider.gameObject.name); if (feltoltolepes1.activeSelf == true & feltoltolepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -559,7 +562,7 @@ public class movement : MonoBehaviour } else { - Debug.Log("Maximum k�tszer l�phetsz egy mez?re"); + Debug.Log("Maximum ketszer lephetsz egy mez?re"); } } @@ -572,7 +575,7 @@ public class movement : MonoBehaviour if (kutatolaborlepes1.activeSelf == true & kutatolaborlepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -598,7 +601,7 @@ public class movement : MonoBehaviour } else { - Debug.Log("Maximum k�tszer l�phetsz egy mez?re"); + Debug.Log("Maximum ketszer lephetsz egy mez?re"); } } @@ -613,7 +616,7 @@ public class movement : MonoBehaviour if (kriptoklublepes1.activeSelf == true & kriptoklublepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -639,7 +642,7 @@ public class movement : MonoBehaviour } else { - Debug.Log("Maximum k�tszer l�phetsz egy mez?re"); + Debug.Log("Maximum ketszer lephetsz egy mez?re"); } } @@ -655,7 +658,7 @@ public class movement : MonoBehaviour if (cyberplazalepes1.activeSelf == true & cyberplazalepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -681,7 +684,7 @@ public class movement : MonoBehaviour } else { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } } @@ -696,7 +699,7 @@ public class movement : MonoBehaviour if (hadiuzemlepes1.activeSelf == true & hadiuzemlepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -722,7 +725,7 @@ public class movement : MonoBehaviour } else { - Debug.Log("Maximum k�tszer l�phetsz egy mez?re"); + Debug.Log("Maximum ketszer lephetsz egy mez?re"); } } @@ -737,7 +740,7 @@ public class movement : MonoBehaviour if (konyvtarlepes1.activeSelf == true & konyvtarlepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -763,7 +766,7 @@ public class movement : MonoBehaviour } else { - Debug.Log("Maximum k�tszer l�phetsz egy mez?re"); + Debug.Log("Maximum ketszer lephetsz egy mez?re"); } } @@ -778,7 +781,7 @@ public class movement : MonoBehaviour if (korhazlepes1.activeSelf == true & korhazlepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -804,7 +807,7 @@ public class movement : MonoBehaviour } else { - Debug.Log("Maximum k�tszer l�phetsz egy mez?re"); + Debug.Log("Maximum ketszer lephetsz egy mez?re"); } } @@ -820,7 +823,7 @@ public class movement : MonoBehaviour { tavolsag = math.abs(tavolsag); - // player mozgat�sa �s konzolra irat�s + // player mozgatasa es konzolra iratas if (Input.GetKeyDown(KeyCode.Mouse0) && oneone_Collider.OverlapPoint(THE_Camera.ScreenToWorldPoint(Input.mousePosition))) { for (int x = 0; x < w; x++) @@ -842,21 +845,22 @@ public class movement : MonoBehaviour player.transform.position = oneone.transform.position; jelenlegi_x = 1; jelenlegi_y = 1; - if (targyak.lathatatlanOltozetAktivalva) - { - targyak.lathatatlanOltozetAktivalva = false; - } - else - { - //ap.akciopont = ap.akciopont - tavolsag; - ap.UpdateAkciopont(-tavolsag); - } + if (targyak.lathatatlanOltozetAktivalva) + { + targyak.lathatatlanOltozetAktivalva = false; + } + else + { + //ap.akciopont = ap.akciopont - tavolsag; + ap.UpdateAkciopont(-tavolsag); + } + - oneonecount = oneonecount + 1; Debug.Log(ap.akciopont); Debug.Log("ugynok sorsolas"); ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); + ugynok.ugynokMegolveElozoHelyen(); if (eromulepes1.activeSelf == true) { eromulepes2.SetActive(true); @@ -872,7 +876,7 @@ public class movement : MonoBehaviour } else { - Debug.Log("Nincs el�g akci�pontod vagy nem 1 mez?n bel�l akarsz l�pni"); + Debug.Log("Nincs eleg akciopontod vagy nem 1 mez?n belul akarsz lepni"); } } } @@ -892,7 +896,7 @@ public class movement : MonoBehaviour tavolsag = math.abs((x + 1) - jelenlegi_x) + math.abs((y + 1) - jelenlegi_y); if (feketepiaclepes1.activeSelf == true & feketepiaclepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -907,18 +911,19 @@ public class movement : MonoBehaviour player.transform.position = twoone.transform.position; jelenlegi_x = 2; jelenlegi_y = 1; - if (targyak.lathatatlanOltozetAktivalva) - { - targyak.lathatatlanOltozetAktivalva = false; - } - else - { - //ap.akciopont = ap.akciopont - tavolsag; - ap.UpdateAkciopont(-tavolsag); - } + if (targyak.lathatatlanOltozetAktivalva) + { + targyak.lathatatlanOltozetAktivalva = false; + } + else + { + //ap.akciopont = ap.akciopont - tavolsag; + ap.UpdateAkciopont(-tavolsag); + } twoonecount = twoonecount + 1; Debug.Log(ap.akciopont); Debug.Log("ugynok sorsolas"); ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); + ugynok.ugynokMegolveElozoHelyen(); if (feketepiaclepes1.activeSelf == true) { feketepiaclepes2.SetActive(true); @@ -934,12 +939,12 @@ public class movement : MonoBehaviour } else { - Debug.Log("Maximum k�tszer l�phetsz egy mez?re"); + Debug.Log("Maximum ketszer lephetsz egy mez?re"); } } else { - Debug.Log("Nincs el�g akci�pontod vagy nem 1 mez?n bel�l akarsz l�pni"); + Debug.Log("Nincs eleg akciopontod vagy nem 1 mez?n belul akarsz lepni"); } } @@ -960,7 +965,7 @@ public class movement : MonoBehaviour tavolsag = math.abs((x + 1) - jelenlegi_x) + math.abs((y + 1) - jelenlegi_y); if (metrolepes1.activeSelf == true & metrolepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -971,18 +976,20 @@ public class movement : MonoBehaviour player.transform.position = threeone.transform.position; jelenlegi_x = 3; jelenlegi_y = 1; - if (targyak.lathatatlanOltozetAktivalva) - { - targyak.lathatatlanOltozetAktivalva = false; - } - else - { - //ap.akciopont = ap.akciopont - tavolsag; - ap.UpdateAkciopont(-tavolsag); - } + if (targyak.lathatatlanOltozetAktivalva) + { + targyak.lathatatlanOltozetAktivalva = false; + } + else + { + //ap.akciopont = ap.akciopont - tavolsag; + ap.UpdateAkciopont(-tavolsag); + } threeonecount++; - Debug.Log(ap.akciopont); Debug.Log("ugynok sorsolas"); + Debug.Log(ap.akciopont); + Debug.Log("ugynok sorsolas"); ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); + ugynok.ugynokMegolveElozoHelyen(); if (metrolepes1.activeSelf == true) { metrolepes2.SetActive(true); @@ -998,12 +1005,12 @@ public class movement : MonoBehaviour } else { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } } else { - Debug.Log("Nincs el�g akci�pontod vagy nem 1 mez?n bel�l akarsz l�pni"); + Debug.Log("Nincs eleg akciopontod vagy nem 1 mez?n belul akarsz lepni"); } } } @@ -1024,7 +1031,7 @@ public class movement : MonoBehaviour if (szervereklepes1.activeSelf == true & szervereklepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -1039,19 +1046,20 @@ public class movement : MonoBehaviour player.transform.position = onetwo.transform.position; jelenlegi_x = 1; jelenlegi_y = 2; - if (targyak.lathatatlanOltozetAktivalva) - { - targyak.lathatatlanOltozetAktivalva = false; - } - else - { - //ap.akciopont = ap.akciopont - tavolsag; - ap.UpdateAkciopont(-tavolsag); - } + if (targyak.lathatatlanOltozetAktivalva) + { + targyak.lathatatlanOltozetAktivalva = false; + } + else + { + //ap.akciopont = ap.akciopont - tavolsag; + ap.UpdateAkciopont(-tavolsag); + } onetwocount++; Debug.Log(ap.akciopont); Debug.Log("ugynok sorsolas"); ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); + ugynok.ugynokMegolveElozoHelyen(); if (szervereklepes1.activeSelf == true) { szervereklepes2.SetActive(true); @@ -1067,12 +1075,12 @@ public class movement : MonoBehaviour } else { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } } else { - Debug.Log("Nincs el�g akci�pontod vagy nem 1 mez�n bel�l akarsz l�pni"); + Debug.Log("Nincs eleg akciopontod vagy nem 1 mezon belul akarsz lepni"); } } } @@ -1093,7 +1101,7 @@ public class movement : MonoBehaviour if (kingcasinolepes1.activeSelf == true & kingcasinolepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -1104,18 +1112,19 @@ public class movement : MonoBehaviour player.transform.position = twotwo.transform.position; jelenlegi_x = 2; jelenlegi_y = 2; - if (targyak.lathatatlanOltozetAktivalva) - { - targyak.lathatatlanOltozetAktivalva = false; - } - else - { - //ap.akciopont = ap.akciopont - tavolsag; - ap.UpdateAkciopont(-tavolsag); - } + if (targyak.lathatatlanOltozetAktivalva) + { + targyak.lathatatlanOltozetAktivalva = false; + } + else + { + //ap.akciopont = ap.akciopont - tavolsag; + ap.UpdateAkciopont(-tavolsag); + } Debug.Log(ap.akciopont); Debug.Log("ugynok sorsolas"); ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); + ugynok.ugynokMegolveElozoHelyen(); twotwocount++; if (kingcasinolepes1.activeSelf == true) { @@ -1132,12 +1141,12 @@ public class movement : MonoBehaviour } else { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } } else { - Debug.Log("Nincs el�g akci�pontod vagy nem 1 mez�n bel�l akarsz l�pni"); + Debug.Log("Nincs eleg akciopontod vagy nem 1 mezon belul akarsz lepni"); } } @@ -1159,7 +1168,7 @@ public class movement : MonoBehaviour if (feltoltolepes1.activeSelf == true & feltoltolepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -1175,17 +1184,18 @@ public class movement : MonoBehaviour jelenlegi_x = 3; jelenlegi_y = 2; if (targyak.lathatatlanOltozetAktivalva) - { - targyak.lathatatlanOltozetAktivalva = false; - } - else - { - //ap.akciopont = ap.akciopont - tavolsag; - ap.UpdateAkciopont(-tavolsag); - } + { + targyak.lathatatlanOltozetAktivalva = false; + } + else + { + //ap.akciopont = ap.akciopont - tavolsag; + ap.UpdateAkciopont(-tavolsag); + } Debug.Log(ap.akciopont); Debug.Log("ugynok sorsolas"); ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); + ugynok.ugynokMegolveElozoHelyen(); threetwocount++; if (feltoltolepes1.activeSelf == true) { @@ -1202,12 +1212,12 @@ public class movement : MonoBehaviour } else { - Debug.Log("Maximum k�tszer l�phetsz egy mez?re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } } else { - Debug.Log("Nincs el�g akci�pontod vagy nem 1 mez?n bel�l akarsz l�pni"); + Debug.Log("Nincs eleg akciopontod vagy nem 1 mezon belul akarsz lepni"); } } @@ -1229,7 +1239,7 @@ public class movement : MonoBehaviour if (kutatolaborlepes1.activeSelf == true & kutatolaborlepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -1240,18 +1250,19 @@ public class movement : MonoBehaviour player.transform.position = onethree.transform.position; jelenlegi_x = 1; jelenlegi_y = 3; - if (targyak.lathatatlanOltozetAktivalva) - { - targyak.lathatatlanOltozetAktivalva = false; - } - else - { - //ap.akciopont = ap.akciopont - tavolsag; - ap.UpdateAkciopont(-tavolsag); - } + if (targyak.lathatatlanOltozetAktivalva) + { + targyak.lathatatlanOltozetAktivalva = false; + } + else + { + //ap.akciopont = ap.akciopont - tavolsag; + ap.UpdateAkciopont(-tavolsag); + } Debug.Log(ap.akciopont); Debug.Log("ugynok sorsolas"); ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); + ugynok.ugynokMegolveElozoHelyen(); onethreecount++; if (kutatolaborlepes1.activeSelf == true) { @@ -1268,12 +1279,12 @@ public class movement : MonoBehaviour } else { - Debug.Log("Maximum k�tszer l�phetsz egy mez?re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } } else { - Debug.Log("Nincs el�g akci�pontod vagy nem 1 mez?n bel�l akarsz l�pni"); + Debug.Log("Nincs eleg akciopontod vagy nem 1 mez?n belul akarsz lepni"); } } @@ -1295,7 +1306,7 @@ public class movement : MonoBehaviour if (kriptoklublepes1.activeSelf == true & kriptoklublepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -1311,17 +1322,18 @@ public class movement : MonoBehaviour jelenlegi_x = 2; jelenlegi_y = 3; if (targyak.lathatatlanOltozetAktivalva) - { - targyak.lathatatlanOltozetAktivalva = false; - } - else - { - //ap.akciopont = ap.akciopont - tavolsag; - ap.UpdateAkciopont(-tavolsag); - } + { + targyak.lathatatlanOltozetAktivalva = false; + } + else + { + //ap.akciopont = ap.akciopont - tavolsag; + ap.UpdateAkciopont(-tavolsag); + } Debug.Log(ap.akciopont); Debug.Log("ugynok sorsolas"); ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); + ugynok.ugynokMegolveElozoHelyen(); twothreecount++; if (kriptoklublepes1.activeSelf == true) { @@ -1338,12 +1350,12 @@ public class movement : MonoBehaviour } else { - Debug.Log("Maximum k�tszer l�phetsz egy mez?re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } } else { - Debug.Log("Nincs el�g akci�pontod vagy nem 1 mez?n bel�l akarsz l�pni"); + Debug.Log("Nincs eleg akciopontod vagy nem 1 mezon belul akarsz lepni"); } } @@ -1366,7 +1378,7 @@ public class movement : MonoBehaviour if (cyberplazalepes1.activeSelf == true & cyberplazalepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -1378,17 +1390,18 @@ public class movement : MonoBehaviour jelenlegi_x = 3; jelenlegi_y = 3; if (targyak.lathatatlanOltozetAktivalva) - { - targyak.lathatatlanOltozetAktivalva = false; - } - else - { - //ap.akciopont = ap.akciopont - tavolsag; - ap.UpdateAkciopont(-tavolsag); - } + { + targyak.lathatatlanOltozetAktivalva = false; + } + else + { + //ap.akciopont = ap.akciopont - tavolsag; + ap.UpdateAkciopont(-tavolsag); + } Debug.Log(ap.akciopont); Debug.Log("ugynok sorsolas"); ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); + ugynok.ugynokMegolveElozoHelyen(); threethreecount++; if (cyberplazalepes1.activeSelf == true) { @@ -1405,12 +1418,12 @@ public class movement : MonoBehaviour } else { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } } else { - Debug.Log("Nincs el�g akci�pontod vagy nem 1 mez?n bel�l akarsz l�pni"); + Debug.Log("Nincs eleg akciopontod vagy nem 1 mezon belul akarsz lepni"); } } @@ -1432,7 +1445,7 @@ public class movement : MonoBehaviour if (hadiuzemlepes1.activeSelf == true & hadiuzemlepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -1444,17 +1457,18 @@ public class movement : MonoBehaviour jelenlegi_x = 1; jelenlegi_y = 4; if (targyak.lathatatlanOltozetAktivalva) - { - targyak.lathatatlanOltozetAktivalva = false; - } - else - { - //ap.akciopont = ap.akciopont - tavolsag; - ap.UpdateAkciopont(-tavolsag); - } + { + targyak.lathatatlanOltozetAktivalva = false; + } + else + { + //ap.akciopont = ap.akciopont - tavolsag; + ap.UpdateAkciopont(-tavolsag); + } Debug.Log(ap.akciopont); Debug.Log("ugynok sorsolas"); ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); + ugynok.ugynokMegolveElozoHelyen(); onefourcount++; if (hadiuzemlepes1.activeSelf == true) { @@ -1471,12 +1485,12 @@ public class movement : MonoBehaviour } else { - Debug.Log("Maximum k�tszer l�phetsz egy mez?re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } } else { - Debug.Log("Nincs el�g akci�pontod vagy nem 1 mez?n bel�l akarsz l�pni"); + Debug.Log("Nincs eleg akciopontod vagy nem 1 mez?n belul akarsz lepni"); } } @@ -1498,7 +1512,7 @@ public class movement : MonoBehaviour if (konyvtarlepes1.activeSelf == true & konyvtarlepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -1509,18 +1523,19 @@ public class movement : MonoBehaviour player.transform.position = twofour.transform.position; jelenlegi_x = 2; jelenlegi_y = 4; - if (targyak.lathatatlanOltozetAktivalva) - { - targyak.lathatatlanOltozetAktivalva = false; - } - else - { - //ap.akciopont = ap.akciopont - tavolsag; - ap.UpdateAkciopont(-tavolsag); - } + if (targyak.lathatatlanOltozetAktivalva) + { + targyak.lathatatlanOltozetAktivalva = false; + } + else + { + //ap.akciopont = ap.akciopont - tavolsag; + ap.UpdateAkciopont(-tavolsag); + } Debug.Log(ap.akciopont); Debug.Log("ugynok sorsolas"); ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); + ugynok.ugynokMegolveElozoHelyen(); twofourcount++; if (konyvtarlepes1.activeSelf == true) { @@ -1537,12 +1552,12 @@ public class movement : MonoBehaviour } else { - Debug.Log("Maximum k�tszer l�phetsz egy mez?re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } } else { - Debug.Log("Nincs el�g akci�pontod vagy nem 1 mez?n bel�l akarsz l�pni"); + Debug.Log("Nincs eleg akciopontod vagy nem 1 mezon belul akarsz lepni"); } } @@ -1564,7 +1579,7 @@ public class movement : MonoBehaviour if (korhazlepes1.activeSelf == true & korhazlepes2.activeSelf == true) { - Debug.Log("Maximum k�tszer l�phetsz egy mez�re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } else { @@ -1576,17 +1591,18 @@ public class movement : MonoBehaviour jelenlegi_x = 3; jelenlegi_y = 4; if (targyak.lathatatlanOltozetAktivalva) - { - targyak.lathatatlanOltozetAktivalva = false; - } - else - { - //ap.akciopont = ap.akciopont - tavolsag; - ap.UpdateAkciopont(-tavolsag); - } + { + targyak.lathatatlanOltozetAktivalva = false; + } + else + { + //ap.akciopont = ap.akciopont - tavolsag; + ap.UpdateAkciopont(-tavolsag); + } Debug.Log(ap.akciopont); Debug.Log("ugynok sorsolas"); ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); + ugynok.ugynokMegolveElozoHelyen(); threefourcount++; if (korhazlepes1.activeSelf == true) { @@ -1603,12 +1619,12 @@ public class movement : MonoBehaviour } else { - Debug.Log("Maximum k�tszer l�phetsz egy mez?re"); + Debug.Log("Maximum ketszer lephetsz egy mezore"); } } else { - Debug.Log("Nincs el�g akci�pontod vagy nem 1 mez?n bel�l akarsz l�pni"); + Debug.Log("Nincs eleg akciopontod vagy nem 1 mezon belul akarsz lepni"); } } diff --git a/UserSettings/Layouts/default-2021.dwlt b/UserSettings/Layouts/default-2021.dwlt index 1abbbf3..00bd597 100644 --- a/UserSettings/Layouts/default-2021.dwlt +++ b/UserSettings/Layouts/default-2021.dwlt @@ -15,9 +15,9 @@ MonoBehaviour: m_PixelRect: serializedVersion: 2 x: 0 - y: 43 - width: 1920 - height: 997 + y: 28 + width: 1366 + height: 673 m_ShowMode: 4 m_Title: Hierarchy m_RootView: {fileID: 2} @@ -44,8 +44,8 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1920 - height: 997 + width: 1366 + height: 673 m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} m_UseTopView: 1 @@ -69,7 +69,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1920 + width: 1366 height: 30 m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} @@ -90,8 +90,8 @@ MonoBehaviour: m_Position: serializedVersion: 2 x: 0 - y: 977 - width: 1920 + y: 653 + width: 1366 height: 20 m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} @@ -114,12 +114,12 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 30 - width: 1920 - height: 947 + width: 1366 + height: 623 m_MinSize: {x: 300, y: 200} m_MaxSize: {x: 24288, y: 16192} vertical: 0 - controlID: 86 + controlID: 20 --- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 @@ -139,12 +139,12 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1453 - height: 947 + width: 1007 + height: 623 m_MinSize: {x: 200, y: 200} m_MaxSize: {x: 16192, y: 16192} vertical: 1 - controlID: 66 + controlID: 21 --- !u!114 &7 MonoBehaviour: m_ObjectHideFlags: 52 @@ -164,12 +164,12 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1453 - height: 588 + width: 1007 + height: 388 m_MinSize: {x: 200, y: 100} m_MaxSize: {x: 16192, y: 8096} vertical: 0 - controlID: 67 + controlID: 22 --- !u!114 &8 MonoBehaviour: m_ObjectHideFlags: 52 @@ -187,8 +187,8 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 263 - height: 588 + width: 181 + height: 388 m_MinSize: {x: 201, y: 221} m_MaxSize: {x: 4001, y: 4021} m_ActualView: {fileID: 13} @@ -211,12 +211,12 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 263 + x: 181 y: 0 - width: 1190 - height: 588 - m_MinSize: {x: 202, y: 221} - m_MaxSize: {x: 4002, y: 4021} + width: 826 + height: 388 + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} m_ActualView: {fileID: 12} m_Panes: - {fileID: 14} @@ -239,9 +239,9 @@ MonoBehaviour: m_Position: serializedVersion: 2 x: 0 - y: 588 - width: 1453 - height: 359 + y: 388 + width: 1007 + height: 235 m_MinSize: {x: 231, y: 271} m_MaxSize: {x: 10001, y: 10021} m_ActualView: {fileID: 15} @@ -259,23 +259,23 @@ MonoBehaviour: m_Enabled: 1 m_EditorHideFlags: 1 m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: ConsoleWindow + m_Name: InspectorWindow m_EditorClassIdentifier: m_Children: [] m_Position: serializedVersion: 2 - x: 1453 + x: 1007 y: 0 - width: 467 - height: 947 - m_MinSize: {x: 101, y: 121} + width: 359 + height: 623 + m_MinSize: {x: 276, y: 71} m_MaxSize: {x: 4001, y: 4021} - m_ActualView: {fileID: 16} + m_ActualView: {fileID: 17} m_Panes: - {fileID: 17} - {fileID: 16} - m_Selected: 1 - m_LastSelected: 0 + m_Selected: 0 + m_LastSelected: 1 --- !u!114 &12 MonoBehaviour: m_ObjectHideFlags: 52 @@ -296,10 +296,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 263 - y: 73 - width: 1188 - height: 567 + x: 181 + y: 86 + width: 824 + height: 367 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -310,7 +310,7 @@ MonoBehaviour: m_ShowGizmos: 0 m_TargetDisplay: 0 m_ClearColor: {r: 0, g: 0, b: 0, a: 0} - m_TargetSize: {x: 1188, y: 546} + m_TargetSize: {x: 615, y: 346} m_TextureFilterMode: 0 m_TextureHideFlags: 61 m_RenderIMGUI: 1 @@ -325,10 +325,10 @@ MonoBehaviour: m_VRangeLocked: 0 hZoomLockedByDefault: 0 vZoomLockedByDefault: 0 - m_HBaseRangeMin: -594 - m_HBaseRangeMax: 594 - m_VBaseRangeMin: -273 - m_VBaseRangeMax: 273 + m_HBaseRangeMin: -307.5 + m_HBaseRangeMax: 307.5 + m_VBaseRangeMin: -173 + m_VBaseRangeMax: 173 m_HAllowExceedBaseRangeMin: 1 m_HAllowExceedBaseRangeMax: 1 m_VAllowExceedBaseRangeMin: 1 @@ -346,23 +346,23 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 21 - width: 1188 - height: 546 + width: 824 + height: 346 m_Scale: {x: 1, y: 1} - m_Translation: {x: 594, y: 273} + m_Translation: {x: 412, y: 173} m_MarginLeft: 0 m_MarginRight: 0 m_MarginTop: 0 m_MarginBottom: 0 m_LastShownAreaInsideMargins: serializedVersion: 2 - x: -594 - y: -273 - width: 1188 - height: 546 + x: -412 + y: -173 + width: 824 + height: 346 m_MinimalGUI: 1 m_defaultScale: 1 - m_LastWindowPixelSize: {x: 1188, y: 567} + m_LastWindowPixelSize: {x: 824, y: 367} m_ClearInEditMode: 1 m_NoCameraWarning: 1 m_LowResolutionForAspectRatios: 01000000000000000000 @@ -389,9 +389,9 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 0 - y: 73 - width: 262 - height: 567 + y: 86 + width: 180 + height: 367 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -401,7 +401,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: faf5ffff14fbffff + m_ExpandedIDs: 28fbffff m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -445,10 +445,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 187 + x: 181 y: 86 - width: 845 - height: 445 + width: 824 + height: 367 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -698,16 +698,16 @@ MonoBehaviour: m_WindowGUID: cc27987af1a868c49b0894db9c0f5429 m_Gizmos: 1 m_OverrideSceneCullingMask: 6917529027641081856 - m_SceneIsLit: 1 + m_SceneIsLit: 0 m_SceneLighting: 1 m_2DMode: 1 m_isRotationLocked: 0 m_PlayAudio: 0 m_AudioPlay: 0 m_Position: - m_Target: {x: 343.27173, y: 345.1628, z: 1.9150982} + m_Target: {x: -8.945042, y: -2.5416188, z: 0.0057649035} speed: 2 - m_Value: {x: 343.27173, y: 345.1628, z: 1.9150982} + m_Value: {x: -8.945042, y: -2.5416188, z: 0.0057649035} m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -758,9 +758,9 @@ MonoBehaviour: speed: 2 m_Value: {x: 0, y: 0, z: 0, w: 1} m_Size: - m_Target: 344.6367 + m_Target: 7.5217633 speed: 2 - m_Value: 344.6367 + m_Value: 7.5217633 m_Ortho: m_Target: 1 speed: 2 @@ -806,9 +806,9 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 0 - y: 661 - width: 1452 - height: 338 + y: 474 + width: 1006 + height: 214 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -834,14 +834,14 @@ MonoBehaviour: m_LastFolders: - Assets/Scripts m_LastFoldersGridSize: 66 - m_LastProjectPath: E:\dev\find the source\projekt\FindTheSource + m_LastProjectPath: /home/tom/Documents/dev/find the source m_LockTracker: m_IsLocked: 0 m_FolderTreeState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: 406f0000 - m_LastClickedID: 28480 - m_ExpandedIDs: 00000000346f0000 + m_SelectedIDs: 0e7a0000 + m_LastClickedID: 31246 + m_ExpandedIDs: 00000000f879000000ca9a3b m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -869,7 +869,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 00000000346f0000 + m_ExpandedIDs: 00000000f8790000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -945,10 +945,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 1453 - y: 73 - width: 466 - height: 926 + x: 1007 + y: 86 + width: 358 + height: 602 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -973,10 +973,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 1453 - y: 73 - width: 466 - height: 926 + x: 1007 + y: 86 + width: 358 + height: 602 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -987,7 +987,7 @@ MonoBehaviour: m_CachedPref: -160 m_ControlHash: -371814159 m_PrefName: Preview_InspectorPreview - m_LastInspectedObjectInstanceID: 12452 + m_LastInspectedObjectInstanceID: -1 m_LastVerticalScrollValue: 0 m_GlobalObjectId: m_InspectorMode: 0