This commit is contained in:
bance
2023-01-24 18:41:07 +01:00
14 changed files with 4277 additions and 1009 deletions

55
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,55 @@
{
"files.exclude":
{
"**/.DS_Store":true,
"**/.git":true,
"**/.gitmodules":true,
"**/*.booproj":true,
"**/*.pidb":true,
"**/*.suo":true,
"**/*.user":true,
"**/*.userprefs":true,
"**/*.unityproj":true,
"**/*.dll":true,
"**/*.exe":true,
"**/*.pdf":true,
"**/*.mid":true,
"**/*.midi":true,
"**/*.wav":true,
"**/*.gif":true,
"**/*.ico":true,
"**/*.jpg":true,
"**/*.jpeg":true,
"**/*.png":true,
"**/*.psd":true,
"**/*.tga":true,
"**/*.tif":true,
"**/*.tiff":true,
"**/*.3ds":true,
"**/*.3DS":true,
"**/*.fbx":true,
"**/*.FBX":true,
"**/*.lxo":true,
"**/*.LXO":true,
"**/*.ma":true,
"**/*.MA":true,
"**/*.obj":true,
"**/*.OBJ":true,
"**/*.asset":true,
"**/*.cubemap":true,
"**/*.flare":true,
"**/*.mat":true,
"**/*.meta":true,
"**/*.prefab":true,
"**/*.unity":true,
"build/":true,
"Build/":true,
"Library/":true,
"library/":true,
"obj/":true,
"Obj/":true,
"ProjectSettings/":true,
"temp/":true,
"Temp/":true
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -79,11 +79,11 @@ public class Akciok : MonoBehaviour
}
}
public void Loves(int elhasznalt_toltenyek) {
public bool Loves(int elhasznalt_toltenyek) {
if (felhasznalt_tolteny < betarazott_tolteny) {
if (felhasznalt_tolteny + elhasznalt_toltenyek > betarazott_tolteny) {
Debug.Log("Nincs eleg tolteny betarazva, tul sok lenne egyszerre felhasznalva!");
return;
return false;
} else {
felhasznalt_tolteny += elhasznalt_toltenyek;
for (int i = 0; i < felhasznalt_tolteny; i++) {
@@ -91,8 +91,10 @@ public class Akciok : MonoBehaviour
}
betarazott_tolteny -= elhasznalt_toltenyek;
}
return true;
} else {
Debug.Log("Nincs eleg tolteny");
return false;
}
}

View File

@@ -9,6 +9,7 @@ public class Targyak : MonoBehaviour
private Akciopont akciopont;
private movement movement;
private Energia energia;
private Ugynok ugynok;
public int targy_szamlalo = 0;
public int adrenalinloket = 0;
@@ -17,6 +18,8 @@ public class Targyak : MonoBehaviour
public int droidgepagyu = 0;
public int matavtaviranyito = 0;
public int fustgranat = 0;
public bool lathatatlanOltozetAktivalva = false;
private int randomszam;
private void Start() {
akciok = FindObjectOfType<Akciok>();
@@ -24,73 +27,84 @@ public class Targyak : MonoBehaviour
akciopont = FindObjectOfType<Akciopont>();
movement = FindObjectOfType<movement>();
energia = FindObjectOfType<Energia>();
ugynok = FindObjectOfType<Ugynok>();
}
public void RandomTargy()
{
int randomszam = UnityEngine.Random.Range(0, 5);
string[] elerheto_targyak = {"Adrenalinloket", "Hacker csatlakozo", "Lathatatlan oltozet", "Droid agyu", "Matav taviranyito", "Alomhozo fustgranat"} ;
do{
randomszam = UnityEngine.Random.Range(0, elerheto_targyak.Length);
}while(!elerheto_targyak[randomszam].Equals(""));
elerheto_targyak[randomszam] = "";
if (randomszam == 0)
{
adrenalinloket++;
Debug.Log("Kaptál egy AdrenalinLöketet!");
Debug.Log("Kaptal egy AdrenalinLoketet!");
}
else if (randomszam == 1)
{
hackercsatlakozo++;
Debug.Log("Kaptál egy Hacker Csatlakozót!");
Debug.Log("Kaptal egy Hacker Csatlakozot!");
}
else if (randomszam == 2)
{
lathatatlanoltozet++;
Debug.Log("Kaptál egy Láthatatlan Öltözetet!");
Debug.Log("Kaptal egy Lathatatlan oltozetet!");
}
else if (randomszam == 3)
{
droidgepagyu++;
Debug.Log("Kaptál egy Droid-X2 Gépágyút!");
Debug.Log("Kaptal egy Droid-X2 Gepagyut!");
}
else if (randomszam == 4)
{
matavtaviranyito++;
Debug.Log("Kaptál egy Mata'v Távirányítót!");
Debug.Log("Kaptal egy Matav Taviranyitot!");
}
else if (randomszam == 5)
{
fustgranat++;
Debug.Log("Kaptál egy Álomhozó Füstgránátot!");
Debug.Log("Kaptal egy Alomhozo Fustgranatot!");
}
}
public void AdrenalinLoket() {
targy_szamlalo++;
}
public void HackerCsatlakozo() { //Hogyan kell aktivalni?
public void HackerCsatlakozo() { //kesz
//+2 tolteny
akciok.Betarazas(2);
//+1 elet
elet.Eletplusz();
//+1 akcio
akciopont.akciopont++;
targy_szamlalo++;
}
public void LathatatlanOltozek() {
movement.mozgasHelyre(2, 2); //megadni inkabb a hely nevet ahova menni akar? | input field es nev megadas
targy_szamlalo++;
public void LathatatlanOltozek() { //kesz
//movement.mozgasHelyre(2, 2); //megadni inkabb a hely nevet ahova menni akar? | input field es nev megadas
lathatatlanOltozetAktivalva = true;
}
public void DroidGepagyu() {
targy_szamlalo++;
public void DroidGepagyu() { //kesz
//ugynok cucc
ugynok.canKill = true; //barhol meg tud olni ha kattint
}
public void MatavTaviranyito() {
targy_szamlalo++;
}
public void FustGranat() {
energia.granatAktivalva = true;
targy_szamlalo++;
}
}

View File

@@ -6,152 +6,731 @@ using TMPro;
public class Ugynok : MonoBehaviour
{
public TMP_Text[] oneone;
public BoxCollider2D[] oneoneCollider;
public TMP_Text[] twoone;
public BoxCollider2D[] twooneCollider;
public TMP_Text[] threeone;
public BoxCollider2D[] threeoneCollider;
public TMP_Text[] onetwo;
public BoxCollider2D[] onetwoCollider;
public TMP_Text[] twotwo;
public BoxCollider2D[] twotwoCollider;
public TMP_Text[] threetwo;
public BoxCollider2D[] threetwoCollider;
public TMP_Text[] onethree;
public BoxCollider2D[] onethreeCollider;
public TMP_Text[] twothree;
public BoxCollider2D[] twothreeCollider;
public TMP_Text[] threethree;
public BoxCollider2D[] threethreeCollider;
public TMP_Text[] onefour;
public BoxCollider2D[] onefourCollider;
public TMP_Text[] twofour;
public BoxCollider2D[] twofourCollider;
public TMP_Text[] threefour;
public BoxCollider2D[] threefourCollider;
private void Start() {
foreach(var item in oneone) {
item.text = "";
public bool canKill = false;
public bool canShoot = false; //harchoz bool
public void setCanKillTrue()
{
canKill = true;
}
public Camera maincamera;
private void Start()
{
for (int i = 0; i < oneone.Length; i++)
{
oneone[i].text = "";
}
foreach (var item in twoone) {
item.text = "";
for (int i = 0; i < onetwo.Length; i++)
{
onetwo[i].text = "";
}
foreach (var item in threeone) {
item.text = "";
for (int i = 0; i < onethree.Length; i++)
{
onethree[i].text = "";
}
foreach (var item in onetwo) {
item.text = "";
for (int i = 0; i < onefour.Length; i++)
{
onefour[i].text = "";
}
foreach (var item in twotwo) {
item.text = "";
for (int i = 0; i < twoone.Length; i++)
{
twoone[i].text = "";
}
foreach (var item in threetwo) {
item.text = "";
for (int i = 0; i < twotwo.Length; i++)
{
twotwo[i].text = "";
}
foreach (var item in onethree) {
item.text = "";
for (int i = 0; i < twothree.Length; i++)
{
twothree[i].text = "";
}
foreach (var item in twothree) {
item.text = "";
for (int i = 0; i < twofour.Length; i++)
{
twofour[i].text = "";
}
foreach (var item in threethree) {
item.text = "";
for (int i = 0; i < threeone.Length; i++)
{
threeone[i].text = "";
}
foreach (var item in onefour) {
item.text = "";
for (int i = 0; i < threetwo.Length; i++)
{
threetwo[i].text = "";
}
foreach (var item in twofour) {
item.text = "";
for (int i = 0; i < threethree.Length; i++)
{
threethree[i].text = "";
}
foreach (var item in threefour) {
item.text = "";
for (int i = 0; i < threefour.Length; i++)
{
threefour[i].text = "";
}
}
private void Update()
{
if(canShoot){
if(oneone[0].text.Equals("")){
}
}
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)))
{
if (!oneone[0].text.Equals(""))
{
oneone[0].text = "X";
canKill = false;
}
else
{
Debug.Log("itt nincs ugynok csapat!!!");
}
}
else if (Input.GetKeyDown(KeyCode.Mouse0) && oneoneCollider[1].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition)))
{
if (!oneone[1].text.Equals(""))
{
oneone[1].text = "X";
canKill = false;
}
else
{
Debug.Log("itt nincs ugynok csapat!!!");
}
}
else if (Input.GetKeyDown(KeyCode.Mouse0) && oneoneCollider[2].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition)))
{
if (!oneone[2].text.Equals(""))
{
oneone[2].text = "X";
canKill = false;
}
else
{
Debug.Log("itt nincs ugynok csapat!!!");
}
}
//onetwo
if (Input.GetKeyDown(KeyCode.Mouse0) && onetwoCollider[0].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition)))
{
if (!onetwo[0].text.Equals(""))
{
onetwo[0].text = "X";
canKill = false;
}
else
{
Debug.Log("itt nincs ugynok csapat!!!");
}
}
else if (Input.GetKeyDown(KeyCode.Mouse0) && onetwoCollider[1].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition)))
{
if (!onetwo[1].text.Equals(""))
{
onetwo[1].text = "X";
canKill = false;
}
else
{
Debug.Log("itt nincs ugynok csapat!!!");
}
}
else if (Input.GetKeyDown(KeyCode.Mouse0) && onetwoCollider[2].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition)))
{
if (!onetwo[2].text.Equals(""))
{
onetwo[2].text = "X";
canKill = false;
}
else
{
Debug.Log("itt nincs ugynok csapat!!!");
}
}
//onethree
if (Input.GetKeyDown(KeyCode.Mouse0) && onethreeCollider[0].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition)))
{
if (!onethree[0].text.Equals(""))
{
onethree[0].text = "X";
canKill = false;
}
else
{
Debug.Log("itt nincs ugynok csapat!!!");
}
}
else if (Input.GetKeyDown(KeyCode.Mouse0) && onethreeCollider[1].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition)))
{
if (!onethree[1].text.Equals(""))
{
onethree[1].text = "X";
canKill = false;
}
else
{
Debug.Log("itt nincs ugynok csapat!!!");
}
}
else if (Input.GetKeyDown(KeyCode.Mouse0) && onethreeCollider[2].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition)))
{
if (!onethree[2].text.Equals(""))
{
onethree[2].text = "X";
canKill = false;
}
else
{
Debug.Log("itt nincs ugynok csapat!!!");
}
}
//onefour
if (Input.GetKeyDown(KeyCode.Mouse0) && onefourCollider[0].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition)))
{
if (!onefour[0].text.Equals(""))
{
onefour[0].text = "X";
canKill = false;
}
else
{
Debug.Log("itt nincs ugynok csapat!!!");
}
}
else if (Input.GetKeyDown(KeyCode.Mouse0) && onefourCollider[1].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition)))
{
if (!onefour[1].text.Equals(""))
{
onefour[1].text = "X";
canKill = false;
}
else
{
Debug.Log("itt nincs ugynok csapat!!!");
}
}
else if (Input.GetKeyDown(KeyCode.Mouse0) && onefourCollider[2].OverlapPoint(maincamera.ScreenToWorldPoint(Input.mousePosition)))
{
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!!!");
}
}
}
}
public void UgynokSorsolas(int x, int y) {
if (x == 1 && y == 1) {
if (oneone[0].text.Equals("")) {
public void UgynokSorsolas(int x, int y)
{
if (x == 1 && y == 1)
{
if (oneone[0].text.Equals(""))
{
oneone[0].text = UnityEngine.Random.Range(1, 7).ToString();
}else if (oneone[1].text.Equals("")) {
}
else if (oneone[1].text.Equals(""))
{
oneone[1].text = UnityEngine.Random.Range(1, 7).ToString();
}else if (oneone[2].text.Equals("")) {
}
else if (oneone[2].text.Equals(""))
{
oneone[2].text = UnityEngine.Random.Range(1, 7).ToString();
}
} else if (x == 1 && y == 2) {
if (onetwo[0].text.Equals("")) {
}
else if (x == 1 && y == 2)
{
if (onetwo[0].text.Equals(""))
{
onetwo[0].text = UnityEngine.Random.Range(1, 7).ToString();
} else if (onetwo[1].text.Equals("")) {
}
else if (onetwo[1].text.Equals(""))
{
onetwo[1].text = UnityEngine.Random.Range(1, 7).ToString();
} else if (onetwo[2].text.Equals("")) {
}
else if (onetwo[2].text.Equals(""))
{
onetwo[2].text = UnityEngine.Random.Range(1, 7).ToString();
}
} else if (x == 1 && y == 3) {
if (onethree[0].text.Equals("")) {
}
else if (x == 1 && y == 3)
{
if (onethree[0].text.Equals(""))
{
onethree[0].text = UnityEngine.Random.Range(1, 7).ToString();
} else if (onethree[1].text.Equals("")) {
}
else if (onethree[1].text.Equals(""))
{
onethree[1].text = UnityEngine.Random.Range(1, 7).ToString();
} else if (onethree[2].text.Equals("")) {
}
else if (onethree[2].text.Equals(""))
{
onethree[2].text = UnityEngine.Random.Range(1, 7).ToString();
}
} else if (x == 1 && y == 4) {
if (onefour[0].text.Equals("")) {
}
else if (x == 1 && y == 4)
{
if (onefour[0].text.Equals(""))
{
onefour[0].text = UnityEngine.Random.Range(1, 7).ToString();
} else if (onefour[1].text.Equals("")) {
}
else if (onefour[1].text.Equals(""))
{
onefour[1].text = UnityEngine.Random.Range(1, 7).ToString();
} else if (onefour[2].text.Equals("")) {
}
else if (onefour[2].text.Equals(""))
{
onefour[2].text = UnityEngine.Random.Range(1, 7).ToString();
}
} else if (x == 2 && y == 1) {
if (twoone[0].text.Equals("")) {
}
else if (x == 2 && y == 1)
{
if (twoone[0].text.Equals(""))
{
twoone[0].text = UnityEngine.Random.Range(1, 7).ToString();
} else if (twoone[1].text.Equals("")) {
}
else if (twoone[1].text.Equals(""))
{
twoone[1].text = UnityEngine.Random.Range(1, 7).ToString();
} else if (twoone[2].text.Equals("")) {
}
else if (twoone[2].text.Equals(""))
{
twoone[2].text = UnityEngine.Random.Range(1, 7).ToString();
}
} else if (x == 2 && y == 2) {
if (twotwo[0].text.Equals("")) {
}
else if (x == 2 && y == 2)
{
if (twotwo[0].text.Equals(""))
{
twotwo[0].text = UnityEngine.Random.Range(1, 7).ToString();
} else if (twotwo[1].text.Equals("")) {
}
else if (twotwo[1].text.Equals(""))
{
twotwo[1].text = UnityEngine.Random.Range(1, 7).ToString();
} else if (twotwo[2].text.Equals("")) {
}
else if (twotwo[2].text.Equals(""))
{
twotwo[2].text = UnityEngine.Random.Range(1, 7).ToString();
}
} else if (x == 2 && y == 3) {
if (twothree[0].text.Equals("")) {
}
else if (x == 2 && y == 3)
{
if (twothree[0].text.Equals(""))
{
twothree[0].text = UnityEngine.Random.Range(1, 7).ToString();
} else if (twothree[1].text.Equals("")) {
}
else if (twothree[1].text.Equals(""))
{
twothree[1].text = UnityEngine.Random.Range(1, 7).ToString();
} else if (twothree[2].text.Equals("")) {
}
else if (twothree[2].text.Equals(""))
{
twothree[2].text = UnityEngine.Random.Range(1, 7).ToString();
}
} else if (x == 2 && y == 4) {
if (twofour[0].text.Equals("")) {
}
else if (x == 2 && y == 4)
{
if (twofour[0].text.Equals(""))
{
twofour[0].text = UnityEngine.Random.Range(1, 7).ToString();
} else if (twofour[1].text.Equals("")) {
}
else if (twofour[1].text.Equals(""))
{
twofour[1].text = UnityEngine.Random.Range(1, 7).ToString();
} else if (twofour[2].text.Equals("")) {
}
else if (twofour[2].text.Equals(""))
{
twofour[2].text = UnityEngine.Random.Range(1, 7).ToString();
}
} else if (x == 3 && y == 1) {
if (threeone[0].text.Equals("")) {
}
else if (x == 3 && y == 1)
{
if (threeone[0].text.Equals(""))
{
threeone[0].text = UnityEngine.Random.Range(1, 7).ToString();
} else if (threeone[1].text.Equals("")) {
}
else if (threeone[1].text.Equals(""))
{
threeone[1].text = UnityEngine.Random.Range(1, 7).ToString();
} else if (threeone[2].text.Equals("")) {
}
else if (threeone[2].text.Equals(""))
{
threeone[2].text = UnityEngine.Random.Range(1, 7).ToString();
}
} else if (x == 3 && y == 2) {
if (threetwo[0].text.Equals("")) {
}
else if (x == 3 && y == 2)
{
if (threetwo[0].text.Equals(""))
{
threetwo[0].text = UnityEngine.Random.Range(1, 7).ToString();
} else if (threetwo[1].text.Equals("")) {
}
else if (threetwo[1].text.Equals(""))
{
threetwo[1].text = UnityEngine.Random.Range(1, 7).ToString();
} else if (threetwo[2].text.Equals("")) {
}
else if (threetwo[2].text.Equals(""))
{
threetwo[2].text = UnityEngine.Random.Range(1, 7).ToString();
}
} else if (x == 3 && y == 3) {
if (threethree[0].text.Equals("")) {
}
else if (x == 3 && y == 3)
{
if (threethree[0].text.Equals(""))
{
threethree[0].text = UnityEngine.Random.Range(1, 7).ToString();
} else if (threethree[1].text.Equals("")) {
}
else if (threethree[1].text.Equals(""))
{
threethree[1].text = UnityEngine.Random.Range(1, 7).ToString();
} else if (threethree[2].text.Equals("")) {
}
else if (threethree[2].text.Equals(""))
{
threethree[2].text = UnityEngine.Random.Range(1, 7).ToString();
}
} else if (x == 3 && y == 4) {
if (threefour[0].text.Equals("")) {
}
else if (x == 3 && y == 4)
{
if (threefour[0].text.Equals(""))
{
threefour[0].text = UnityEngine.Random.Range(1, 7).ToString();
} else if (threefour[1].text.Equals("")) {
}
else if (threefour[1].text.Equals(""))
{
threefour[1].text = UnityEngine.Random.Range(1, 7).ToString();
} else if (threefour[2].text.Equals("")) {
}
else if (threefour[2].text.Equals(""))
{
threefour[2].text = UnityEngine.Random.Range(1, 7).ToString();
}
}

View File

@@ -9,128 +9,122 @@ public class helyszinaktivalas : MonoBehaviour
private Elet elet;
private Akciok akciok;
private Targyak targyak;
private Dice dice;
private Upgrade upgrade;
private Akciopont akciopont;
private movement movement;
//int movement.jelenlegi_x;
//int movement.movement.jelenlegi_y;
bool canUpgrade = false;
private int diceResult;
public Sprite[] diceSides = new Sprite[6];
public SpriteRenderer hely1;
private Ugynok ugynok;
private Energia energia;
// Start is called before the first frame update
void Start()
{
dice = FindObjectOfType<Dice>();
akciopont = FindObjectOfType<Akciopont>();
movement = FindObjectOfType<movement>();
upgrade = FindObjectOfType<Upgrade>();
targyak = FindObjectOfType<Targyak>();
akciok = FindObjectOfType<Akciok>();
elet = FindObjectOfType<Elet>();
ugynok = FindObjectOfType<Ugynok>();
energia = FindObjectOfType<Energia>();
}
// Update is called once per frame
/*void Update()
{
movement.jelenlegi_x = movement.jelenlegi_x;
movement.jelenlegi_y = movement.jelenlegi_y;
canUpgrade = false;
}*/
public void HelyszinAktivalas()
{
//1-es mezõ
//1-es mez<EFBFBD> kesz
if (movement.jelenlegi_x == 1 && movement.jelenlegi_y == 1)
{
//ügynökcsapat ölés bárhol töltény nélkül
//ugynokcsapat oles barhol tolteny nelkul
ugynok.canKill = true; //megolhetunk egy csapatot
akciopont.UpdateAkciopont(-1);
energia.csokkenEnergia(1);
}
//2-es mezõ -- KÉSZ
//2-es mez<EFBFBD> -- K<EFBFBD>SZ
if (movement.jelenlegi_x == 2 && movement.jelenlegi_y == 1)
{
canUpgrade = true;
upgrade.canUpgrade = true;
akciopont.akciopont++;
energia.csokkenEnergia(2);
}
//3-es mezõ -- KÉSZ
//3-es mez<EFBFBD>
if (movement.jelenlegi_x == 3 && movement.jelenlegi_y == 1)
{
movement.helyreTeleport();
movement.helyreTeleport(); //hogy teleportal
energia.csokkenEnergia(1);
}
//4-es mezõ
//4-es mez<EFBFBD> kesz
if (movement.jelenlegi_x == 1 && movement.jelenlegi_y == 2)
{
//kapsz egy tárgyat
//kapsz egy t<EFBFBD>rgyat
targyak.RandomTargy();
targyak.targy_szamlalo++;
akciopont.UpdateAkciopont(-1);
energia.csokkenEnergia(1);
}
//5-es mezõ
//5-es mez<EFBFBD> kesz
if (movement.jelenlegi_x == 2 && movement.jelenlegi_y == 2)
{
/*diceResult = RollDice();
hely1.sprite = diceSides[diceResult - 1];
hely1.size = new Vector2(38, 38);
targyak.targy_szamlalo++;*/
///dobj paros +3 ap paratlan -1 energia
int eredmeny = UnityEngine.Random.Range(1,7);
Debug.Log("Dobas eredmeny: " + eredmeny);
if(eredmeny % 2 == 0)
akciopont.UpdateAkciopont(3); //+3ap
else
energia.csokkenEnergia(1);
akciopont.UpdateAkciopont(-1);
}
//6-es mezõ
//6-es mez<EFBFBD> kesz
if (movement.jelenlegi_x == 3 && movement.jelenlegi_y == 2)
{
//+1 akció
//+1 akcio
akciopont.UpdateAkciopont(1);
}
//7-es mezõ -- KÉSZ
//7-es mez<EFBFBD> -- K<EFBFBD>SZ
if (movement.jelenlegi_x == 1 && movement.jelenlegi_y == 3)
{
//1 fejlesztés ingyen
canUpgrade = true;
akciopont.akciopont++;
//1 fejleszt<EFBFBD>s ingyen
upgrade.canUpgrade = true;
akciopont.UpdateAkciopont(-2);
}
//8-es mezõ
//8-es mez<EFBFBD> kesz
if (movement.jelenlegi_x == 2 && movement.jelenlegi_y == 3)
{
/*diceResult = RollDice();
hely1.sprite = diceSides[diceResult - 1];
hely1.size = new Vector2(38, 38);
targyak.targy_szamlalo++;*/
//2 kocka dobas egyik +ap masik -energia
int eredmeny1 = UnityEngine.Random.Range(1,7); //+ap
int eredmeny2 = UnityEngine.Random.Range(1,7); //-energia
Debug.Log("Dobas eredmeny elso: "+eredmeny1+ " masodik: " + eredmeny2);
akciopont.UpdateAkciopont(eredmeny1);
energia.csokkenEnergia(eredmeny2);
}
//9-es mezõ -- KÉSZ
//9-es mez<EFBFBD> -- K<EFBFBD>SZ
if (movement.jelenlegi_x == 3 && movement.jelenlegi_y == 3)
{
targyak.RandomTargy();
targyak.targy_szamlalo++;
akciopont.UpdateAkciopont(-2);
}
//10-es mezõ -- KÉSZ ?
//10-es mez<EFBFBD> -- K<EFBFBD>SZ ?
if (movement.jelenlegi_x == 1 && movement.jelenlegi_y == 4)
{
//+4 töltény
//+4 t<EFBFBD>lt<EFBFBD>ny
akciok.Betarazas(4);
akciopont.UpdateAkciopont(-1);
}
//11-es mezõ
//11-es mez<EFBFBD> kesz
if (movement.jelenlegi_x == 2 && movement.jelenlegi_y == 4)
{
//Dobj! Megkapod a tárgyat.
/* diceResult = RollDice();
hely1.sprite = diceSides[diceResult - 1];
hely1.size = new Vector2(38, 38);
targyak.targy_szamlalo++;*/
//Dobj! Megkapod a t<EFBFBD>rgyat.
targyak.RandomTargy();
targyak.targy_szamlalo++;
energia.csokkenEnergia(1);
}
//12-es mezõ -- KÉSZ
//12-es mez<EFBFBD> -- K<EFBFBD>SZ
if (movement.jelenlegi_x == 3 && movement.jelenlegi_y == 4)
{
//+1 élet
//+1 elet
elet.Eletplusz();
akciopont.UpdateAkciopont(-1);
}
}
/*private int RollDice()
{
int randomDiceSide = UnityEngine.Random.Range(0, 5);
int finalSide = randomDiceSide + 1;
Debug.Log(finalSide);
return finalSide;
}*/
}

File diff suppressed because it is too large Load Diff

18
Assets/Scripts/uj.cs Normal file
View File

@@ -0,0 +1,18 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class uj : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}

11
Assets/Scripts/uj.cs.meta Normal file
View File

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

View File

@@ -8,6 +8,7 @@
"com.unity.test-framework": "1.1.33",
"com.unity.textmeshpro": "3.0.6",
"com.unity.timeline": "1.6.4",
"com.unity.toolchain.linux-x86_64": "2.0.4",
"com.unity.ugui": "1.0.0",
"com.unity.visualscripting": "1.7.8",
"com.unity.modules.ai": "1.0.0",

View File

@@ -202,6 +202,22 @@
"com.unity.searcher": "4.9.1"
}
},
"com.unity.sysroot": {
"version": "2.0.5",
"depth": 1,
"source": "registry",
"dependencies": {},
"url": "https://packages.unity.com"
},
"com.unity.sysroot.linux-x86_64": {
"version": "2.0.4",
"depth": 1,
"source": "registry",
"dependencies": {
"com.unity.sysroot": "2.0.5"
},
"url": "https://packages.unity.com"
},
"com.unity.test-framework": {
"version": "1.1.33",
"depth": 0,
@@ -234,6 +250,16 @@
},
"url": "https://packages.unity.com"
},
"com.unity.toolchain.linux-x86_64": {
"version": "2.0.4",
"depth": 0,
"source": "registry",
"dependencies": {
"com.unity.sysroot": "2.0.5",
"com.unity.sysroot.linux-x86_64": "2.0.4"
},
"url": "https://packages.unity.com"
},
"com.unity.ugui": {
"version": "1.0.0",
"depth": 0,

View File

@@ -56,8 +56,8 @@ PlayerSettings:
androidShowActivityIndicatorOnLoading: -1
iosUseCustomAppBackgroundBehavior: 0
iosAllowHTTPDownload: 1
allowedAutorotateToPortrait: 1
allowedAutorotateToPortraitUpsideDown: 1
allowedAutorotateToPortrait: 0
allowedAutorotateToPortraitUpsideDown: 0
allowedAutorotateToLandscapeRight: 1
allowedAutorotateToLandscapeLeft: 1
useOSAutorotation: 1

View File

@@ -14,17 +14,17 @@ MonoBehaviour:
m_EditorClassIdentifier:
m_Children:
- {fileID: 3}
- {fileID: 13}
- {fileID: 12}
m_Position:
serializedVersion: 2
x: 0
y: 30
width: 1470
height: 771
width: 1366
height: 622
m_MinSize: {x: 300, y: 200}
m_MaxSize: {x: 24288, y: 16192}
vertical: 0
controlID: 97
controlID: 83
--- !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: 4621777727084837110, guid: 0000000000000000d000000000000000, type: 0}
m_Image: {fileID: -6423792434712278376, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 234.5
y: 95
width: 795.5
height: 446.5
x: 191
y: 86
width: 819
height: 366
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: 795.5, y: 425.5}
m_TargetSize: {x: 819, y: 345}
m_TextureFilterMode: 0
m_TextureHideFlags: 61
m_RenderIMGUI: 1
@@ -74,10 +74,10 @@ MonoBehaviour:
m_VRangeLocked: 0
hZoomLockedByDefault: 0
vZoomLockedByDefault: 0
m_HBaseRangeMin: -198.875
m_HBaseRangeMax: 198.875
m_VBaseRangeMin: -106.375
m_VBaseRangeMax: 106.375
m_HBaseRangeMin: -409.5
m_HBaseRangeMax: 409.5
m_VBaseRangeMin: -172.5
m_VBaseRangeMax: 172.5
m_HAllowExceedBaseRangeMin: 1
m_HAllowExceedBaseRangeMax: 1
m_VAllowExceedBaseRangeMin: 1
@@ -95,23 +95,23 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 21
width: 795.5
height: 425.5
m_Scale: {x: 2, y: 2}
m_Translation: {x: 397.75, y: 212.75}
width: 819
height: 345
m_Scale: {x: 1, y: 1}
m_Translation: {x: 409.5, y: 172.5}
m_MarginLeft: 0
m_MarginRight: 0
m_MarginTop: 0
m_MarginBottom: 0
m_LastShownAreaInsideMargins:
serializedVersion: 2
x: -198.875
y: -106.375
width: 397.75
height: 212.75
x: -409.5
y: -172.5
width: 819
height: 345
m_MinimalGUI: 1
m_defaultScale: 2
m_LastWindowPixelSize: {x: 1591, y: 893}
m_defaultScale: 1
m_LastWindowPixelSize: {x: 819, y: 366}
m_ClearInEditMode: 1
m_NoCameraWarning: 1
m_LowResolutionForAspectRatios: 01000000000000000000
@@ -136,12 +136,12 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 0
width: 1032
height: 771
width: 1012
height: 622
m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 16192, y: 16192}
vertical: 1
controlID: 98
controlID: 84
--- !u!114 &4
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -161,12 +161,12 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 0
width: 1032
height: 467.5
width: 1012
height: 387
m_MinSize: {x: 200, y: 100}
m_MaxSize: {x: 16192, y: 8096}
vertical: 0
controlID: 99
controlID: 85
--- !u!114 &5
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -184,10 +184,10 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 0
width: 234.5
height: 467.5
m_MinSize: {x: 201, y: 221}
m_MaxSize: {x: 4001, y: 4021}
width: 191
height: 387
m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 6}
m_Panes:
- {fileID: 6}
@@ -209,14 +209,14 @@ MonoBehaviour:
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Hierarchy
m_Image: {fileID: -3734745235275155857, guid: 0000000000000000d000000000000000, type: 0}
m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 0
y: 95
width: 233.5
height: 446.5
y: 86
width: 190
height: 366
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@@ -265,12 +265,12 @@ MonoBehaviour:
m_Children: []
m_Position:
serializedVersion: 2
x: 234.5
x: 191
y: 0
width: 797.5
height: 467.5
m_MinSize: {x: 202, y: 221}
m_MaxSize: {x: 4002, y: 4021}
width: 821
height: 387
m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 2}
m_Panes:
- {fileID: 8}
@@ -293,14 +293,14 @@ MonoBehaviour:
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Scene
m_Image: {fileID: 8634526014445323508, guid: 0000000000000000d000000000000000, type: 0}
m_Image: {fileID: 2593428753322112591, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 234.5
y: 95
width: 795.5
height: 446.5
x: 191
y: 86
width: 819
height: 366
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: -98, y: -26}
snapOffsetDelta: {x: -101, y: -26}
snapCorner: 3
id: Tool Settings
index: 0
@@ -550,16 +550,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: -11.670631, y: -3.049128, z: -0.05244342}
speed: 2
m_Value: {x: -4.5465274, y: -1.4268839, z: -0.07916484}
m_Value: {x: -11.670631, y: -3.049128, z: -0.05244342}
m_RenderMode: 0
m_CameraMode:
drawMode: 0
@@ -610,9 +610,9 @@ MonoBehaviour:
speed: 2
m_Value: {x: 0, y: 0, z: 0, w: 1}
m_Size:
m_Target: 10.31249
m_Target: 8.236867
speed: 2
m_Value: 10.31249
m_Value: 8.236867
m_Ortho:
m_Target: 1
speed: 2
@@ -647,24 +647,23 @@ MonoBehaviour:
m_Enabled: 1
m_EditorHideFlags: 1
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
m_Name: ProjectBrowser
m_Name: ConsoleWindow
m_EditorClassIdentifier:
m_Children: []
m_Position:
serializedVersion: 2
x: 0
y: 467.5
width: 1032
height: 303.5
m_MinSize: {x: 231, y: 271}
m_MaxSize: {x: 10001, y: 10021}
m_ActualView: {fileID: 10}
y: 387
width: 1012
height: 235
m_MinSize: {x: 100, y: 100}
m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 11}
m_Panes:
- {fileID: 10}
- {fileID: 11}
- {fileID: 12}
m_Selected: 0
m_LastSelected: 2
m_Selected: 1
m_LastSelected: 0
--- !u!114 &10
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -681,14 +680,14 @@ MonoBehaviour:
m_MaxSize: {x: 10000, y: 10000}
m_TitleContent:
m_Text: Project
m_Image: {fileID: -5179483145760003458, guid: 0000000000000000d000000000000000, type: 0}
m_Image: {fileID: -5467254957812901981, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 0
y: 562.5
width: 1031
height: 282.5
y: 473
width: 1011
height: 214
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@@ -710,18 +709,18 @@ MonoBehaviour:
m_Globs: []
m_OriginalText:
m_ViewMode: 1
m_StartGridSize: 71
m_StartGridSize: 52
m_LastFolders:
- Assets/Scripts
m_LastFoldersGridSize: 71
m_LastProjectPath: /Users/bance/Documents/GitHub/findthesource
m_LastFoldersGridSize: 52
m_LastProjectPath: /home/tom/Documents/dev/find the source
m_LockTracker:
m_IsLocked: 0
m_FolderTreeState:
scrollPos: {x: 0, y: 0}
m_SelectedIDs: 8a770000
m_LastClickedID: 30602
m_ExpandedIDs: 000000006477000000ca9a3bffffff7f
m_SelectedIDs: 8c780000
m_LastClickedID: 30860
m_ExpandedIDs: 000000007678000000ca9a3bffffff7f
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@@ -749,7 +748,7 @@ MonoBehaviour:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
m_LastClickedID: 0
m_ExpandedIDs: 0000000064770000
m_ExpandedIDs: 0000000076780000
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@@ -774,10 +773,10 @@ MonoBehaviour:
m_Icon: {fileID: 0}
m_ResourceFile:
m_ListAreaState:
m_SelectedInstanceIDs: e61b0000
m_LastClickedInstanceID: 7142
m_SelectedInstanceIDs: 686c0000
m_LastClickedInstanceID: 27752
m_HadKeyboardFocusLastEvent: 1
m_ExpandedInstanceIDs: c62300000000000034ecffff
m_ExpandedInstanceIDs: c623000000000000
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@@ -793,7 +792,7 @@ MonoBehaviour:
m_IsRenaming: 0
m_OriginalEventType: 11
m_IsRenamingFilename: 1
m_ClientGUIView: {fileID: 0}
m_ClientGUIView: {fileID: 9}
m_CreateAssetUtility:
m_EndAction: {fileID: 0}
m_InstanceID: 0
@@ -801,10 +800,10 @@ MonoBehaviour:
m_Icon: {fileID: 0}
m_ResourceFile:
m_NewAssetIndexInList: -1
m_ScrollPosition: {x: 0, y: 0}
m_GridSize: 71
m_ScrollPosition: {x: 0, y: 16}
m_GridSize: 52
m_SkipHiddenPackages: 0
m_DirectoriesAreaWidth: 164
m_DirectoriesAreaWidth: 193
--- !u!114 &11
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -813,183 +812,7 @@ MonoBehaviour:
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 12373, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_MinSize: {x: 100, y: 100}
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Audio Mixer
m_Image: {fileID: -3283902137440876849, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 0
y: 550
width: 1472
height: 449
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
m_SaveData: []
m_MixersTreeState:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
m_LastClickedID: 30544
m_ExpandedIDs: 12eb343c
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
m_OriginalName:
m_EditFieldRect:
serializedVersion: 2
x: 0
y: 0
width: 0
height: 0
m_UserData: 0
m_IsWaitingForDelay: 0
m_IsRenaming: 0
m_OriginalEventType: 11
m_IsRenamingFilename: 0
m_ClientGUIView: {fileID: 0}
m_SearchString:
m_CreateAssetUtility:
m_EndAction: {fileID: 0}
m_InstanceID: 0
m_Path:
m_Icon: {fileID: 0}
m_ResourceFile:
m_LayoutStripsOnTop:
m_VerticalSplitter:
ID: 0
splitterInitialOffset: 0
currentActiveSplitter: -1
realSizes:
- 65
- 35
relativeSizes:
- 0.65
- 0.35000002
minSizes:
- 85
- 105
maxSizes:
- 0
- 0
lastTotalSize: 0
splitSize: 6
xOffset: 0
m_Version: 1
oldRealSizes:
oldMinSizes:
oldMaxSizes:
oldSplitSize: 0
m_HorizontalSplitter:
ID: 0
splitterInitialOffset: 0
currentActiveSplitter: -1
realSizes:
- 60
- 60
- 60
- 60
relativeSizes:
- 0.25
- 0.25
- 0.25
- 0.25
minSizes:
- 85
- 85
- 85
- 85
maxSizes:
- 0
- 0
- 0
- 0
lastTotalSize: 0
splitSize: 6
xOffset: 0
m_Version: 1
oldRealSizes:
oldMinSizes:
oldMaxSizes:
oldSplitSize: 0
m_LayoutStripsOnRight:
m_VerticalSplitter:
ID: 0
splitterInitialOffset: 0
currentActiveSplitter: -1
realSizes:
- 60
- 60
- 60
- 60
relativeSizes:
- 0.25
- 0.25
- 0.25
- 0.25
minSizes:
- 100
- 85
- 85
- 85
maxSizes:
- 0
- 0
- 0
- 0
lastTotalSize: 0
splitSize: 6
xOffset: 0
m_Version: 1
oldRealSizes:
oldMinSizes:
oldMaxSizes:
oldSplitSize: 0
m_HorizontalSplitter:
ID: 115
splitterInitialOffset: 299
currentActiveSplitter: -1
realSizes:
- 592
- 880
relativeSizes:
- 0.40213048
- 0.5978695
minSizes:
- 160
- 160
maxSizes:
- 0
- 0
lastTotalSize: 1472
splitSize: 6
xOffset: 0
m_Version: 1
oldRealSizes:
oldMinSizes:
oldMaxSizes:
oldSplitSize: 0
m_SectionOrder: 00000000030000000100000002000000
m_LayoutMode: 1
m_SortGroupsAlphabetically: 0
m_ShowReferencedBuses: 1
m_ShowBusConnections: 0
m_ShowBusConnectionsOfSelection: 0
--- !u!114 &12
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_EditorHideFlags: 1
m_Script: {fileID: 12003, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
@@ -997,19 +820,19 @@ MonoBehaviour:
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Console
m_Image: {fileID: -4950941429401207979, guid: 0000000000000000d000000000000000, type: 0}
m_Image: {fileID: -4327648978806127646, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 0
y: 647
width: 1347
height: 352
y: 473
width: 1011
height: 214
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
m_SaveData: []
--- !u!114 &13
--- !u!114 &12
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
@@ -1024,18 +847,18 @@ MonoBehaviour:
m_Children: []
m_Position:
serializedVersion: 2
x: 1032
x: 1012
y: 0
width: 438
height: 771
width: 354
height: 622
m_MinSize: {x: 275, y: 50}
m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 14}
m_ActualView: {fileID: 13}
m_Panes:
- {fileID: 14}
- {fileID: 13}
m_Selected: 0
m_LastSelected: 0
--- !u!114 &14
--- !u!114 &13
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
@@ -1051,14 +874,14 @@ MonoBehaviour:
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Inspector
m_Image: {fileID: -440750813802333266, guid: 0000000000000000d000000000000000, type: 0}
m_Image: {fileID: -2667387946076563598, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 1032
y: 95
width: 437
height: 750
x: 1012
y: 86
width: 353
height: 601
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@@ -1069,8 +892,8 @@ MonoBehaviour:
m_CachedPref: 160
m_ControlHash: -371814159
m_PrefName: Preview_InspectorPreview
m_LastInspectedObjectInstanceID: 7142
m_LastVerticalScrollValue: 0
m_LastInspectedObjectInstanceID: 27752
m_LastVerticalScrollValue: 139
m_GlobalObjectId:
m_InspectorMode: 0
m_LockTracker:

View File

@@ -15,15 +15,15 @@ MonoBehaviour:
m_PixelRect:
serializedVersion: 2
x: 0
y: 65
width: 1470
height: 821
y: 28
width: 1366
height: 672
m_ShowMode: 4
m_Title: Scene
m_RootView: {fileID: 2}
m_MinSize: {x: 875, y: 300}
m_MaxSize: {x: 10000, y: 10000}
m_Maximized: 1
m_Maximized: 0
--- !u!114 &2
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -44,8 +44,8 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 0
width: 1470
height: 821
width: 1366
height: 672
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: 1470
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: 801
width: 1470
y: 652
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: 1470
height: 771
width: 1366
height: 622
m_MinSize: {x: 300, y: 200}
m_MaxSize: {x: 24288, y: 16192}
vertical: 0
controlID: 121
controlID: 95
--- !u!114 &6
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -139,12 +139,12 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 0
width: 1032
height: 771
width: 1012
height: 622
m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 16192, y: 16192}
vertical: 1
controlID: 72
controlID: 96
--- !u!114 &7
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -164,12 +164,12 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 0
width: 1032
height: 467.5
width: 1012
height: 387
m_MinSize: {x: 200, y: 100}
m_MaxSize: {x: 16192, y: 8096}
vertical: 0
controlID: 44
controlID: 97
--- !u!114 &8
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -187,10 +187,10 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 0
width: 234.5
height: 467.5
m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4000, y: 4000}
width: 191
height: 387
m_MinSize: {x: 201, y: 221}
m_MaxSize: {x: 4001, y: 4021}
m_ActualView: {fileID: 13}
m_Panes:
- {fileID: 13}
@@ -211,10 +211,10 @@ MonoBehaviour:
m_Children: []
m_Position:
serializedVersion: 2
x: 234.5
x: 191
y: 0
width: 797.5
height: 467.5
width: 821
height: 387
m_MinSize: {x: 202, y: 221}
m_MaxSize: {x: 4002, y: 4021}
m_ActualView: {fileID: 14}
@@ -239,18 +239,17 @@ MonoBehaviour:
m_Position:
serializedVersion: 2
x: 0
y: 467.5
width: 1032
height: 303.5
y: 387
width: 1012
height: 235
m_MinSize: {x: 231, y: 271}
m_MaxSize: {x: 10001, y: 10021}
m_ActualView: {fileID: 15}
m_Panes:
- {fileID: 15}
- {fileID: 16}
- {fileID: 17}
m_Selected: 0
m_LastSelected: 2
m_LastSelected: 1
--- !u!114 &11
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -266,15 +265,15 @@ MonoBehaviour:
m_Children: []
m_Position:
serializedVersion: 2
x: 1032
x: 1012
y: 0
width: 438
height: 771
m_MinSize: {x: 275, y: 50}
m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 18}
width: 354
height: 622
m_MinSize: {x: 276, y: 71}
m_MaxSize: {x: 4001, y: 4021}
m_ActualView: {fileID: 17}
m_Panes:
- {fileID: 18}
- {fileID: 17}
m_Selected: 0
m_LastSelected: 0
--- !u!114 &12
@@ -293,14 +292,14 @@ MonoBehaviour:
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Game
m_Image: {fileID: 4621777727084837110, guid: 0000000000000000d000000000000000, type: 0}
m_Image: {fileID: -6423792434712278376, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 234.5
y: 95
width: 795.5
height: 446.5
x: 191
y: 86
width: 819
height: 366
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@@ -311,11 +310,11 @@ MonoBehaviour:
m_ShowGizmos: 0
m_TargetDisplay: 0
m_ClearColor: {r: 0, g: 0, b: 0, a: 0}
m_TargetSize: {x: 795.5, y: 425.5}
m_TargetSize: {x: 819, y: 345}
m_TextureFilterMode: 0
m_TextureHideFlags: 61
m_RenderIMGUI: 1
m_EnterPlayModeBehavior: 1
m_EnterPlayModeBehavior: 0
m_UseMipMap: 0
m_VSyncEnabled: 0
m_Gizmos: 0
@@ -326,10 +325,10 @@ MonoBehaviour:
m_VRangeLocked: 0
hZoomLockedByDefault: 0
vZoomLockedByDefault: 0
m_HBaseRangeMin: -198.875
m_HBaseRangeMax: 198.875
m_VBaseRangeMin: -106.375
m_VBaseRangeMax: 106.375
m_HBaseRangeMin: -409.5
m_HBaseRangeMax: 409.5
m_VBaseRangeMin: -172.5
m_VBaseRangeMax: 172.5
m_HAllowExceedBaseRangeMin: 1
m_HAllowExceedBaseRangeMax: 1
m_VAllowExceedBaseRangeMin: 1
@@ -347,23 +346,23 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 21
width: 795.5
height: 425.5
m_Scale: {x: 2, y: 2}
m_Translation: {x: 397.75, y: 212.75}
width: 819
height: 345
m_Scale: {x: 1, y: 1}
m_Translation: {x: 409.5, y: 172.5}
m_MarginLeft: 0
m_MarginRight: 0
m_MarginTop: 0
m_MarginBottom: 0
m_LastShownAreaInsideMargins:
serializedVersion: 2
x: -198.875
y: -106.375
width: 397.75
height: 212.75
x: -409.5
y: -172.5
width: 819
height: 345
m_MinimalGUI: 1
m_defaultScale: 2
m_LastWindowPixelSize: {x: 1591, y: 893}
m_defaultScale: 1
m_LastWindowPixelSize: {x: 819, y: 366}
m_ClearInEditMode: 1
m_NoCameraWarning: 1
m_LowResolutionForAspectRatios: 01000000000000000000
@@ -385,14 +384,14 @@ MonoBehaviour:
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Hierarchy
m_Image: {fileID: -3734745235275155857, guid: 0000000000000000d000000000000000, type: 0}
m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 0
y: 95
width: 233.5
height: 446.5
y: 86
width: 190
height: 366
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@@ -442,14 +441,14 @@ MonoBehaviour:
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Scene
m_Image: {fileID: 8634526014445323508, guid: 0000000000000000d000000000000000, type: 0}
m_Image: {fileID: 2593428753322112591, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 234.5
y: 95
width: 795.5
height: 446.5
x: 191
y: 86
width: 819
height: 366
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@@ -460,7 +459,7 @@ MonoBehaviour:
collapsed: 0
displayed: 1
snapOffset: {x: 0, y: 0}
snapOffsetDelta: {x: -98, y: -26}
snapOffsetDelta: {x: -101, y: -26}
snapCorner: 3
id: Tool Settings
index: 0
@@ -699,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: -3.2998517, y: -0.07328266, z: -0.28951076}
m_Target: {x: -10.620693, y: -3.3132205, z: -0.04804741}
speed: 2
m_Value: {x: -3.2998517, y: -0.07328266, z: -0.28951076}
m_Value: {x: -10.620693, y: -3.3132205, z: -0.04804741}
m_RenderMode: 0
m_CameraMode:
drawMode: 0
@@ -759,9 +758,9 @@ MonoBehaviour:
speed: 2
m_Value: {x: 0, y: 0, z: 0, w: 1}
m_Size:
m_Target: 5.3934045
m_Target: 7.797266
speed: 2
m_Value: 5.3934045
m_Value: 7.797266
m_Ortho:
m_Target: 1
speed: 2
@@ -802,14 +801,14 @@ MonoBehaviour:
m_MaxSize: {x: 10000, y: 10000}
m_TitleContent:
m_Text: Project
m_Image: {fileID: -5179483145760003458, guid: 0000000000000000d000000000000000, type: 0}
m_Image: {fileID: -5467254957812901981, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 0
y: 562.5
width: 1031
height: 282.5
y: 473
width: 1011
height: 214
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@@ -831,18 +830,18 @@ MonoBehaviour:
m_Globs: []
m_OriginalText:
m_ViewMode: 1
m_StartGridSize: 71
m_StartGridSize: 52
m_LastFolders:
- Assets/Scripts
m_LastFoldersGridSize: 71
m_LastProjectPath: /Users/bance/Documents/GitHub/findthesource
m_LastFoldersGridSize: 52
m_LastProjectPath: /home/tom/Documents/dev/find the source
m_LockTracker:
m_IsLocked: 0
m_FolderTreeState:
scrollPos: {x: 0, y: 0}
m_SelectedIDs: 52770000
m_LastClickedID: 30546
m_ExpandedIDs: 000000002c77000000ca9a3bffffff7f
m_SelectedIDs: 8c780000
m_LastClickedID: 30860
m_ExpandedIDs: 000000007678000000ca9a3bffffff7f
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@@ -870,7 +869,7 @@ MonoBehaviour:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
m_LastClickedID: 0
m_ExpandedIDs: 000000002c770000
m_ExpandedIDs: 0000000076780000
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@@ -897,8 +896,8 @@ MonoBehaviour:
m_ListAreaState:
m_SelectedInstanceIDs:
m_LastClickedInstanceID: 0
m_HadKeyboardFocusLastEvent: 1
m_ExpandedInstanceIDs: c62300000000000034ecffff
m_HadKeyboardFocusLastEvent: 0
m_ExpandedInstanceIDs: c623000000000000
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@@ -914,7 +913,7 @@ MonoBehaviour:
m_IsRenaming: 0
m_OriginalEventType: 11
m_IsRenamingFilename: 1
m_ClientGUIView: {fileID: 0}
m_ClientGUIView: {fileID: 10}
m_CreateAssetUtility:
m_EndAction: {fileID: 0}
m_InstanceID: 0
@@ -923,9 +922,9 @@ MonoBehaviour:
m_ResourceFile:
m_NewAssetIndexInList: -1
m_ScrollPosition: {x: 0, y: 0}
m_GridSize: 71
m_GridSize: 52
m_SkipHiddenPackages: 0
m_DirectoriesAreaWidth: 164
m_DirectoriesAreaWidth: 193
--- !u!114 &16
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -934,183 +933,7 @@ MonoBehaviour:
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 12373, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_MinSize: {x: 100, y: 100}
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Audio Mixer
m_Image: {fileID: -3283902137440876849, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 0
y: 550
width: 1472
height: 449
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
m_SaveData: []
m_MixersTreeState:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
m_LastClickedID: 30544
m_ExpandedIDs: 12eb343c
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
m_OriginalName:
m_EditFieldRect:
serializedVersion: 2
x: 0
y: 0
width: 0
height: 0
m_UserData: 0
m_IsWaitingForDelay: 0
m_IsRenaming: 0
m_OriginalEventType: 11
m_IsRenamingFilename: 0
m_ClientGUIView: {fileID: 0}
m_SearchString:
m_CreateAssetUtility:
m_EndAction: {fileID: 0}
m_InstanceID: 0
m_Path:
m_Icon: {fileID: 0}
m_ResourceFile:
m_LayoutStripsOnTop:
m_VerticalSplitter:
ID: 0
splitterInitialOffset: 0
currentActiveSplitter: -1
realSizes:
- 65
- 35
relativeSizes:
- 0.65
- 0.35000002
minSizes:
- 85
- 105
maxSizes:
- 0
- 0
lastTotalSize: 0
splitSize: 6
xOffset: 0
m_Version: 1
oldRealSizes:
oldMinSizes:
oldMaxSizes:
oldSplitSize: 0
m_HorizontalSplitter:
ID: 0
splitterInitialOffset: 0
currentActiveSplitter: -1
realSizes:
- 60
- 60
- 60
- 60
relativeSizes:
- 0.25
- 0.25
- 0.25
- 0.25
minSizes:
- 85
- 85
- 85
- 85
maxSizes:
- 0
- 0
- 0
- 0
lastTotalSize: 0
splitSize: 6
xOffset: 0
m_Version: 1
oldRealSizes:
oldMinSizes:
oldMaxSizes:
oldSplitSize: 0
m_LayoutStripsOnRight:
m_VerticalSplitter:
ID: 0
splitterInitialOffset: 0
currentActiveSplitter: -1
realSizes:
- 60
- 60
- 60
- 60
relativeSizes:
- 0.25
- 0.25
- 0.25
- 0.25
minSizes:
- 100
- 85
- 85
- 85
maxSizes:
- 0
- 0
- 0
- 0
lastTotalSize: 0
splitSize: 6
xOffset: 0
m_Version: 1
oldRealSizes:
oldMinSizes:
oldMaxSizes:
oldSplitSize: 0
m_HorizontalSplitter:
ID: 115
splitterInitialOffset: 299
currentActiveSplitter: -1
realSizes:
- 592
- 880
relativeSizes:
- 0.40213048
- 0.5978695
minSizes:
- 160
- 160
maxSizes:
- 0
- 0
lastTotalSize: 1472
splitSize: 6
xOffset: 0
m_Version: 1
oldRealSizes:
oldMinSizes:
oldMaxSizes:
oldSplitSize: 0
m_SectionOrder: 00000000030000000100000002000000
m_LayoutMode: 1
m_SortGroupsAlphabetically: 0
m_ShowReferencedBuses: 1
m_ShowBusConnections: 0
m_ShowBusConnectionsOfSelection: 0
--- !u!114 &17
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_EditorHideFlags: 1
m_Script: {fileID: 12003, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
@@ -1118,19 +941,19 @@ MonoBehaviour:
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Console
m_Image: {fileID: -4950941429401207979, guid: 0000000000000000d000000000000000, type: 0}
m_Image: {fileID: -4327648978806127646, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 0
y: 562.5
width: 1031
height: 282.5
y: 473
width: 1011
height: 214
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
m_SaveData: []
--- !u!114 &18
--- !u!114 &17
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
@@ -1146,14 +969,14 @@ MonoBehaviour:
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Inspector
m_Image: {fileID: -440750813802333266, guid: 0000000000000000d000000000000000, type: 0}
m_Image: {fileID: -2667387946076563598, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 1032
y: 95
width: 437
height: 750
x: 1012
y: 86
width: 353
height: 601
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@@ -1165,7 +988,7 @@ MonoBehaviour:
m_ControlHash: -371814159
m_PrefName: Preview_InspectorPreview
m_LastInspectedObjectInstanceID: -1
m_LastVerticalScrollValue: 0
m_LastVerticalScrollValue: 1505.795
m_GlobalObjectId:
m_InspectorMode: 0
m_LockTracker: