diff --git a/Assets/Scripts/Ugynok.cs b/Assets/Scripts/Ugynok.cs index 1d54be9..c5958d7 100644 --- a/Assets/Scripts/Ugynok.cs +++ b/Assets/Scripts/Ugynok.cs @@ -64,7 +64,7 @@ public class Ugynok : MonoBehaviour }else if (oneone[1].text.Equals("")) { oneone[1].text = UnityEngine.Random.Range(1, 7).ToString(); }else if (oneone[2].text.Equals("")) { - oneone[1].text = UnityEngine.Random.Range(1, 7).ToString(); + oneone[2].text = UnityEngine.Random.Range(1, 7).ToString(); } } else if (x == 1 && y == 2) { if (onetwo[0].text.Equals("")) { @@ -156,7 +156,4 @@ public class Ugynok : MonoBehaviour } } } - - - } diff --git a/Assets/Scripts/movement.cs b/Assets/Scripts/movement.cs index 8c16eb0..c1e3902 100644 --- a/Assets/Scripts/movement.cs +++ b/Assets/Scripts/movement.cs @@ -71,6 +71,7 @@ public class movement : MonoBehaviour { public GameObject korhazlepes2; private Akciopont ap; + private Ugynok ugynok; private int oneonecount = 0; private int twoonecount = 0; @@ -104,6 +105,7 @@ public class movement : MonoBehaviour { void Start() { ap = FindObjectOfType(); + ugynok = FindObjectOfType(); eromulepes1.SetActive(false); eromulepes2.SetActive(false); @@ -154,72 +156,96 @@ public class movement : MonoBehaviour { eromulepes1.GetComponent().text = moveCounter.ToString(); jelenlegi_x = 1; jelenlegi_y = 1; + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); } else if (random == 2) { player.transform.position = twoone.transform.position; feketepiaclepes1.SetActive(true); feketepiaclepes1.GetComponent().text = moveCounter.ToString(); jelenlegi_x = 2; jelenlegi_y = 1; + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); } else if (random == 3) { player.transform.position = threeone.transform.position; metrolepes1.SetActive(true); metrolepes1.GetComponent().text = moveCounter.ToString(); jelenlegi_x = 3; jelenlegi_y = 1; + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); } else if (random == 4) { player.transform.position = onetwo.transform.position; szervereklepes1.SetActive(true); szervereklepes1.GetComponent().text = moveCounter.ToString(); jelenlegi_x = 1; jelenlegi_y = 2; + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); } else if (random == 5) { player.transform.position = twotwo.transform.position; kingcasinolepes1.SetActive(true); kingcasinolepes1.GetComponent().text = moveCounter.ToString(); jelenlegi_x = 2; jelenlegi_y = 2; + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); } else if (random == 6) { player.transform.position = threetwo.transform.position; feltoltolepes1.SetActive(true); feltoltolepes1.GetComponent().text = moveCounter.ToString(); jelenlegi_x = 3; jelenlegi_y = 2; + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); } else if (random == 7) { player.transform.position = onethree.transform.position; kutatolaborlepes1.SetActive(true); kutatolaborlepes1.GetComponent().text = moveCounter.ToString(); jelenlegi_x = 1; jelenlegi_y = 3; + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); } else if (random == 8) { player.transform.position = twothree.transform.position; kriptoklublepes1.SetActive(true); kriptoklublepes1.GetComponent().text = moveCounter.ToString(); jelenlegi_x = 2; jelenlegi_y = 3; + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); } else if (random == 9) { player.transform.position = threethree.transform.position; cyberplazalepes1.SetActive(true); cyberplazalepes1.GetComponent().text = moveCounter.ToString(); jelenlegi_x = 3; jelenlegi_y = 3; + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); } else if (random == 10) { player.transform.position = onefour.transform.position; hadiuzemlepes1.SetActive(true); hadiuzemlepes1.GetComponent().text = moveCounter.ToString(); jelenlegi_x = 1; jelenlegi_y = 4; + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); } else if (random == 11) { player.transform.position = twofour.transform.position; konyvtarlepes1.SetActive(true); konyvtarlepes1.GetComponent().text = moveCounter.ToString(); jelenlegi_x = 2; jelenlegi_y = 4; + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); } else if (random == 12) { player.transform.position = threefour.transform.position; korhazlepes1.SetActive(true); korhazlepes1.GetComponent().text = moveCounter.ToString(); jelenlegi_x = 3; jelenlegi_y = 4; + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); } } @@ -652,6 +678,8 @@ public class movement : MonoBehaviour { ap.akciopont = ap.akciopont - tavolsag; oneonecount = oneonecount + 1; Debug.Log(ap.akciopont); + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); if (eromulepes1.activeSelf == true) { eromulepes2.SetActive(true); moveCounter++; @@ -691,6 +719,8 @@ public class movement : MonoBehaviour { ap.akciopont = ap.akciopont - tavolsag; twoonecount = twoonecount + 1; Debug.Log(ap.akciopont); + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); if (feketepiaclepes1.activeSelf == true) { feketepiaclepes2.SetActive(true); moveCounter++; @@ -730,6 +760,8 @@ public class movement : MonoBehaviour { ap.akciopont = ap.akciopont - tavolsag; threeonecount++; Debug.Log(ap.akciopont); + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); if (metrolepes1.activeSelf == true) { metrolepes2.SetActive(true); moveCounter++; @@ -773,6 +805,8 @@ public class movement : MonoBehaviour { ap.akciopont = ap.akciopont - tavolsag; onetwocount++; Debug.Log(ap.akciopont); + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); if (szervereklepes1.activeSelf == true) { szervereklepes2.SetActive(true); moveCounter++; @@ -811,6 +845,8 @@ public class movement : MonoBehaviour { jelenlegi_y = 2; ap.akciopont = ap.akciopont - tavolsag; Debug.Log(ap.akciopont); + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); twotwocount++; if (kingcasinolepes1.activeSelf == true) { kingcasinolepes2.SetActive(true); @@ -855,6 +891,8 @@ public class movement : MonoBehaviour { jelenlegi_y = 2; ap.akciopont = ap.akciopont - tavolsag; Debug.Log(ap.akciopont); + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); threetwocount++; if (feltoltolepes1.activeSelf == true) { feltoltolepes2.SetActive(true); @@ -895,6 +933,8 @@ public class movement : MonoBehaviour { jelenlegi_y = 3; ap.akciopont = ap.akciopont - tavolsag; Debug.Log(ap.akciopont); + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); onethreecount++; if (kutatolaborlepes1.activeSelf == true) { kutatolaborlepes2.SetActive(true); @@ -939,6 +979,8 @@ public class movement : MonoBehaviour { jelenlegi_y = 3; ap.akciopont = ap.akciopont - tavolsag; Debug.Log(ap.akciopont); + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); twothreecount++; if (kriptoklublepes1.activeSelf == true) { kriptoklublepes2.SetActive(true); @@ -980,6 +1022,8 @@ public class movement : MonoBehaviour { jelenlegi_y = 3; ap.akciopont = ap.akciopont - tavolsag; Debug.Log(ap.akciopont); + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); threethreecount++; if (cyberplazalepes1.activeSelf == true) { cyberplazalepes2.SetActive(true); @@ -1020,6 +1064,8 @@ public class movement : MonoBehaviour { jelenlegi_y = 4; ap.akciopont = ap.akciopont - tavolsag; Debug.Log(ap.akciopont); + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); onefourcount++; if (hadiuzemlepes1.activeSelf == true) { hadiuzemlepes2.SetActive(true); @@ -1060,6 +1106,8 @@ public class movement : MonoBehaviour { jelenlegi_y = 4; ap.akciopont = ap.akciopont - tavolsag; Debug.Log(ap.akciopont); + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); twofourcount++; if (konyvtarlepes1.activeSelf == true) { konyvtarlepes2.SetActive(true); @@ -1100,6 +1148,8 @@ public class movement : MonoBehaviour { jelenlegi_y = 4; ap.akciopont = ap.akciopont - tavolsag; Debug.Log(ap.akciopont); + //Ugynokok sorsorlasa a helyre + ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y); threefourcount++; if (korhazlepes1.activeSelf == true) { korhazlepes2.SetActive(true); diff --git a/UserSettings/Layouts/CurrentMaximizeLayout.dwlt b/UserSettings/Layouts/CurrentMaximizeLayout.dwlt index 28ef0d8..35d32b4 100644 --- a/UserSettings/Layouts/CurrentMaximizeLayout.dwlt +++ b/UserSettings/Layouts/CurrentMaximizeLayout.dwlt @@ -19,12 +19,16 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 30 - width: 1920 - height: 947 + width: 1366 + height: 635 m_MinSize: {x: 300, y: 200} m_MaxSize: {x: 24288, y: 16192} vertical: 0 +<<<<<<< HEAD controlID: 374 +======= + controlID: 847 +>>>>>>> 6ddca2faf0b77d5b62b9d6ad931e04e9ff4541fc --- !u!114 &2 MonoBehaviour: m_ObjectHideFlags: 52 @@ -45,10 +49,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 306 + x: 218 y: 73 - width: 1040 - height: 553 + width: 739 + height: 364 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -59,7 +63,7 @@ MonoBehaviour: m_ShowGizmos: 0 m_TargetDisplay: 0 m_ClearColor: {r: 0, g: 0, b: 0, a: 0} - m_TargetSize: {x: 1040, y: 532} + m_TargetSize: {x: 739, y: 343} m_TextureFilterMode: 0 m_TextureHideFlags: 61 m_RenderIMGUI: 1 @@ -74,10 +78,10 @@ MonoBehaviour: m_VRangeLocked: 0 hZoomLockedByDefault: 0 vZoomLockedByDefault: 0 - m_HBaseRangeMin: -520 - m_HBaseRangeMax: 520 - m_VBaseRangeMin: -266 - m_VBaseRangeMax: 266 + m_HBaseRangeMin: -369.5 + m_HBaseRangeMax: 369.5 + m_VBaseRangeMin: -171.5 + m_VBaseRangeMax: 171.5 m_HAllowExceedBaseRangeMin: 1 m_HAllowExceedBaseRangeMax: 1 m_VAllowExceedBaseRangeMin: 1 @@ -95,23 +99,23 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 21 - width: 1040 - height: 532 + width: 739 + height: 343 m_Scale: {x: 1, y: 1} - m_Translation: {x: 520, y: 266} + m_Translation: {x: 369.5, y: 171.5} m_MarginLeft: 0 m_MarginRight: 0 m_MarginTop: 0 m_MarginBottom: 0 m_LastShownAreaInsideMargins: serializedVersion: 2 - x: -520 - y: -266 - width: 1040 - height: 532 + x: -369.5 + y: -171.5 + width: 739 + height: 343 m_MinimalGUI: 1 m_defaultScale: 1 - m_LastWindowPixelSize: {x: 1040, y: 553} + m_LastWindowPixelSize: {x: 739, y: 364} m_ClearInEditMode: 1 m_NoCameraWarning: 1 m_LowResolutionForAspectRatios: 01000000000000000000 @@ -136,12 +140,16 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1348 - height: 947 + width: 959 + height: 635 m_MinSize: {x: 200, y: 200} m_MaxSize: {x: 16192, y: 16192} vertical: 1 +<<<<<<< HEAD controlID: 375 +======= + controlID: 848 +>>>>>>> 6ddca2faf0b77d5b62b9d6ad931e04e9ff4541fc --- !u!114 &4 MonoBehaviour: m_ObjectHideFlags: 52 @@ -161,12 +169,16 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1348 - height: 574 + width: 959 + height: 385 m_MinSize: {x: 200, y: 100} m_MaxSize: {x: 16192, y: 8096} vertical: 0 +<<<<<<< HEAD controlID: 376 +======= + controlID: 849 +>>>>>>> 6ddca2faf0b77d5b62b9d6ad931e04e9ff4541fc --- !u!114 &5 MonoBehaviour: m_ObjectHideFlags: 52 @@ -184,8 +196,8 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 306 - height: 574 + width: 218 + height: 385 m_MinSize: {x: 201, y: 221} m_MaxSize: {x: 4001, y: 4021} m_ActualView: {fileID: 6} @@ -215,8 +227,8 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 73 - width: 305 - height: 553 + width: 217 + height: 364 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -226,7 +238,11 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 +<<<<<<< HEAD m_ExpandedIDs: 20fbffff +======= + m_ExpandedIDs: aeddffff2adeffffd0e1fffff2e1ffff8cf3ffff08f4ffffaaf7ffffc8f7ffff1efbffff +>>>>>>> 6ddca2faf0b77d5b62b9d6ad931e04e9ff4541fc m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -265,10 +281,10 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 306 + x: 218 y: 0 - width: 1042 - height: 574 + width: 741 + height: 385 m_MinSize: {x: 202, y: 221} m_MaxSize: {x: 4002, y: 4021} m_ActualView: {fileID: 2} @@ -550,16 +566,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: -4.5465274, y: -1.4268839, z: -0.07916484} + m_Target: {x: -6.6550636, y: 2.4831932, z: -0.021597017} speed: 2 - m_Value: {x: -4.5465274, y: -1.4268839, z: -0.07916484} + m_Value: {x: -6.6550636, y: 2.4831932, z: -0.021597017} m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -610,9 +626,9 @@ MonoBehaviour: speed: 2 m_Value: {x: 0, y: 0, z: 0, w: 1} m_Size: - m_Target: 10.31249 + m_Target: 8.307541 speed: 2 - m_Value: 10.31249 + m_Value: 8.307541 m_Ortho: m_Target: 1 speed: 2 @@ -653,9 +669,15 @@ MonoBehaviour: m_Position: serializedVersion: 2 x: 0 +<<<<<<< HEAD y: 574 width: 1348 height: 373 +======= + y: 385 + width: 959 + height: 250 +>>>>>>> 6ddca2faf0b77d5b62b9d6ad931e04e9ff4541fc m_MinSize: {x: 231, y: 271} m_MaxSize: {x: 10001, y: 10021} m_ActualView: {fileID: 10} @@ -686,9 +708,9 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 0 - y: 647 - width: 1347 - height: 352 + y: 458 + width: 958 + height: 229 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -714,14 +736,20 @@ MonoBehaviour: m_LastFolders: - Assets/Scripts m_LastFoldersGridSize: 71 - m_LastProjectPath: C:\dev\find the source\projekt\FindTheSource + m_LastProjectPath: C:\dev\find the source m_LockTracker: m_IsLocked: 0 m_FolderTreeState: scrollPos: {x: 0, y: 0} +<<<<<<< HEAD m_SelectedIDs: 84770000 m_LastClickedID: 30596 m_ExpandedIDs: 000000005c7700005e77000060770000 +======= + m_SelectedIDs: 76770000 + m_LastClickedID: 30582 + m_ExpandedIDs: 000000005c77000000ca9a3bffffff7f +>>>>>>> 6ddca2faf0b77d5b62b9d6ad931e04e9ff4541fc m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -749,7 +777,11 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 +<<<<<<< HEAD m_ExpandedIDs: 000000005c7700005e77000060770000 +======= + m_ExpandedIDs: 000000005c77000000ca9a3bffffff7f +>>>>>>> 6ddca2faf0b77d5b62b9d6ad931e04e9ff4541fc m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -801,7 +833,7 @@ MonoBehaviour: m_Icon: {fileID: 0} m_ResourceFile: m_NewAssetIndexInList: -1 - m_ScrollPosition: {x: 0, y: 0} + m_ScrollPosition: {x: 0, y: 86.498474} m_GridSize: 71 m_SkipHiddenPackages: 0 m_DirectoriesAreaWidth: 164 @@ -1024,10 +1056,15 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 1348 + x: 959 y: 0 +<<<<<<< HEAD width: 572 height: 947 +======= + width: 407 + height: 635 +>>>>>>> 6ddca2faf0b77d5b62b9d6ad931e04e9ff4541fc m_MinSize: {x: 276, y: 71} m_MaxSize: {x: 4001, y: 4021} m_ActualView: {fileID: 14} @@ -1055,10 +1092,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 1348 + x: 959 y: 73 - width: 571 - height: 926 + width: 406 + height: 614 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default diff --git a/UserSettings/Layouts/default-2021.dwlt b/UserSettings/Layouts/default-2021.dwlt index 687be3b..30e5513 100644 --- a/UserSettings/Layouts/default-2021.dwlt +++ b/UserSettings/Layouts/default-2021.dwlt @@ -16,8 +16,8 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 43 - width: 1920 - height: 997 + width: 1366 + height: 685 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: 685 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: 665 + 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: 635 m_MinSize: {x: 300, y: 200} m_MaxSize: {x: 24288, y: 16192} vertical: 0 - controlID: 86 + controlID: 958 --- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 @@ -139,12 +139,12 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1348 - height: 947 + width: 959 + height: 635 m_MinSize: {x: 200, y: 200} m_MaxSize: {x: 16192, y: 16192} vertical: 1 - controlID: 87 + controlID: 959 --- !u!114 &7 MonoBehaviour: m_ObjectHideFlags: 52 @@ -164,12 +164,12 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1348 - height: 574 + width: 959 + height: 385 m_MinSize: {x: 200, y: 100} m_MaxSize: {x: 16192, y: 8096} vertical: 0 - controlID: 88 + controlID: 960 --- !u!114 &8 MonoBehaviour: m_ObjectHideFlags: 52 @@ -187,8 +187,8 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 306 - height: 574 + width: 218 + height: 385 m_MinSize: {x: 201, y: 221} m_MaxSize: {x: 4001, y: 4021} m_ActualView: {fileID: 13} @@ -211,10 +211,10 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 306 + x: 218 y: 0 - width: 1042 - height: 574 + width: 741 + height: 385 m_MinSize: {x: 202, y: 221} m_MaxSize: {x: 4002, y: 4021} m_ActualView: {fileID: 12} @@ -239,9 +239,9 @@ MonoBehaviour: m_Position: serializedVersion: 2 x: 0 - y: 574 - width: 1348 - height: 373 + y: 385 + width: 959 + height: 250 m_MinSize: {x: 231, y: 271} m_MaxSize: {x: 10001, y: 10021} m_ActualView: {fileID: 15} @@ -266,10 +266,10 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 1348 + x: 959 y: 0 - width: 572 - height: 947 + width: 407 + height: 635 m_MinSize: {x: 276, y: 71} m_MaxSize: {x: 4001, y: 4021} m_ActualView: {fileID: 18} @@ -297,10 +297,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 306 + x: 218 y: 73 - width: 1040 - height: 553 + width: 739 + height: 364 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -311,11 +311,11 @@ MonoBehaviour: m_ShowGizmos: 0 m_TargetDisplay: 0 m_ClearColor: {r: 0, g: 0, b: 0, a: 0} - m_TargetSize: {x: 1040, y: 532} + m_TargetSize: {x: 739, y: 343} m_TextureFilterMode: 0 m_TextureHideFlags: 61 m_RenderIMGUI: 1 - m_EnterPlayModeBehavior: 0 + m_EnterPlayModeBehavior: 1 m_UseMipMap: 0 m_VSyncEnabled: 0 m_Gizmos: 0 @@ -326,10 +326,10 @@ MonoBehaviour: m_VRangeLocked: 0 hZoomLockedByDefault: 0 vZoomLockedByDefault: 0 - m_HBaseRangeMin: -520 - m_HBaseRangeMax: 520 - m_VBaseRangeMin: -266 - m_VBaseRangeMax: 266 + m_HBaseRangeMin: -369.5 + m_HBaseRangeMax: 369.5 + m_VBaseRangeMin: -171.5 + m_VBaseRangeMax: 171.5 m_HAllowExceedBaseRangeMin: 1 m_HAllowExceedBaseRangeMax: 1 m_VAllowExceedBaseRangeMin: 1 @@ -347,23 +347,23 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 21 - width: 1040 - height: 532 + width: 739 + height: 343 m_Scale: {x: 1, y: 1} - m_Translation: {x: 520, y: 266} + m_Translation: {x: 369.5, y: 171.5} m_MarginLeft: 0 m_MarginRight: 0 m_MarginTop: 0 m_MarginBottom: 0 m_LastShownAreaInsideMargins: serializedVersion: 2 - x: -520 - y: -266 - width: 1040 - height: 532 + x: -369.5 + y: -171.5 + width: 739 + height: 343 m_MinimalGUI: 1 m_defaultScale: 1 - m_LastWindowPixelSize: {x: 1040, y: 553} + m_LastWindowPixelSize: {x: 739, y: 364} m_ClearInEditMode: 1 m_NoCameraWarning: 1 m_LowResolutionForAspectRatios: 01000000000000000000 @@ -391,8 +391,8 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 73 - width: 305 - height: 553 + width: 217 + height: 364 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -402,7 +402,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 28fbffff + m_ExpandedIDs: aeddffff2adeffffd0e1fffff2e1ffff8cf3ffff08f4ffffaaf7ffffc8f7ffff1efbffff m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -699,16 +699,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: -4.5465274, y: -1.4268839, z: -0.07916484} + m_Target: {x: -6.6550636, y: 2.4831932, z: -0.021597017} speed: 2 - m_Value: {x: -4.5465274, y: -1.4268839, z: -0.07916484} + m_Value: {x: -6.6550636, y: 2.4831932, z: -0.021597017} m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -759,9 +759,9 @@ MonoBehaviour: speed: 2 m_Value: {x: 0, y: 0, z: 0, w: 1} m_Size: - m_Target: 10.31249 + m_Target: 8.307541 speed: 2 - m_Value: 10.31249 + m_Value: 8.307541 m_Ortho: m_Target: 1 speed: 2 @@ -807,9 +807,9 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 0 - y: 647 - width: 1347 - height: 352 + y: 458 + width: 958 + height: 229 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -835,14 +835,14 @@ MonoBehaviour: m_LastFolders: - Assets/Scripts m_LastFoldersGridSize: 71 - m_LastProjectPath: C:\dev\find the source\projekt\FindTheSource + m_LastProjectPath: C:\dev\find the source m_LockTracker: m_IsLocked: 0 m_FolderTreeState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: 72770000 - m_LastClickedID: 30578 - m_ExpandedIDs: 0000000056770000587700005a770000 + m_SelectedIDs: 76770000 + m_LastClickedID: 30582 + m_ExpandedIDs: 000000005c77000000ca9a3bffffff7f m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -870,7 +870,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 0000000056770000587700005a770000 + m_ExpandedIDs: 000000005c77000000ca9a3bffffff7f m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -897,7 +897,7 @@ MonoBehaviour: m_ListAreaState: m_SelectedInstanceIDs: m_LastClickedInstanceID: 0 - m_HadKeyboardFocusLastEvent: 1 + m_HadKeyboardFocusLastEvent: 0 m_ExpandedInstanceIDs: c62300000000000034ecffff m_RenameOverlay: m_UserAcceptedRename: 0 @@ -922,7 +922,7 @@ MonoBehaviour: m_Icon: {fileID: 0} m_ResourceFile: m_NewAssetIndexInList: -1 - m_ScrollPosition: {x: 0, y: 0} + m_ScrollPosition: {x: 0, y: 86.498474} m_GridSize: 71 m_SkipHiddenPackages: 0 m_DirectoriesAreaWidth: 164 @@ -1150,10 +1150,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 1348 + x: 959 y: 73 - width: 571 - height: 926 + width: 406 + height: 614 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default