elet levonas bug javitva, kezdohely animacio, harc gomb, nagyobb kocka

This commit is contained in:
2023-04-18 21:14:04 +02:00
parent c51138a8cb
commit e21cd9f100
12 changed files with 1393 additions and 158 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,28 +1,41 @@
using System.Collections;
using System.Collections.Generic;
using System;
using System.IO; //ideiglenes amig a mac camera bug nincs javitva aztan torolheto
using System.Text; //ideiglenes
using UnityEngine;
public class AspectRatioHandler : MonoBehaviour
{
public Camera mainCamera;
private StreamWriter writer;
private void Awake() {
writer = new StreamWriter(Application.persistentDataPath + "/aspectratio.txt", false, Encoding.Default);
double aspectRatio = (double)Screen.width / (double)Screen.height;
aspectRatio = Math.Round(aspectRatio, 2);
writer.Write("felbontas: width: " + Screen.width + " height: " + Screen.height + " aspectratio: " + aspectRatio+ "unity aspect: " + mainCamera.aspect);
writer.Close();
Debug.Log("aspectratio: " + aspectRatio);
//5:4 1,25, 4:3 1,33, 16:9 1,77, 16:10 1,6, 21:9 2,33
if(aspectRatio == 1.78 || aspectRatio == 2.33){
mainCamera.orthographicSize = 10.4f; //16:9, 21:9
if(Application.platform == RuntimePlatform.OSXPlayer)
mainCamera.orthographicSize = 13f; //mac aspect ratio fix???
else
mainCamera.orthographicSize = 10.4f; //16:9, 21:9
}else if(aspectRatio == 1.6){
mainCamera.orthographicSize = 11.43f; //16:10
if(Application.platform == RuntimePlatform.OSXPlayer)
mainCamera.orthographicSize = 13f; //mac aspect ratio fix???
else
mainCamera.orthographicSize = 11.43f; //16:9, 21:9 //16:10 11.43f
}else if(aspectRatio == 1.33){
mainCamera.orthographicSize = 13.72f; //4:3
}else if(aspectRatio == 1.25){
mainCamera.orthographicSize = 14.68f;
}
}
}
}

View File

