ahha
asd
This commit is contained in:
@@ -21557,9 +21557,9 @@ MonoBehaviour:
|
||||
m_OnClick:
|
||||
m_PersistentCalls:
|
||||
m_Calls:
|
||||
- m_Target: {fileID: 197904225}
|
||||
- m_Target: {fileID: 197904216}
|
||||
m_TargetAssemblyTypeName: TurnManager, Assembly-CSharp
|
||||
m_MethodName: nextTurn
|
||||
m_MethodName:
|
||||
m_Mode: 1
|
||||
m_Arguments:
|
||||
m_ObjectArgument: {fileID: 0}
|
||||
@@ -40005,3 +40005,47 @@ CanvasRenderer:
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 2141320753}
|
||||
m_CullTransparentMesh: 1
|
||||
--- !u!1 &2142951057
|
||||
GameObject:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
serializedVersion: 6
|
||||
m_Component:
|
||||
- component: {fileID: 2142951059}
|
||||
- component: {fileID: 2142951058}
|
||||
m_Layer: 0
|
||||
m_Name: jatekmanager
|
||||
m_TagString: Untagged
|
||||
m_Icon: {fileID: 0}
|
||||
m_NavMeshLayer: 0
|
||||
m_StaticEditorFlags: 0
|
||||
m_IsActive: 1
|
||||
--- !u!114 &2142951058
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 2142951057}
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 0
|
||||
m_Script: {fileID: 11500000, guid: 6423cb96f98604ea1be2455ae7cff97d, type: 3}
|
||||
m_Name:
|
||||
m_EditorClassIdentifier:
|
||||
--- !u!4 &2142951059
|
||||
Transform:
|
||||
m_ObjectHideFlags: 0
|
||||
m_CorrespondingSourceObject: {fileID: 0}
|
||||
m_PrefabInstance: {fileID: 0}
|
||||
m_PrefabAsset: {fileID: 0}
|
||||
m_GameObject: {fileID: 2142951057}
|
||||
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
|
||||
m_LocalPosition: {x: -4.5465274, y: -1.4268839, z: -0.07916484}
|
||||
m_LocalScale: {x: 1, y: 1, z: 1}
|
||||
m_ConstrainProportionsScale: 0
|
||||
m_Children: []
|
||||
m_Father: {fileID: 0}
|
||||
m_RootOrder: 9
|
||||
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
|
||||
|
||||
@@ -21,6 +21,8 @@ public class Dice : MonoBehaviour {
|
||||
public bool getLocked() { return locked; }
|
||||
public void setLocked(bool locked) { this.locked = locked; }
|
||||
|
||||
public int dobott = 0;
|
||||
|
||||
private void Start() {
|
||||
upgrade = FindObjectOfType<Upgrade>();
|
||||
ap = FindObjectOfType<Akciopont>();
|
||||
@@ -76,5 +78,7 @@ public class Dice : MonoBehaviour {
|
||||
|
||||
hely2.sprite = diceSides[diceResult[1]-1];
|
||||
hely2.size = new Vector2(38, 38);
|
||||
dobott++;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -9,8 +9,12 @@ public class Elet : MonoBehaviour
|
||||
public int elet = 2;
|
||||
private int elet_vesztve = 0;
|
||||
private int elet_megszerezve = 2;
|
||||
private jatekmanager jatekmanager;
|
||||
|
||||
private void Start() {
|
||||
jatekmanager = FindObjectOfType<jatekmanager>();
|
||||
|
||||
|
||||
for (int i = 0; i < elet_megszerezve; i++) {
|
||||
elet_text[i].text = "O";
|
||||
}
|
||||
@@ -32,7 +36,11 @@ public class Elet : MonoBehaviour
|
||||
}
|
||||
|
||||
public void Eletvesztes() {
|
||||
if(elet_vesztve > 4) return;
|
||||
if (elet_vesztve > 4)
|
||||
{
|
||||
jatekmanager.jatekosvesztett = true;
|
||||
return;
|
||||
}
|
||||
if (elet_megszerezve > elet +1) return;
|
||||
//if(elet < 0) return;
|
||||
|
||||
|
||||
501
Assets/Scripts/jatekmanager.cs
Normal file
501
Assets/Scripts/jatekmanager.cs
Normal file
@@ -0,0 +1,501 @@
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Net.Sockets;
|
||||
using TMPro;
|
||||
using UnityEngine;
|
||||
|
||||
public class jatekmanager : MonoBehaviour
|
||||
{
|
||||
//game objectek implementálása
|
||||
public GameObject energiafejlesztés;
|
||||
public GameObject akciofejlesztés;
|
||||
public GameObject harcfejlesztés;
|
||||
public GameObject ujradobasfejlesztés;
|
||||
public GameObject hackfejlesztés;
|
||||
public GameObject kovetkezokor;
|
||||
public GameObject betarazas;
|
||||
public GameObject nyomozas;
|
||||
public GameObject hackeles;
|
||||
public GameObject rolldice;
|
||||
public GameObject test;
|
||||
|
||||
|
||||
//script-ek implementalasa
|
||||
private Elet elet;
|
||||
private Akciok akciok;
|
||||
private Targyak targyak;
|
||||
private Dice dice;
|
||||
private Upgrade upgrade;
|
||||
private Akciopont akciopont;
|
||||
private movement movement;
|
||||
private TurnManager turnManager;
|
||||
private Source source;
|
||||
|
||||
//ügynökcsapatok implementálása
|
||||
public TMP_Text[] oneone;
|
||||
public TMP_Text[] twoone;
|
||||
public TMP_Text[] threeone;
|
||||
public TMP_Text[] onetwo;
|
||||
public TMP_Text[] twotwo;
|
||||
public TMP_Text[] threetwo;
|
||||
public TMP_Text[] onethree;
|
||||
public TMP_Text[] twothree;
|
||||
public TMP_Text[] threethree;
|
||||
public TMP_Text[] onefour;
|
||||
public TMP_Text[] twofour;
|
||||
public TMP_Text[] threefour;
|
||||
|
||||
//nyert es vesztett bool lethrehozas
|
||||
public bool jatekosnyert = false;
|
||||
public bool jatekosvesztett = false;
|
||||
|
||||
private void Start()
|
||||
{
|
||||
elet = FindObjectOfType<Elet>();
|
||||
akciok = FindObjectOfType<Akciok>();
|
||||
targyak = FindObjectOfType<Targyak>();
|
||||
dice = FindObjectOfType<Dice>();
|
||||
upgrade = FindObjectOfType<Upgrade>();
|
||||
akciopont = FindObjectOfType<Akciopont>();
|
||||
movement = FindObjectOfType<movement>();
|
||||
turnManager = FindObjectOfType<TurnManager>();
|
||||
source = FindObjectOfType<Source>();
|
||||
|
||||
}
|
||||
|
||||
// Update is called once per frame
|
||||
void Update()
|
||||
{
|
||||
//amig a játékos vesztett bool nem egyenlo true-val vagy a nyert bool nem egyenlo true-val
|
||||
while (jatekosnyert != true || jatekosvesztett != true)
|
||||
{
|
||||
//a jatekos mikor belép semmit ne tudjon csinálni csak dobni a kockával, hogy elkezdje a játékot
|
||||
|
||||
//Itt a movement script kikapcsol
|
||||
|
||||
energiafejlesztés.SetActive(false);
|
||||
akciofejlesztés.SetActive(false);
|
||||
harcfejlesztés.SetActive(false);
|
||||
ujradobasfejlesztés.SetActive(false);
|
||||
hackfejlesztés.SetActive(false);
|
||||
kovetkezokor.SetActive(false);
|
||||
betarazas.SetActive(false);
|
||||
nyomozas.SetActive(false);
|
||||
hackeles.SetActive(false);
|
||||
test.SetActive(false);
|
||||
|
||||
while (dice.dobott < upgrade.getUjradobasIndex() + 1 && dice.getLocked() != true)
|
||||
{
|
||||
|
||||
//eddig újradobhat
|
||||
}
|
||||
|
||||
rolldice.SetActive(false);
|
||||
|
||||
//a játékos választ a két érték között
|
||||
|
||||
if (upgrade.canUpgrade == true)
|
||||
{
|
||||
//ha a kisebbet választotta akkor jelennek meg a fejlesztés gombjai
|
||||
energiafejlesztés.SetActive(true);
|
||||
akciofejlesztés.SetActive(true);
|
||||
harcfejlesztés.SetActive(true);
|
||||
ujradobasfejlesztés.SetActive(true);
|
||||
hackfejlesztés.SetActive(true);
|
||||
kovetkezokor.SetActive(true);
|
||||
}
|
||||
else
|
||||
{
|
||||
//ha a nagyobbat választotta akkor jelennek meg az akciók gombjai
|
||||
|
||||
//itt a movement bekapcsol
|
||||
kovetkezokor.SetActive(true);
|
||||
betarazas.SetActive(true);
|
||||
nyomozas.SetActive(true);
|
||||
hackeles.SetActive(true);
|
||||
}
|
||||
|
||||
|
||||
if (akciopont.akciopont == 0)
|
||||
{
|
||||
|
||||
//movement kikapcs
|
||||
energiafejlesztés.SetActive(false);
|
||||
akciofejlesztés.SetActive(false);
|
||||
harcfejlesztés.SetActive(false);
|
||||
ujradobasfejlesztés.SetActive(false);
|
||||
hackfejlesztés.SetActive(false);
|
||||
rolldice.SetActive(false);
|
||||
betarazas.SetActive(false);
|
||||
nyomozas.SetActive(false);
|
||||
hackeles.SetActive(false);
|
||||
test.SetActive(false);
|
||||
kovetkezokor.SetActive(true);
|
||||
}
|
||||
//amint rányom a kör vége gombra 0 legyen az akciópont és megint csak a dobás legyen elérhető
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
public void JatekosNyert()
|
||||
{
|
||||
if (source.isNyitva == true && source.oszlop == movement.jelenlegi_y && source.sor[0] == movement.jelenlegi_x) //+ ugynokcsapat oles a helyszinen
|
||||
{
|
||||
if (movement.jelenlegi_x == 1 && movement.jelenlegi_y == 1)
|
||||
{
|
||||
if (oneone[0].text.Equals("X") && oneone[1].text.Equals("X") && oneone[2].text.Equals("X"))
|
||||
{
|
||||
jatekosnyert = true;
|
||||
}
|
||||
}
|
||||
if (movement.jelenlegi_x == 1 && movement.jelenlegi_y == 2)
|
||||
{
|
||||
if (onetwo[0].text.Equals("X") && onetwo[1].text.Equals("X") && onetwo[2].text.Equals("X"))
|
||||
{
|
||||
jatekosnyert = true;
|
||||
}
|
||||
}
|
||||
if (movement.jelenlegi_x == 1 && movement.jelenlegi_y == 3)
|
||||
{
|
||||
if (onethree[0].text.Equals("X") && onethree[1].text.Equals("X") && onethree[2].text.Equals("X"))
|
||||
{
|
||||
jatekosnyert = true;
|
||||
}
|
||||
}
|
||||
if (movement.jelenlegi_x == 2 && movement.jelenlegi_y == 1)
|
||||
{
|
||||
if (twoone[0].text.Equals("X") && twoone[1].text.Equals("X") && twoone[2].text.Equals("X"))
|
||||
{
|
||||
jatekosnyert = true;
|
||||
}
|
||||
}
|
||||
if (movement.jelenlegi_x == 2 && movement.jelenlegi_y == 2)
|
||||
{
|
||||
if (twotwo[0].text.Equals("X") && twotwo[1].text.Equals("X") && twotwo[2].text.Equals("X"))
|
||||
{
|
||||
jatekosnyert = true;
|
||||
}
|
||||
}
|
||||
if (movement.jelenlegi_x == 2 && movement.jelenlegi_y == 3)
|
||||
{
|
||||
if (twothree[0].text.Equals("X") && twothree[1].text.Equals("X") && twothree[2].text.Equals("X"))
|
||||
{
|
||||
jatekosnyert = true;
|
||||
}
|
||||
}
|
||||
if (movement.jelenlegi_x == 3 && movement.jelenlegi_y == 1)
|
||||
{
|
||||
if (threeone[0].text.Equals("X") && threeone[1].text.Equals("X") && threeone[2].text.Equals("X"))
|
||||
{
|
||||
jatekosnyert = true;
|
||||
}
|
||||
}
|
||||
if (movement.jelenlegi_x == 3 && movement.jelenlegi_y == 2)
|
||||
{
|
||||
if (threetwo[0].text.Equals("X") && threetwo[1].text.Equals("X") && threetwo[2].text.Equals("X"))
|
||||
{
|
||||
jatekosnyert = true;
|
||||
}
|
||||
}
|
||||
if (movement.jelenlegi_x == 3 && movement.jelenlegi_y == 3)
|
||||
{
|
||||
if (threethree[0].text.Equals("X") && threethree[1].text.Equals("X") && threethree[2].text.Equals("X"))
|
||||
{
|
||||
jatekosnyert = true;
|
||||
}
|
||||
}
|
||||
if (movement.jelenlegi_x == 1 && movement.jelenlegi_y == 4)
|
||||
{
|
||||
if (onefour[0].text.Equals("X") && onefour[1].text.Equals("X") && onefour[2].text.Equals("X"))
|
||||
{
|
||||
jatekosnyert = true;
|
||||
}
|
||||
}
|
||||
if (movement.jelenlegi_x == 2 && movement.jelenlegi_y == 4)
|
||||
{
|
||||
if (twofour[0].text.Equals("X") && twofour[1].text.Equals("X") && twofour[2].text.Equals("X"))
|
||||
{
|
||||
jatekosnyert = true;
|
||||
}
|
||||
}
|
||||
if (movement.jelenlegi_x == 3 && movement.jelenlegi_y == 4)
|
||||
{
|
||||
if (threefour[0].text.Equals("X") && threefour[1].text.Equals("X") && threefour[2].text.Equals("X"))
|
||||
{
|
||||
jatekosnyert = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public void JatekosVesztett()
|
||||
{
|
||||
//ha kinyilik a forras de mar voltal ott ketszer
|
||||
if (source.isNyitva == true)
|
||||
{
|
||||
if (source.sor[0] == 1 && source.oszlop == 1)
|
||||
{
|
||||
if (movement.eromulepes2.activeSelf == true)
|
||||
{
|
||||
if (movement.jelenlegi_x == 1 && movement.jelenlegi_y == 1)
|
||||
{
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
jatekosvesztett = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (source.sor[0] == 2 && source.oszlop == 1)
|
||||
{
|
||||
if (movement.feketepiaclepes2.activeSelf == true)
|
||||
{
|
||||
if (movement.jelenlegi_x == 2 && movement.jelenlegi_y == 1)
|
||||
{
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
jatekosvesztett = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (source.sor[0] == 3 && source.oszlop == 1)
|
||||
{
|
||||
if (movement.metrolepes2.activeSelf == true)
|
||||
{
|
||||
if (movement.jelenlegi_x == 3 && movement.jelenlegi_y == 1)
|
||||
{
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
jatekosvesztett = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (source.sor[0] == 1 && source.oszlop == 2)
|
||||
{
|
||||
if (movement.szervereklepes2.activeSelf == true)
|
||||
{
|
||||
if (movement.jelenlegi_x == 1 && movement.jelenlegi_y == 2)
|
||||
{
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
jatekosvesztett = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (source.sor[0] == 2 && source.oszlop == 2)
|
||||
{
|
||||
if (movement.kingcasinolepes2.activeSelf == true)
|
||||
{
|
||||
if (movement.jelenlegi_x == 2 && movement.jelenlegi_y == 2)
|
||||
{
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
jatekosvesztett = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (source.sor[0] == 3 && source.oszlop == 2)
|
||||
{
|
||||
if (movement.feltoltolepes2.activeSelf == true)
|
||||
{
|
||||
if (movement.jelenlegi_x == 3 && movement.jelenlegi_y == 2)
|
||||
{
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
jatekosvesztett = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (source.sor[0] == 1 && source.oszlop == 3)
|
||||
{
|
||||
if (movement.kutatolaborlepes2.activeSelf == true)
|
||||
{
|
||||
if (movement.jelenlegi_x == 1 && movement.jelenlegi_y == 3)
|
||||
{
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
jatekosvesztett = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (source.sor[0] == 2 && source.oszlop == 3)
|
||||
{
|
||||
if (movement.kriptoklublepes2.activeSelf == true)
|
||||
{
|
||||
if (movement.jelenlegi_x == 2 && movement.jelenlegi_y == 3)
|
||||
{
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
jatekosvesztett = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (source.sor[0] == 3 && source.oszlop == 3)
|
||||
{
|
||||
if (movement.cyberplazalepes2.activeSelf == true)
|
||||
{
|
||||
if (movement.jelenlegi_x == 3 && movement.jelenlegi_y == 3)
|
||||
{
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
jatekosvesztett = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (source.sor[0] == 1 && source.oszlop == 4)
|
||||
{
|
||||
if (movement.hadiuzemlepes2.activeSelf == true)
|
||||
{
|
||||
if (movement.jelenlegi_x == 1 && movement.jelenlegi_y == 4)
|
||||
{
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
jatekosvesztett = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (source.sor[0] == 2 && source.oszlop == 4)
|
||||
{
|
||||
if (movement.konyvtarlepes2.activeSelf == true)
|
||||
{
|
||||
if (movement.jelenlegi_x == 2 && movement.jelenlegi_y == 4)
|
||||
{
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
jatekosvesztett = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (source.sor[0] == 3 && source.oszlop == 4)
|
||||
{
|
||||
if (movement.korhazlepes2.activeSelf == true)
|
||||
{
|
||||
if (movement.jelenlegi_x == 3 && movement.jelenlegi_y == 4)
|
||||
{
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
jatekosvesztett = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//ha elfogy a töltényed mielőtt végzel a source-nál lévő ügynökcsapatokkal
|
||||
|
||||
if (source.isNyitva == true && akciok.toltenyszamlalo >= 24)
|
||||
{
|
||||
if (source.sor[0] == 1 && source.oszlop == 1)
|
||||
{
|
||||
if (oneone[0].text.Equals("X") == false || oneone[1].text.Equals("X") == false || oneone[2].text.Equals("X") == false)
|
||||
{
|
||||
jatekosvesztett = true;
|
||||
}
|
||||
}
|
||||
if (source.sor[0] == 2 && source.oszlop == 1)
|
||||
{
|
||||
if (twoone[0].text.Equals("X") == false || twoone[1].text.Equals("X") == false || twoone[2].text.Equals("X") == false)
|
||||
{
|
||||
jatekosvesztett = true;
|
||||
}
|
||||
}
|
||||
if (source.sor[0] == 3 && source.oszlop == 1)
|
||||
{
|
||||
if (threeone[0].text.Equals("X") == false || threeone[1].text.Equals("X") == false || threeone[2].text.Equals("X") == false)
|
||||
{
|
||||
jatekosvesztett = true;
|
||||
}
|
||||
}
|
||||
if (source.sor[0] == 1 && source.oszlop == 2)
|
||||
{
|
||||
if (onetwo[0].text.Equals("X") == false || onetwo[1].text.Equals("X") == false || onetwo[2].text.Equals("X") == false)
|
||||
{
|
||||
jatekosvesztett = true;
|
||||
}
|
||||
}
|
||||
if (source.sor[0] == 2 && source.oszlop == 2)
|
||||
{
|
||||
if (twotwo[0].text.Equals("X") == false || twotwo[1].text.Equals("X") == false || twotwo[2].text.Equals("X") == false)
|
||||
{
|
||||
jatekosvesztett = true;
|
||||
}
|
||||
}
|
||||
if (source.sor[0] == 3 && source.oszlop == 2)
|
||||
{
|
||||
if (threetwo[0].text.Equals("X") == false || threetwo[1].text.Equals("X") == false || threetwo[2].text.Equals("X") == false)
|
||||
{
|
||||
jatekosvesztett = true;
|
||||
}
|
||||
}
|
||||
if (source.sor[0] == 1 && source.oszlop == 3)
|
||||
{
|
||||
if (onethree[0].text.Equals("X") == false || onethree[1].text.Equals("X") == false || onethree[2].text.Equals("X") == false)
|
||||
{
|
||||
jatekosvesztett = true;
|
||||
}
|
||||
}
|
||||
if (source.sor[0] == 2 && source.oszlop == 3)
|
||||
{
|
||||
if (twothree[0].text.Equals("X") == false || twothree[1].text.Equals("X") == false || twothree[2].text.Equals("X") == false)
|
||||
{
|
||||
jatekosvesztett = true;
|
||||
}
|
||||
}
|
||||
if (source.sor[0] == 3 && source.oszlop == 3)
|
||||
{
|
||||
if (threethree[0].text.Equals("X") == false || threethree[1].text.Equals("X") == false || threethree[2].text.Equals("X") == false)
|
||||
{
|
||||
jatekosvesztett = true;
|
||||
}
|
||||
}
|
||||
if (source.sor[0] == 1 && source.oszlop == 4)
|
||||
{
|
||||
if (onefour[0].text.Equals("X") == false || onefour[1].text.Equals("X") == false || onefour[2].text.Equals("X") == false)
|
||||
{
|
||||
jatekosvesztett = true;
|
||||
}
|
||||
}
|
||||
if (source.sor[0] == 2 && source.oszlop == 4)
|
||||
{
|
||||
if (twofour[0].text.Equals("X") == false || twofour[1].text.Equals("X") == false || twofour[2].text.Equals("X") == false)
|
||||
{
|
||||
jatekosvesztett = true;
|
||||
}
|
||||
}
|
||||
if (source.sor[0] == 3 && source.oszlop == 4)
|
||||
{
|
||||
if (threefour[0].text.Equals("X") == false || threefour[1].text.Equals("X") == false || threefour[2].text.Equals("X") == false)
|
||||
{
|
||||
jatekosvesztett = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
11
Assets/Scripts/jatekmanager.cs.meta
Normal file
11
Assets/Scripts/jatekmanager.cs.meta
Normal file
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 6423cb96f98604ea1be2455ae7cff97d
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,10 +1,10 @@
|
||||
{
|
||||
"dependencies": {
|
||||
"com.unity.collab-proxy": "1.17.6",
|
||||
"com.unity.collab-proxy": "1.17.7",
|
||||
"com.unity.feature.2d": "1.0.0",
|
||||
"com.unity.ide.visualstudio": "2.0.16",
|
||||
"com.unity.ide.vscode": "1.2.5",
|
||||
"com.unity.render-pipelines.universal": "12.1.7",
|
||||
"com.unity.render-pipelines.universal": "12.1.8",
|
||||
"com.unity.test-framework": "1.1.33",
|
||||
"com.unity.textmeshpro": "3.0.6",
|
||||
"com.unity.timeline": "1.6.4",
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"dependencies": {
|
||||
"com.unity.2d.animation": {
|
||||
"version": "7.0.8",
|
||||
"version": "7.0.9",
|
||||
"depth": 1,
|
||||
"source": "registry",
|
||||
"dependencies": {
|
||||
"com.unity.2d.common": "6.0.5",
|
||||
"com.unity.2d.common": "6.0.6",
|
||||
"com.unity.2d.sprite": "1.0.0",
|
||||
"com.unity.modules.animation": "1.0.0",
|
||||
"com.unity.modules.uielements": "1.0.0"
|
||||
@@ -13,7 +13,7 @@
|
||||
"url": "https://packages.unity.com"
|
||||
},
|
||||
"com.unity.2d.common": {
|
||||
"version": "6.0.5",
|
||||
"version": "6.0.6",
|
||||
"depth": 2,
|
||||
"source": "registry",
|
||||
"dependencies": {
|
||||
@@ -32,7 +32,7 @@
|
||||
"url": "https://packages.unity.com"
|
||||
},
|
||||
"com.unity.2d.pixel-perfect": {
|
||||
"version": "5.0.1",
|
||||
"version": "5.0.3",
|
||||
"depth": 1,
|
||||
"source": "registry",
|
||||
"dependencies": {},
|
||||
@@ -86,7 +86,7 @@
|
||||
"url": "https://packages.unity.com"
|
||||
},
|
||||
"com.unity.burst": {
|
||||
"version": "1.7.3",
|
||||
"version": "1.8.2",
|
||||
"depth": 1,
|
||||
"source": "registry",
|
||||
"dependencies": {
|
||||
@@ -95,7 +95,7 @@
|
||||
"url": "https://packages.unity.com"
|
||||
},
|
||||
"com.unity.collab-proxy": {
|
||||
"version": "1.17.6",
|
||||
"version": "1.17.7",
|
||||
"depth": 0,
|
||||
"source": "registry",
|
||||
"dependencies": {
|
||||
@@ -115,8 +115,8 @@
|
||||
"depth": 0,
|
||||
"source": "builtin",
|
||||
"dependencies": {
|
||||
"com.unity.2d.animation": "7.0.8",
|
||||
"com.unity.2d.pixel-perfect": "5.0.1",
|
||||
"com.unity.2d.animation": "7.0.9",
|
||||
"com.unity.2d.pixel-perfect": "5.0.3",
|
||||
"com.unity.2d.psdimporter": "6.0.6",
|
||||
"com.unity.2d.sprite": "1.0.0",
|
||||
"com.unity.2d.spriteshape": "7.0.6",
|
||||
@@ -155,7 +155,7 @@
|
||||
"url": "https://packages.unity.com"
|
||||
},
|
||||
"com.unity.render-pipelines.core": {
|
||||
"version": "12.1.7",
|
||||
"version": "12.1.8",
|
||||
"depth": 1,
|
||||
"source": "builtin",
|
||||
"dependencies": {
|
||||
@@ -165,14 +165,14 @@
|
||||
}
|
||||
},
|
||||
"com.unity.render-pipelines.universal": {
|
||||
"version": "12.1.7",
|
||||
"version": "12.1.8",
|
||||
"depth": 0,
|
||||
"source": "builtin",
|
||||
"dependencies": {
|
||||
"com.unity.mathematics": "1.2.1",
|
||||
"com.unity.burst": "1.7.3",
|
||||
"com.unity.render-pipelines.core": "12.1.7",
|
||||
"com.unity.shadergraph": "12.1.7"
|
||||
"com.unity.burst": "1.8.2",
|
||||
"com.unity.render-pipelines.core": "12.1.8",
|
||||
"com.unity.shadergraph": "12.1.8"
|
||||
}
|
||||
},
|
||||
"com.unity.searcher": {
|
||||
@@ -183,7 +183,7 @@
|
||||
"url": "https://packages.unity.com"
|
||||
},
|
||||
"com.unity.services.core": {
|
||||
"version": "1.4.3",
|
||||
"version": "1.6.0",
|
||||
"depth": 1,
|
||||
"source": "registry",
|
||||
"dependencies": {
|
||||
@@ -194,11 +194,11 @@
|
||||
"url": "https://packages.unity.com"
|
||||
},
|
||||
"com.unity.shadergraph": {
|
||||
"version": "12.1.7",
|
||||
"version": "12.1.8",
|
||||
"depth": 1,
|
||||
"source": "builtin",
|
||||
"dependencies": {
|
||||
"com.unity.render-pipelines.core": "12.1.7",
|
||||
"com.unity.render-pipelines.core": "12.1.8",
|
||||
"com.unity.searcher": "4.9.1"
|
||||
}
|
||||
},
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
m_EditorVersion: 2021.3.12f1
|
||||
m_EditorVersionWithRevision: 2021.3.12f1 (8af3c3e441b1)
|
||||
m_EditorVersion: 2021.3.16f1
|
||||
m_EditorVersionWithRevision: 2021.3.16f1 (4016570cf34f)
|
||||
|
||||
@@ -19,12 +19,12 @@ MonoBehaviour:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 30
|
||||
width: 1920
|
||||
height: 947
|
||||
width: 1470
|
||||
height: 771
|
||||
m_MinSize: {x: 300, y: 200}
|
||||
m_MaxSize: {x: 24288, y: 16192}
|
||||
vertical: 0
|
||||
controlID: 75
|
||||
controlID: 97
|
||||
--- !u!114 &2
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
@@ -41,14 +41,14 @@ MonoBehaviour:
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_TitleContent:
|
||||
m_Text: Game
|
||||
m_Image: {fileID: -6423792434712278376, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Image: {fileID: 4621777727084837110, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 306
|
||||
y: 73
|
||||
width: 1040
|
||||
height: 553
|
||||
x: 234.5
|
||||
y: 95
|
||||
width: 795.5
|
||||
height: 446.5
|
||||
m_ViewDataDictionary: {fileID: 0}
|
||||
m_OverlayCanvas:
|
||||
m_LastAppliedPresetName: Default
|
||||
@@ -59,7 +59,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: 795.5, y: 425.5}
|
||||
m_TextureFilterMode: 0
|
||||
m_TextureHideFlags: 61
|
||||
m_RenderIMGUI: 1
|
||||
@@ -74,10 +74,10 @@ MonoBehaviour:
|
||||
m_VRangeLocked: 0
|
||||
hZoomLockedByDefault: 0
|
||||
vZoomLockedByDefault: 0
|
||||
m_HBaseRangeMin: -520
|
||||
m_HBaseRangeMax: 520
|
||||
m_VBaseRangeMin: -266
|
||||
m_VBaseRangeMax: 266
|
||||
m_HBaseRangeMin: -198.875
|
||||
m_HBaseRangeMax: 198.875
|
||||
m_VBaseRangeMin: -106.375
|
||||
m_VBaseRangeMax: 106.375
|
||||
m_HAllowExceedBaseRangeMin: 1
|
||||
m_HAllowExceedBaseRangeMax: 1
|
||||
m_VAllowExceedBaseRangeMin: 1
|
||||
@@ -95,23 +95,23 @@ MonoBehaviour:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 21
|
||||
width: 1040
|
||||
height: 532
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Translation: {x: 520, y: 266}
|
||||
width: 795.5
|
||||
height: 425.5
|
||||
m_Scale: {x: 2, y: 2}
|
||||
m_Translation: {x: 397.75, y: 212.75}
|
||||
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: -198.875
|
||||
y: -106.375
|
||||
width: 397.75
|
||||
height: 212.75
|
||||
m_MinimalGUI: 1
|
||||
m_defaultScale: 1
|
||||
m_LastWindowPixelSize: {x: 1040, y: 553}
|
||||
m_defaultScale: 2
|
||||
m_LastWindowPixelSize: {x: 1591, y: 893}
|
||||
m_ClearInEditMode: 1
|
||||
m_NoCameraWarning: 1
|
||||
m_LowResolutionForAspectRatios: 01000000000000000000
|
||||
@@ -136,12 +136,12 @@ MonoBehaviour:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 1348
|
||||
height: 947
|
||||
width: 1032
|
||||
height: 771
|
||||
m_MinSize: {x: 200, y: 200}
|
||||
m_MaxSize: {x: 16192, y: 16192}
|
||||
vertical: 1
|
||||
controlID: 76
|
||||
controlID: 98
|
||||
--- !u!114 &4
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
@@ -161,12 +161,12 @@ MonoBehaviour:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 1348
|
||||
height: 574
|
||||
width: 1032
|
||||
height: 467.5
|
||||
m_MinSize: {x: 200, y: 100}
|
||||
m_MaxSize: {x: 16192, y: 8096}
|
||||
vertical: 0
|
||||
controlID: 51
|
||||
controlID: 99
|
||||
--- !u!114 &5
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
@@ -184,8 +184,8 @@ MonoBehaviour:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 306
|
||||
height: 574
|
||||
width: 234.5
|
||||
height: 467.5
|
||||
m_MinSize: {x: 201, y: 221}
|
||||
m_MaxSize: {x: 4001, y: 4021}
|
||||
m_ActualView: {fileID: 6}
|
||||
@@ -209,14 +209,14 @@ MonoBehaviour:
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_TitleContent:
|
||||
m_Text: Hierarchy
|
||||
m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Image: {fileID: -3734745235275155857, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 73
|
||||
width: 305
|
||||
height: 553
|
||||
y: 95
|
||||
width: 233.5
|
||||
height: 446.5
|
||||
m_ViewDataDictionary: {fileID: 0}
|
||||
m_OverlayCanvas:
|
||||
m_LastAppliedPresetName: Default
|
||||
@@ -226,7 +226,7 @@ MonoBehaviour:
|
||||
scrollPos: {x: 0, y: 0}
|
||||
m_SelectedIDs:
|
||||
m_LastClickedID: 0
|
||||
m_ExpandedIDs: 20fbffff
|
||||
m_ExpandedIDs: 28fbffff
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
@@ -265,10 +265,10 @@ MonoBehaviour:
|
||||
m_Children: []
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 306
|
||||
x: 234.5
|
||||
y: 0
|
||||
width: 1042
|
||||
height: 574
|
||||
width: 797.5
|
||||
height: 467.5
|
||||
m_MinSize: {x: 202, y: 221}
|
||||
m_MaxSize: {x: 4002, y: 4021}
|
||||
m_ActualView: {fileID: 2}
|
||||
@@ -293,14 +293,14 @@ MonoBehaviour:
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_TitleContent:
|
||||
m_Text: Scene
|
||||
m_Image: {fileID: 2593428753322112591, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Image: {fileID: 8634526014445323508, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 306
|
||||
y: 73
|
||||
width: 1040
|
||||
height: 553
|
||||
x: 234.5
|
||||
y: 95
|
||||
width: 795.5
|
||||
height: 446.5
|
||||
m_ViewDataDictionary: {fileID: 0}
|
||||
m_OverlayCanvas:
|
||||
m_LastAppliedPresetName: Default
|
||||
@@ -311,7 +311,7 @@ MonoBehaviour:
|
||||
collapsed: 0
|
||||
displayed: 1
|
||||
snapOffset: {x: 0, y: 0}
|
||||
snapOffsetDelta: {x: -101, y: -26}
|
||||
snapOffsetDelta: {x: -98, y: -26}
|
||||
snapCorner: 3
|
||||
id: Tool Settings
|
||||
index: 0
|
||||
@@ -653,9 +653,9 @@ MonoBehaviour:
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 574
|
||||
width: 1348
|
||||
height: 373
|
||||
y: 467.5
|
||||
width: 1032
|
||||
height: 303.5
|
||||
m_MinSize: {x: 231, y: 271}
|
||||
m_MaxSize: {x: 10001, y: 10021}
|
||||
m_ActualView: {fileID: 10}
|
||||
@@ -681,14 +681,14 @@ MonoBehaviour:
|
||||
m_MaxSize: {x: 10000, y: 10000}
|
||||
m_TitleContent:
|
||||
m_Text: Project
|
||||
m_Image: {fileID: -5467254957812901981, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Image: {fileID: -5179483145760003458, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 647
|
||||
width: 1347
|
||||
height: 352
|
||||
y: 562.5
|
||||
width: 1031
|
||||
height: 282.5
|
||||
m_ViewDataDictionary: {fileID: 0}
|
||||
m_OverlayCanvas:
|
||||
m_LastAppliedPresetName: Default
|
||||
@@ -714,14 +714,14 @@ MonoBehaviour:
|
||||
m_LastFolders:
|
||||
- Assets/Scripts
|
||||
m_LastFoldersGridSize: 71
|
||||
m_LastProjectPath: C:\dev\find the source\projekt\FindTheSource
|
||||
m_LastProjectPath: /Users/bance/Documents/GitHub/findthesource
|
||||
m_LockTracker:
|
||||
m_IsLocked: 0
|
||||
m_FolderTreeState:
|
||||
scrollPos: {x: 0, y: 0}
|
||||
m_SelectedIDs: 84770000
|
||||
m_LastClickedID: 30596
|
||||
m_ExpandedIDs: 000000005c7700005e77000060770000
|
||||
m_SelectedIDs: 8a770000
|
||||
m_LastClickedID: 30602
|
||||
m_ExpandedIDs: 000000006477000000ca9a3bffffff7f
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
@@ -749,7 +749,7 @@ MonoBehaviour:
|
||||
scrollPos: {x: 0, y: 0}
|
||||
m_SelectedIDs:
|
||||
m_LastClickedID: 0
|
||||
m_ExpandedIDs: 000000005c7700005e77000060770000
|
||||
m_ExpandedIDs: 0000000064770000
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
@@ -774,9 +774,9 @@ MonoBehaviour:
|
||||
m_Icon: {fileID: 0}
|
||||
m_ResourceFile:
|
||||
m_ListAreaState:
|
||||
m_SelectedInstanceIDs:
|
||||
m_LastClickedInstanceID: 0
|
||||
m_HadKeyboardFocusLastEvent: 0
|
||||
m_SelectedInstanceIDs: e61b0000
|
||||
m_LastClickedInstanceID: 7142
|
||||
m_HadKeyboardFocusLastEvent: 1
|
||||
m_ExpandedInstanceIDs: c62300000000000034ecffff
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
@@ -793,7 +793,7 @@ MonoBehaviour:
|
||||
m_IsRenaming: 0
|
||||
m_OriginalEventType: 11
|
||||
m_IsRenamingFilename: 1
|
||||
m_ClientGUIView: {fileID: 9}
|
||||
m_ClientGUIView: {fileID: 0}
|
||||
m_CreateAssetUtility:
|
||||
m_EndAction: {fileID: 0}
|
||||
m_InstanceID: 0
|
||||
@@ -821,7 +821,7 @@ MonoBehaviour:
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_TitleContent:
|
||||
m_Text: Audio Mixer
|
||||
m_Image: {fileID: 2344599766593239149, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Image: {fileID: -3283902137440876849, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
@@ -997,7 +997,7 @@ MonoBehaviour:
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_TitleContent:
|
||||
m_Text: Console
|
||||
m_Image: {fileID: -4327648978806127646, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Image: {fileID: -4950941429401207979, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
@@ -1024,12 +1024,12 @@ MonoBehaviour:
|
||||
m_Children: []
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 1348
|
||||
x: 1032
|
||||
y: 0
|
||||
width: 572
|
||||
height: 947
|
||||
m_MinSize: {x: 276, y: 71}
|
||||
m_MaxSize: {x: 4001, y: 4021}
|
||||
width: 438
|
||||
height: 771
|
||||
m_MinSize: {x: 275, y: 50}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_ActualView: {fileID: 14}
|
||||
m_Panes:
|
||||
- {fileID: 14}
|
||||
@@ -1051,14 +1051,14 @@ MonoBehaviour:
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_TitleContent:
|
||||
m_Text: Inspector
|
||||
m_Image: {fileID: -2667387946076563598, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Image: {fileID: -440750813802333266, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 1348
|
||||
y: 73
|
||||
width: 571
|
||||
height: 926
|
||||
x: 1032
|
||||
y: 95
|
||||
width: 437
|
||||
height: 750
|
||||
m_ViewDataDictionary: {fileID: 0}
|
||||
m_OverlayCanvas:
|
||||
m_LastAppliedPresetName: Default
|
||||
@@ -1069,7 +1069,7 @@ MonoBehaviour:
|
||||
m_CachedPref: 160
|
||||
m_ControlHash: -371814159
|
||||
m_PrefName: Preview_InspectorPreview
|
||||
m_LastInspectedObjectInstanceID: -1
|
||||
m_LastInspectedObjectInstanceID: 7142
|
||||
m_LastVerticalScrollValue: 0
|
||||
m_GlobalObjectId:
|
||||
m_InspectorMode: 0
|
||||
|
||||
@@ -15,11 +15,11 @@ MonoBehaviour:
|
||||
m_PixelRect:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 43
|
||||
width: 1920
|
||||
height: 997
|
||||
y: 65
|
||||
width: 1470
|
||||
height: 821
|
||||
m_ShowMode: 4
|
||||
m_Title: Hierarchy
|
||||
m_Title: Scene
|
||||
m_RootView: {fileID: 2}
|
||||
m_MinSize: {x: 875, y: 300}
|
||||
m_MaxSize: {x: 10000, y: 10000}
|
||||
@@ -44,8 +44,8 @@ MonoBehaviour:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 1920
|
||||
height: 997
|
||||
width: 1470
|
||||
height: 821
|
||||
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: 1470
|
||||
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: 801
|
||||
width: 1470
|
||||
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: 1470
|
||||
height: 771
|
||||
m_MinSize: {x: 300, y: 200}
|
||||
m_MaxSize: {x: 24288, y: 16192}
|
||||
vertical: 0
|
||||
controlID: 509
|
||||
controlID: 121
|
||||
--- !u!114 &6
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
@@ -139,12 +139,12 @@ MonoBehaviour:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 1348
|
||||
height: 947
|
||||
width: 1032
|
||||
height: 771
|
||||
m_MinSize: {x: 200, y: 200}
|
||||
m_MaxSize: {x: 16192, y: 16192}
|
||||
vertical: 1
|
||||
controlID: 514
|
||||
controlID: 72
|
||||
--- !u!114 &7
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
@@ -164,12 +164,12 @@ MonoBehaviour:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 1348
|
||||
height: 574
|
||||
width: 1032
|
||||
height: 467.5
|
||||
m_MinSize: {x: 200, y: 100}
|
||||
m_MaxSize: {x: 16192, y: 8096}
|
||||
vertical: 0
|
||||
controlID: 515
|
||||
controlID: 44
|
||||
--- !u!114 &8
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
@@ -187,10 +187,10 @@ MonoBehaviour:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 0
|
||||
width: 306
|
||||
height: 574
|
||||
m_MinSize: {x: 201, y: 221}
|
||||
m_MaxSize: {x: 4001, y: 4021}
|
||||
width: 234.5
|
||||
height: 467.5
|
||||
m_MinSize: {x: 200, y: 200}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_ActualView: {fileID: 13}
|
||||
m_Panes:
|
||||
- {fileID: 13}
|
||||
@@ -206,23 +206,23 @@ MonoBehaviour:
|
||||
m_Enabled: 1
|
||||
m_EditorHideFlags: 1
|
||||
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
||||
m_Name: GameView
|
||||
m_Name: SceneView
|
||||
m_EditorClassIdentifier:
|
||||
m_Children: []
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 306
|
||||
x: 234.5
|
||||
y: 0
|
||||
width: 1042
|
||||
height: 574
|
||||
width: 797.5
|
||||
height: 467.5
|
||||
m_MinSize: {x: 202, y: 221}
|
||||
m_MaxSize: {x: 4002, y: 4021}
|
||||
m_ActualView: {fileID: 12}
|
||||
m_ActualView: {fileID: 14}
|
||||
m_Panes:
|
||||
- {fileID: 14}
|
||||
- {fileID: 12}
|
||||
m_Selected: 1
|
||||
m_LastSelected: 0
|
||||
m_Selected: 0
|
||||
m_LastSelected: 1
|
||||
--- !u!114 &10
|
||||
MonoBehaviour:
|
||||
m_ObjectHideFlags: 52
|
||||
@@ -239,9 +239,9 @@ MonoBehaviour:
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 574
|
||||
width: 1348
|
||||
height: 373
|
||||
y: 467.5
|
||||
width: 1032
|
||||
height: 303.5
|
||||
m_MinSize: {x: 231, y: 271}
|
||||
m_MaxSize: {x: 10001, y: 10021}
|
||||
m_ActualView: {fileID: 15}
|
||||
@@ -266,12 +266,12 @@ MonoBehaviour:
|
||||
m_Children: []
|
||||
m_Position:
|
||||
serializedVersion: 2
|
||||
x: 1348
|
||||
x: 1032
|
||||
y: 0
|
||||
width: 572
|
||||
height: 947
|
||||
m_MinSize: {x: 276, y: 71}
|
||||
m_MaxSize: {x: 4001, y: 4021}
|
||||
width: 438
|
||||
height: 771
|
||||
m_MinSize: {x: 275, y: 50}
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_ActualView: {fileID: 18}
|
||||
m_Panes:
|
||||
- {fileID: 18}
|
||||
@@ -293,14 +293,14 @@ MonoBehaviour:
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_TitleContent:
|
||||
m_Text: Game
|
||||
m_Image: {fileID: -6423792434712278376, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Image: {fileID: 4621777727084837110, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 306
|
||||
y: 73
|
||||
width: 1040
|
||||
height: 553
|
||||
x: 234.5
|
||||
y: 95
|
||||
width: 795.5
|
||||
height: 446.5
|
||||
m_ViewDataDictionary: {fileID: 0}
|
||||
m_OverlayCanvas:
|
||||
m_LastAppliedPresetName: Default
|
||||
@@ -311,7 +311,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: 795.5, y: 425.5}
|
||||
m_TextureFilterMode: 0
|
||||
m_TextureHideFlags: 61
|
||||
m_RenderIMGUI: 1
|
||||
@@ -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: -198.875
|
||||
m_HBaseRangeMax: 198.875
|
||||
m_VBaseRangeMin: -106.375
|
||||
m_VBaseRangeMax: 106.375
|
||||
m_HAllowExceedBaseRangeMin: 1
|
||||
m_HAllowExceedBaseRangeMax: 1
|
||||
m_VAllowExceedBaseRangeMin: 1
|
||||
@@ -347,23 +347,23 @@ MonoBehaviour:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 21
|
||||
width: 1040
|
||||
height: 532
|
||||
m_Scale: {x: 1, y: 1}
|
||||
m_Translation: {x: 520, y: 266}
|
||||
width: 795.5
|
||||
height: 425.5
|
||||
m_Scale: {x: 2, y: 2}
|
||||
m_Translation: {x: 397.75, y: 212.75}
|
||||
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: -198.875
|
||||
y: -106.375
|
||||
width: 397.75
|
||||
height: 212.75
|
||||
m_MinimalGUI: 1
|
||||
m_defaultScale: 1
|
||||
m_LastWindowPixelSize: {x: 1040, y: 553}
|
||||
m_defaultScale: 2
|
||||
m_LastWindowPixelSize: {x: 1591, y: 893}
|
||||
m_ClearInEditMode: 1
|
||||
m_NoCameraWarning: 1
|
||||
m_LowResolutionForAspectRatios: 01000000000000000000
|
||||
@@ -385,14 +385,14 @@ MonoBehaviour:
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_TitleContent:
|
||||
m_Text: Hierarchy
|
||||
m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Image: {fileID: -3734745235275155857, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 73
|
||||
width: 305
|
||||
height: 553
|
||||
y: 95
|
||||
width: 233.5
|
||||
height: 446.5
|
||||
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: 20fbffff
|
||||
m_ExpandedIDs: 28fbffff
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
@@ -442,14 +442,14 @@ MonoBehaviour:
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_TitleContent:
|
||||
m_Text: Scene
|
||||
m_Image: {fileID: 2593428753322112591, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Image: {fileID: 8634526014445323508, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 306
|
||||
y: 73
|
||||
width: 1040
|
||||
height: 553
|
||||
x: 234.5
|
||||
y: 95
|
||||
width: 795.5
|
||||
height: 446.5
|
||||
m_ViewDataDictionary: {fileID: 0}
|
||||
m_OverlayCanvas:
|
||||
m_LastAppliedPresetName: Default
|
||||
@@ -460,7 +460,7 @@ MonoBehaviour:
|
||||
collapsed: 0
|
||||
displayed: 1
|
||||
snapOffset: {x: 0, y: 0}
|
||||
snapOffsetDelta: {x: -101, y: -26}
|
||||
snapOffsetDelta: {x: -98, y: -26}
|
||||
snapCorner: 3
|
||||
id: Tool Settings
|
||||
index: 0
|
||||
@@ -706,9 +706,9 @@ MonoBehaviour:
|
||||
m_PlayAudio: 0
|
||||
m_AudioPlay: 0
|
||||
m_Position:
|
||||
m_Target: {x: -4.5465274, y: -1.4268839, z: -0.07916484}
|
||||
m_Target: {x: -3.2998517, y: -0.07328266, z: -0.28951076}
|
||||
speed: 2
|
||||
m_Value: {x: -4.5465274, y: -1.4268839, z: -0.07916484}
|
||||
m_Value: {x: -3.2998517, y: -0.07328266, z: -0.28951076}
|
||||
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: 5.3934045
|
||||
speed: 2
|
||||
m_Value: 10.31249
|
||||
m_Value: 5.3934045
|
||||
m_Ortho:
|
||||
m_Target: 1
|
||||
speed: 2
|
||||
@@ -802,14 +802,14 @@ MonoBehaviour:
|
||||
m_MaxSize: {x: 10000, y: 10000}
|
||||
m_TitleContent:
|
||||
m_Text: Project
|
||||
m_Image: {fileID: -5467254957812901981, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Image: {fileID: -5179483145760003458, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 647
|
||||
width: 1347
|
||||
height: 352
|
||||
y: 562.5
|
||||
width: 1031
|
||||
height: 282.5
|
||||
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: /Users/bance/Documents/GitHub/findthesource
|
||||
m_LockTracker:
|
||||
m_IsLocked: 0
|
||||
m_FolderTreeState:
|
||||
scrollPos: {x: 0, y: 0}
|
||||
m_SelectedIDs: 84770000
|
||||
m_LastClickedID: 30596
|
||||
m_ExpandedIDs: 000000005c7700005e77000060770000
|
||||
m_SelectedIDs: 52770000
|
||||
m_LastClickedID: 30546
|
||||
m_ExpandedIDs: 000000002c77000000ca9a3bffffff7f
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
@@ -870,7 +870,7 @@ MonoBehaviour:
|
||||
scrollPos: {x: 0, y: 0}
|
||||
m_SelectedIDs:
|
||||
m_LastClickedID: 0
|
||||
m_ExpandedIDs: 000000005c7700005e77000060770000
|
||||
m_ExpandedIDs: 000000002c770000
|
||||
m_RenameOverlay:
|
||||
m_UserAcceptedRename: 0
|
||||
m_Name:
|
||||
@@ -914,7 +914,7 @@ MonoBehaviour:
|
||||
m_IsRenaming: 0
|
||||
m_OriginalEventType: 11
|
||||
m_IsRenamingFilename: 1
|
||||
m_ClientGUIView: {fileID: 10}
|
||||
m_ClientGUIView: {fileID: 0}
|
||||
m_CreateAssetUtility:
|
||||
m_EndAction: {fileID: 0}
|
||||
m_InstanceID: 0
|
||||
@@ -942,7 +942,7 @@ MonoBehaviour:
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_TitleContent:
|
||||
m_Text: Audio Mixer
|
||||
m_Image: {fileID: 2344599766593239149, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Image: {fileID: -3283902137440876849, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
@@ -1118,14 +1118,14 @@ MonoBehaviour:
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_TitleContent:
|
||||
m_Text: Console
|
||||
m_Image: {fileID: -4327648978806127646, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Image: {fileID: -4950941429401207979, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 0
|
||||
y: 647
|
||||
width: 1347
|
||||
height: 352
|
||||
y: 562.5
|
||||
width: 1031
|
||||
height: 282.5
|
||||
m_ViewDataDictionary: {fileID: 0}
|
||||
m_OverlayCanvas:
|
||||
m_LastAppliedPresetName: Default
|
||||
@@ -1146,14 +1146,14 @@ MonoBehaviour:
|
||||
m_MaxSize: {x: 4000, y: 4000}
|
||||
m_TitleContent:
|
||||
m_Text: Inspector
|
||||
m_Image: {fileID: -2667387946076563598, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Image: {fileID: -440750813802333266, guid: 0000000000000000d000000000000000, type: 0}
|
||||
m_Tooltip:
|
||||
m_Pos:
|
||||
serializedVersion: 2
|
||||
x: 1348
|
||||
y: 73
|
||||
width: 571
|
||||
height: 926
|
||||
x: 1032
|
||||
y: 95
|
||||
width: 437
|
||||
height: 750
|
||||
m_ViewDataDictionary: {fileID: 0}
|
||||
m_OverlayCanvas:
|
||||
m_LastAppliedPresetName: Default
|
||||
|
||||
Reference in New Issue
Block a user