@@ -7,16 +7,19 @@ public class Dice : MonoBehaviour {
public Sprite[] diceSides = new Sprite[6];
public SpriteRenderer hely1;
public SpriteRenderer hely2;
public SpriteRenderer animacio1;
public SpriteRenderer animacio2;
[SerializeField] private int spriteSize = 60;
private Vector2 diceSpriteSize;
public Button dice1btnBtn;
public Button dice2btnBtn;
private Upgrade upgrade;
private Akciopont ap;
private Energia energiasav;
private Targyak targyak;
private Ugynok ugynok;
private movement movement;
public int[] diceResult = { 0, 0 };
public List<int> ujertek = new List<int>();
public int valasztottErtek; //a jatekos altal valasztott dobott ertek helye
@@ -47,6 +50,8 @@ public class Dice : MonoBehaviour {
targyak = FindObjectOfType<Targyak>();
ugynok = FindObjectOfType<Ugynok>();
movement = FindObjectOfType<movement>();
diceSpriteSize = new Vector2(spriteSize, spriteSize);
}
public void ertekValasztas(GameObject gomb) {
@@ -152,15 +157,15 @@ public class Dice : MonoBehaviour {
} while (diceResult[0] == diceResult[1]);
//dice porgo animacio
StartCoroutine(AnimateTheDice(hely1, diceResult[0]));
StartCoroutine(AnimateTheDice(hely2, diceResult[1]));
callAnimateDice(hely1, diceResult[0]);
callAnimateDice(hely2, diceResult[1]);
//lassa a jatekos mit dobott
hely1.sprite = diceSides[diceResult[0]-1];
hely1.size = new Vector2(38, 38);
hely1.size = diceSpriteSize;
hely2.sprite = diceSides[diceResult[1]-1];
hely2.size = new Vector2(38, 38);
hely2.size = diceSpriteSize;
if(ugynokDobas){
ugynokDobasErtek = true;
@@ -247,10 +252,10 @@ public class Dice : MonoBehaviour {
}
hely1.sprite = diceSides[diceResult[0]-1];
hely1.size = new Vector2(38, 38);
hely1.size = diceSpriteSize;
hely2.sprite = diceSides[diceResult[1]-1];
hely2.size = new Vector2(38, 38);
hely2.size = diceSpriteSize;
dobott++;
//ha vegzett mindennel kapcsolja vissza az ertekvalasztast
@@ -279,7 +284,7 @@ public class Dice : MonoBehaviour {
this.adrenalinMegerosites = adrenalinMegerosites;
}
public void callAnimateDice(SpriteRenderer rend, int diceErtek) => StartCoroutine(AnimateTheDice(rend, diceErtek));
private IEnumerator AnimateTheDice(SpriteRenderer rend, int diceErtek)
{
int randomDiceSide;
@@ -295,12 +300,12 @@ public class Dice : MonoBehaviour {
randomDiceSide = Random.Range(0, 5);
rend.sprite = diceSides[Random.Range(0, 5)];
rend.size = new Vector2(38, 38);
rend.size = diceSpriteSize;
yield return new WaitForSeconds(0.05f);
}
rend.sprite = diceSides[diceErtek - 1];
rend.size = new Vector2(38, 38);
rend.size = diceSpriteSize;
}
}

View File

@@ -0,0 +1,41 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using TMPro;
public class Kezdohelyszin : MonoBehaviour
{
public SpriteRenderer dice1;
public SpriteRenderer dice2;
public TMP_Text eredmenyText;
public Button nextButton;
private int random;
private Dice dice;
private void Awake() {
dice = FindObjectOfType<Dice>();
nextButton.interactable = false;
}
public void KezdoHelyszinSorsolas(int x, int y, string helynev){
StartCoroutine(waitForDiceAnimation(helynev));
dice.callAnimateDice(dice1, x);
dice.callAnimateDice(dice2, y);
}
private IEnumerator waitForDiceAnimation(string helynev){
yield return new WaitForSeconds(5f);
eredmenyText.text = "A kezdőhelyszíned: " + helynev;
nextButton.interactable = true;
}
public void Debugl(){
Debug.Log("clicked");
}
}

View File

@@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 2a9617c93d2bf0a4dbfd8f3c5c2aadda
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -29,7 +29,7 @@ public class Ugynok : MonoBehaviour
public bool droidagyuAktivalva = false;
public bool canKill = false;
public bool canShoot = false; //harchoz bool
private string[] previus_ugynok_csapatok;
[SerializeField] private string[] previus_ugynok_csapatok;
private int elozo_x;
private int elozo_y ;
public void setCanKillTrue(){ canKill = true; }
@@ -288,7 +288,12 @@ public class Ugynok : MonoBehaviour
}
public void ugynokOles(TMP_Text ugynokText){
public void ugynokOles(TMP_Text ugynokText){
if(!canKill){
Debug.Log("Nem nyomtal a harc gombra!!");
return;
}
//string tmp = ugynokText.gameObject.name;
string s = ugynokText.gameObject.name;
//Debug.Log("gomb name: " + s);
@@ -333,6 +338,7 @@ public class Ugynok : MonoBehaviour
}
akciok.Loves(ugynokcsapatletszama / upgrade.harc[upgrade.getHarcIndex()]);
canKill = false;
Debug.Log("tolteny szama:" + ugynokcsapatletszama / upgrade.harc[upgrade.getHarcIndex()]);
}
@@ -352,8 +358,12 @@ public class Ugynok : MonoBehaviour
if(elozo_x != movement.jelenlegi_x || elozo_y != movement.jelenlegi_y){
foreach(var item in previus_ugynok_csapatok){
if(!item.Equals("")){
Debug.Log("|"+item+"|");
//ha nem ures a text vagyis volt atirva szamra nezze meg hogy X-e
if(!item.Equals("x") ||!item.Equals("X")){
//if(!item.Equals("x") || !item.Equals("X"))
if(item.Equals("1") || item.Equals("2") || item.Equals("3") || item.Equals("4") || item.Equals("5") || item.Equals("6"))
{
Debug.Log("belep ugynok item: |"+item+"|");
//vonjon le egy eletet
elet.Eletvesztes();
break;

View File

@@ -6,7 +6,7 @@ using System.Threading;
public class fps : MonoBehaviour
{
public TMP_Text fpsText;
public TMP_Text fpsText; //ideiglenesen megvaltoztatva az uzenet boxra!!
[SerializeField] private float _hudRefreshRate = 1f;
private float _timer;

View File

@@ -67,9 +67,21 @@ public class jatekmanager : MonoBehaviour
public TMP_Text nev;
public GameObject mainCanvas;
public GameObject helyszinCanvas;
public GameObject helyszinSorsolasCanvas;
public GameObject palyaSprite;
public GameObject playerSprite;
private void Awake()
{
Instance = this;
mainCanvas.SetActive(false); //helyszin sorsolas animacio miatt
helyszinCanvas.SetActive(false);
helyszinSorsolasCanvas.SetActive(true);
palyaSprite.SetActive(false);
playerSprite.SetActive(false);
}
private void Start()
@@ -405,7 +417,7 @@ public class jatekmanager : MonoBehaviour
Debug.Log("Játékos nyerésének vizsgálata.");
Debug.Log("A forrás oszlopa:" + source.oszlop);
Debug.Log("A forrás sora:" + source.sor[0]);
Debug.Log("");
//Debug.Log("");
Debug.Log("A te jelenlegi oszlopod:" + movement.jelenlegi_y);
Debug.Log("A te jelenlegi sorod:" + movement.jelenlegi_x);
if (source.isNyitva == true && source.oszlop == movement.jelenlegi_x && source.sor[0] == movement.jelenlegi_y) //+ ugynokcsapat oles a helyszinen

View File

@@ -76,6 +76,7 @@ public class movement : MonoBehaviour
private Targyak targyak;
private jatekmanager jatekmanager;
private Dice dice;
private Kezdohelyszin kezdohelyszin;
private int oneonecount = 0;
private int twoonecount = 0;
@@ -114,9 +115,10 @@ public class movement : MonoBehaviour
targyak = FindObjectOfType<Targyak>();
jatekmanager = FindObjectOfType<jatekmanager>();
dice = FindObjectOfType<Dice>();
kezdohelyszin = FindObjectOfType<Kezdohelyszin>();
}
void Start()
private void Start()
{
eromulepes1.SetActive(false);
eromulepes2.SetActive(false);
@@ -168,7 +170,9 @@ public class movement : MonoBehaviour
eromulepes1.SetActive(true);
eromulepes1.GetComponent<TMP_Text>().text = moveCounter.ToString();
jelenlegi_x = 1;
jelenlegi_y = 1;
jelenlegi_y = 1;
kezdohelyszin.KezdoHelyszinSorsolas(jelenlegi_x, jelenlegi_y, "Erőmű");
}
else if (random == 2)
{
@@ -177,6 +181,7 @@ public class movement : MonoBehaviour
feketepiaclepes1.GetComponent<TMP_Text>().text = moveCounter.ToString();
jelenlegi_x = 2;
jelenlegi_y = 1;
kezdohelyszin.KezdoHelyszinSorsolas(jelenlegi_x, jelenlegi_y, "Fekete piac");
}
else if (random == 3)
{
@@ -185,6 +190,7 @@ public class movement : MonoBehaviour
metrolepes1.GetComponent<TMP_Text>().text = moveCounter.ToString();
jelenlegi_x = 3;
jelenlegi_y = 1;
kezdohelyszin.KezdoHelyszinSorsolas(jelenlegi_x, jelenlegi_y, "Metró");
}
else if (random == 4)
{
@@ -193,6 +199,7 @@ public class movement : MonoBehaviour
szervereklepes1.GetComponent<TMP_Text>().text = moveCounter.ToString();
jelenlegi_x = 1;
jelenlegi_y = 2;
kezdohelyszin.KezdoHelyszinSorsolas(jelenlegi_x, jelenlegi_y, "Szerverek");
}
else if (random == 5)
{
@@ -201,6 +208,7 @@ public class movement : MonoBehaviour
kingcasinolepes1.GetComponent<TMP_Text>().text = moveCounter.ToString();
jelenlegi_x = 2;
jelenlegi_y = 2;
kezdohelyszin.KezdoHelyszinSorsolas(jelenlegi_x, jelenlegi_y, "King Kaszinó");
}
else if (random == 6)
{
@@ -209,6 +217,7 @@ public class movement : MonoBehaviour
feltoltolepes1.GetComponent<TMP_Text>().text = moveCounter.ToString();
jelenlegi_x = 3;
jelenlegi_y = 2;
kezdohelyszin.KezdoHelyszinSorsolas(jelenlegi_x, jelenlegi_y, "Feltöltő");
}
else if (random == 7)
{
@@ -217,6 +226,7 @@ public class movement : MonoBehaviour
kutatolaborlepes1.GetComponent<TMP_Text>().text = moveCounter.ToString();
jelenlegi_x = 1;
jelenlegi_y = 3;
kezdohelyszin.KezdoHelyszinSorsolas(jelenlegi_x, jelenlegi_y, "Kutatólabor");
}
else if (random == 8)
{
@@ -225,6 +235,7 @@ public class movement : MonoBehaviour
kriptoklublepes1.GetComponent<TMP_Text>().text = moveCounter.ToString();
jelenlegi_x = 2;
jelenlegi_y = 3;
kezdohelyszin.KezdoHelyszinSorsolas(jelenlegi_x, jelenlegi_y, "Kripto club");
}
else if (random == 9)
{
@@ -233,6 +244,7 @@ public class movement : MonoBehaviour
cyberplazalepes1.GetComponent<TMP_Text>().text = moveCounter.ToString();
jelenlegi_x = 3;
jelenlegi_y = 3;
kezdohelyszin.KezdoHelyszinSorsolas(jelenlegi_x, jelenlegi_y, "Cyber pláza");
}
else if (random == 10)
{
@@ -241,6 +253,7 @@ public class movement : MonoBehaviour
hadiuzemlepes1.GetComponent<TMP_Text>().text = moveCounter.ToString();
jelenlegi_x = 1;
jelenlegi_y = 4;
kezdohelyszin.KezdoHelyszinSorsolas(jelenlegi_x, jelenlegi_y, "Hadiüzem");
}
else if (random == 11)
{
@@ -249,6 +262,7 @@ public class movement : MonoBehaviour
konyvtarlepes1.GetComponent<TMP_Text>().text = moveCounter.ToString();
jelenlegi_x = 2;
jelenlegi_y = 4;
kezdohelyszin.KezdoHelyszinSorsolas(jelenlegi_x, jelenlegi_y, "Könyvtár");
}
else if (random == 12)
{
@@ -257,6 +271,7 @@ public class movement : MonoBehaviour
korhazlepes1.GetComponent<TMP_Text>().text = moveCounter.ToString();
jelenlegi_x = 3;
jelenlegi_y = 4;
kezdohelyszin.KezdoHelyszinSorsolas(jelenlegi_x, jelenlegi_y, "Kórház");
}
//ugynok.UgynokSorsolas(jelenlegi_x, jelenlegi_y);

File diff suppressed because one or more lines are too long

View File

@@ -41,3 +41,6 @@ TagManager:
- name: Default
uniqueID: 0
locked: 0
- name: Kezdohelyszin
uniqueID: 2685889865
locked: 0

View File

@@ -15,11 +15,11 @@ MonoBehaviour:
m_PixelRect:
serializedVersion: 2
x: 0
y: 28
width: 1366
height: 680
y: 43
width: 1920
height: 997
m_ShowMode: 4
m_Title: Console
m_Title: Hierarchy
m_RootView: {fileID: 3}
m_MinSize: {x: 875, y: 300}
m_MaxSize: {x: 10000, y: 10000}
@@ -39,12 +39,12 @@ MonoBehaviour:
m_Children: []
m_Position:
serializedVersion: 2
x: 1011
x: 1421
y: 0
width: 355
height: 630
m_MinSize: {x: 276, y: 71}
m_MaxSize: {x: 4001, y: 4021}
width: 499
height: 947
m_MinSize: {x: 275, y: 50}
m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 18}
m_Panes:
- {fileID: 18}
@@ -70,8 +70,8 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 0
width: 1366
height: 680
width: 1920
height: 997
m_MinSize: {x: 875, y: 300}
m_MaxSize: {x: 10000, y: 10000}
m_UseTopView: 1
@@ -95,7 +95,7 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 0
width: 1366
width: 1920
height: 30
m_MinSize: {x: 0, y: 0}
m_MaxSize: {x: 0, y: 0}
@@ -116,8 +116,8 @@ MonoBehaviour:
m_Position:
serializedVersion: 2
x: 0
y: 660
width: 1366
y: 977
width: 1920
height: 20
m_MinSize: {x: 0, y: 0}
m_MaxSize: {x: 0, y: 0}
@@ -140,12 +140,12 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 30
width: 1366
height: 630
width: 1920
height: 947
m_MinSize: {x: 300, y: 200}
m_MaxSize: {x: 24288, y: 16192}
vertical: 0
controlID: 20
controlID: 40
--- !u!114 &7
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -165,12 +165,12 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 0
width: 1011
height: 630
width: 1421
height: 947
m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 16192, y: 16192}
vertical: 1
controlID: 21
controlID: 41
--- !u!114 &8
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -190,12 +190,12 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 0
width: 1011
height: 379
width: 1421
height: 570
m_MinSize: {x: 200, y: 100}
m_MaxSize: {x: 16192, y: 8096}
vertical: 0
controlID: 22
controlID: 42
--- !u!114 &9
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -213,10 +213,10 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 0
width: 175
height: 379
m_MinSize: {x: 201, y: 221}
m_MaxSize: {x: 4001, y: 4021}
width: 255
height: 570
m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 14}
m_Panes:
- {fileID: 14}
@@ -237,10 +237,10 @@ MonoBehaviour:
m_Children: []
m_Position:
serializedVersion: 2
x: 175
x: 255
y: 0
width: 836
height: 379
width: 1166
height: 570
m_MinSize: {x: 202, y: 221}
m_MaxSize: {x: 4002, y: 4021}
m_ActualView: {fileID: 15}
@@ -265,11 +265,11 @@ MonoBehaviour:
m_Position:
serializedVersion: 2
x: 0
y: 379
width: 1011
height: 251
m_MinSize: {x: 101, y: 121}
m_MaxSize: {x: 4001, y: 4021}
y: 570
width: 1421
height: 377
m_MinSize: {x: 100, y: 100}
m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 17}
m_Panes:
- {fileID: 16}
@@ -473,10 +473,10 @@ MonoBehaviour:
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 175
y: 86
width: 834
height: 358
x: 255
y: 73
width: 1164
height: 549
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@@ -487,7 +487,7 @@ MonoBehaviour:
m_ShowGizmos: 0
m_TargetDisplay: 0
m_ClearColor: {r: 0, g: 0, b: 0, a: 0}
m_TargetSize: {x: 599, y: 337}
m_TargetSize: {x: 939, y: 528}
m_TextureFilterMode: 0
m_TextureHideFlags: 61
m_RenderIMGUI: 1
@@ -502,10 +502,10 @@ MonoBehaviour:
m_VRangeLocked: 0
hZoomLockedByDefault: 0
vZoomLockedByDefault: 0
m_HBaseRangeMin: -299.5
m_HBaseRangeMax: 299.5
m_VBaseRangeMin: -168.5
m_VBaseRangeMax: 168.5
m_HBaseRangeMin: -469.5
m_HBaseRangeMax: 469.5
m_VBaseRangeMin: -264
m_VBaseRangeMax: 264
m_HAllowExceedBaseRangeMin: 1
m_HAllowExceedBaseRangeMax: 1
m_VAllowExceedBaseRangeMin: 1
@@ -523,23 +523,23 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 21
width: 834
height: 337
width: 1164
height: 528
m_Scale: {x: 1, y: 1}
m_Translation: {x: 417, y: 168.5}
m_Translation: {x: 582, y: 264}
m_MarginLeft: 0
m_MarginRight: 0
m_MarginTop: 0
m_MarginBottom: 0
m_LastShownAreaInsideMargins:
serializedVersion: 2
x: -417
y: -168.5
width: 834
height: 337
x: -582
y: -264
width: 1164
height: 528
m_MinimalGUI: 1
m_defaultScale: 1
m_LastWindowPixelSize: {x: 834, y: 358}
m_LastWindowPixelSize: {x: 1164, y: 549}
m_ClearInEditMode: 1
m_NoCameraWarning: 1
m_LowResolutionForAspectRatios: 01000000000000000000
@@ -566,9 +566,9 @@ MonoBehaviour:
m_Pos:
serializedVersion: 2
x: 0
y: 86
width: 174
height: 358
y: 73
width: 254
height: 549
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@@ -576,23 +576,23 @@ MonoBehaviour:
m_SceneHierarchy:
m_TreeViewState:
scrollPos: {x: 0, y: 0}
m_SelectedIDs: 006e0000
m_LastClickedID: 28160
m_ExpandedIDs: 1afbffff1e71000020790000
m_SelectedIDs:
m_LastClickedID: 0
m_ExpandedIDs: 5272fdff3ab0feff6e35ffff7491ffff28fbfffff4ffffffda710000
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
m_OriginalName:
m_Name: dice2
m_OriginalName: dice2
m_EditFieldRect:
serializedVersion: 2
x: 0
y: 0
width: 0
height: 0
m_UserData: 0
m_UserData: -93248
m_IsWaitingForDelay: 0
m_IsRenaming: 0
m_OriginalEventType: 11
m_OriginalEventType: 0
m_IsRenamingFilename: 0
m_ClientGUIView: {fileID: 9}
m_SearchString:
@@ -622,10 +622,10 @@ MonoBehaviour:
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 175
y: 86
width: 834
height: 358
x: 255
y: 73
width: 1164
height: 549
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@@ -875,16 +875,16 @@ MonoBehaviour:
m_WindowGUID: cc27987af1a868c49b0894db9c0f5429
m_Gizmos: 1
m_OverrideSceneCullingMask: 6917529027641081856
m_SceneIsLit: 0
m_SceneIsLit: 1
m_SceneLighting: 1
m_2DMode: 1
m_isRotationLocked: 0
m_PlayAudio: 0
m_AudioPlay: 0
m_Position:
m_Target: {x: -0.6508466, y: 2.6651125, z: 0.050433118}
m_Target: {x: -7.5399766, y: -0.58874947, z: 61.085133}
speed: 2
m_Value: {x: -0.6508466, y: 2.6651125, z: 0.050433118}
m_Value: {x: -7.5399766, y: -0.58874947, z: 61.085133}
m_RenderMode: 0
m_CameraMode:
drawMode: 0
@@ -935,9 +935,9 @@ MonoBehaviour:
speed: 2
m_Value: {x: 0, y: 0, z: 0, w: 1}
m_Size:
m_Target: 9.950926
m_Target: 9.850329
speed: 2
m_Value: 9.950926
m_Value: 9.850329
m_Ortho:
m_Target: 1
speed: 2
@@ -983,9 +983,9 @@ MonoBehaviour:
m_Pos:
serializedVersion: 2
x: 0
y: 465
width: 1010
height: 230
y: 643
width: 1420
height: 356
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@@ -1003,22 +1003,22 @@ MonoBehaviour:
m_SkipHidden: 0
m_SearchArea: 1
m_Folders:
- Assets/Scripts
- Assets
m_Globs: []
m_OriginalText:
m_ViewMode: 1
m_StartGridSize: 64
m_LastFolders:
- Assets/Scripts
- Assets
m_LastFoldersGridSize: -1
m_LastProjectPath: /home/tom/Documents/dev/find the source
m_LastProjectPath: E:\dev\find the source\projekt\FindTheSource
m_LockTracker:
m_IsLocked: 0
m_FolderTreeState:
scrollPos: {x: 0, y: 39}
m_SelectedIDs: 607b0000
m_LastClickedID: 31584
m_ExpandedIDs: 000000003c7b00005c7b0000687b000000ca9a3b
scrollPos: {x: 0, y: 0}
m_SelectedIDs: 3c7b0000
m_LastClickedID: 31548
m_ExpandedIDs: 000000003c7b00003e7b0000407b0000607b0000
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@@ -1046,7 +1046,7 @@ MonoBehaviour:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
m_LastClickedID: 0
m_ExpandedIDs: 000000003c7b0000
m_ExpandedIDs: 000000003c7b00003e7b0000407b0000
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@@ -1071,8 +1071,8 @@ MonoBehaviour:
m_Icon: {fileID: 0}
m_ResourceFile:
m_ListAreaState:
m_SelectedInstanceIDs: aa6f0000
m_LastClickedInstanceID: 28586
m_SelectedInstanceIDs: 8c790000
m_LastClickedInstanceID: 31116
m_HadKeyboardFocusLastEvent: 1
m_ExpandedInstanceIDs: c6230000687a00003a79000058790000
m_RenameOverlay:
@@ -1090,7 +1090,7 @@ MonoBehaviour:
m_IsRenaming: 0
m_OriginalEventType: 11
m_IsRenamingFilename: 1
m_ClientGUIView: {fileID: 0}
m_ClientGUIView: {fileID: 11}
m_CreateAssetUtility:
m_EndAction: {fileID: 0}
m_InstanceID: 0
@@ -1098,7 +1098,7 @@ MonoBehaviour:
m_Icon: {fileID: 0}
m_ResourceFile:
m_NewAssetIndexInList: -1
m_ScrollPosition: {x: 0, y: 89}
m_ScrollPosition: {x: 0, y: 0}
m_GridSize: 64
m_SkipHiddenPackages: 0
m_DirectoriesAreaWidth: 142
@@ -1123,9 +1123,9 @@ MonoBehaviour:
m_Pos:
serializedVersion: 2
x: 0
y: 465
width: 1010
height: 230
y: 643
width: 1420
height: 356
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@@ -1150,10 +1150,10 @@ MonoBehaviour:
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 1011
y: 86
width: 354
height: 609
x: 1421
y: 73
width: 498
height: 926
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@@ -1165,7 +1165,7 @@ MonoBehaviour:
m_ControlHash: -371814159
m_PrefName: Preview_InspectorPreview
m_LastInspectedObjectInstanceID: -1
m_LastVerticalScrollValue: 324
m_LastVerticalScrollValue: 0
m_GlobalObjectId:
m_InspectorMode: 0
m_LockTracker: