source generalas kesz

This commit is contained in:
2022-12-07 11:47:31 +01:00
parent 3749cc6ebb
commit 0d77014303
6 changed files with 309 additions and 80 deletions

View File

@@ -3185,6 +3185,7 @@ GameObject:
- component: {fileID: 197904230}
- component: {fileID: 197904232}
- component: {fileID: 197904233}
- component: {fileID: 197904234}
m_Layer: 0
m_Name: Mangager
m_TagString: Untagged
@@ -3557,6 +3558,22 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: 32cd04417f58e9744b4743a6cc333196, type: 3}
m_Name:
m_EditorClassIdentifier:
--- !u!114 &197904234
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 197904216}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 28dbea1c8439b5b4d8d28d5410f9a544, type: 3}
m_Name:
m_EditorClassIdentifier:
isNyitva: 0
oszlop: -1
sor:
sourceSprite: {fileID: 1903169755}
--- !u!1 &229807670
GameObject:
m_ObjectHideFlags: 0
@@ -35548,6 +35565,90 @@ CanvasRenderer:
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1890576709}
m_CullTransparentMesh: 1
--- !u!1 &1903169755
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 1903169757}
- component: {fileID: 1903169756}
m_Layer: 0
m_Name: source
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 2147483647
m_IsActive: 1
--- !u!212 &1903169756
SpriteRenderer:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1903169755}
m_Enabled: 1
m_CastShadows: 0
m_ReceiveShadows: 0
m_DynamicOccludee: 1
m_StaticShadowCaster: 0
m_MotionVectors: 1
m_LightProbeUsage: 1
m_ReflectionProbeUsage: 1
m_RayTracingMode: 0
m_RayTraceProcedural: 0
m_RenderingLayerMask: 1
m_RendererPriority: 0
m_Materials:
- {fileID: 2100000, guid: a97c105638bdf8b4a8650670310a4cd3, type: 2}
m_StaticBatchInfo:
firstSubMesh: 0
subMeshCount: 0
m_StaticBatchRoot: {fileID: 0}
m_ProbeAnchor: {fileID: 0}
m_LightProbeVolumeOverride: {fileID: 0}
m_ScaleInLightmap: 1
m_ReceiveGI: 1
m_PreserveUVs: 0
m_IgnoreNormalsForChartDetection: 0
m_ImportantGI: 0
m_StitchLightmapSeams: 1
m_SelectedEditorRenderState: 0
m_MinimumChartSize: 4
m_AutoUVMaxDistance: 0.5
m_AutoUVMaxAngle: 89
m_LightmapParameters: {fileID: 0}
m_SortingLayerID: 0
m_SortingLayer: 0
m_SortingOrder: 2
m_Sprite: {fileID: 7482667652216324306, guid: 311925a002f4447b3a28927169b83ea6, type: 3}
m_Color: {r: 0, g: 0.011921406, b: 1, a: 1}
m_FlipX: 0
m_FlipY: 0
m_DrawMode: 0
m_Size: {x: 1, y: 1}
m_AdaptiveModeThreshold: 0.5
m_SpriteTileMode: 0
m_WasSpriteAssigned: 1
m_MaskInteraction: 0
m_SpriteSortPoint: 0
--- !u!4 &1903169757
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1903169755}
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: -40.2, y: -1.07, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 0}
m_RootOrder: 8
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
--- !u!1 &1907729085
GameObject:
m_ObjectHideFlags: 0

View File

@@ -36,14 +36,21 @@ public class Akciok : MonoBehaviour
public TMP_Text[] masodik_sor;
public TMP_Text[] harmadik_sor;
public TMP_Text[] negyedik_sor;
private int[] hackelt_sorok;
private int[] hackelt_sorok = new int[4];
private Upgrade upgrade;
//
//Source
private Source source;
private bool alpha = false;
private bool omega = false;
//
private void Start() {
ap = FindObjectOfType<Akciopont>();
movement = FindObjectOfType<movement>();
upgrade = FindObjectOfType<Upgrade>();
source = FindObjectOfType<Source>();
//kezdesnel karikazza be az elso harom adott toltenyt
for (int i = 0; i < tolteny_index; i++) {
@@ -177,43 +184,63 @@ public class Akciok : MonoBehaviour
i2= i;
}
}
}catch(IndexOutOfRangeException e) {
}catch(IndexOutOfRangeException) {
Debug.Log("hiba volt");
Debug.Log("i: " + i2 + " y" + movement.jelenlegi_y);
}
//forras helyenek bejelolese
if(count >= 2) { //&& !hackelt_sorok.Contains(movement.jelenlegi_y)
if(count >= 2 && !hackelt_sorok.Contains(movement.jelenlegi_y)) {
Debug.Log("belep");
if (movement.jelenlegi_y == 1){
elso_sor_text.text = "X";
hackelt_sorok[movement.jelenlegi_y-1] = movement.jelenlegi_y;
source.isNyitva = true;
}else {
rand = UnityEngine.Random.Range(1, 7);
Debug.Log("sorsolt szam: " + rand);
if(movement.jelenlegi_y == 2) {
if(movement.jelenlegi_y == 2) { //alpha, omega
if(rand < 4) {
masodik_sor[0].text = "X";
alpha = true;
source.sor.Remove(3);//3. sor kiszedes
source.sor.Remove(4);//4. sor kiszedes
} else {
masodik_sor[1].text = "X";
omega = true;
source.sor.Remove(1);//1. sor kiszedes
source.sor.Remove(2);//2. sor kiszedes
}
}else if(movement.jelenlegi_y == 3) {
hackelt_sorok[movement.jelenlegi_y-1] = movement.jelenlegi_y;
} else if(movement.jelenlegi_y == 3) {//sor
if (rand < 4) {
harmadik_sor[0].text = "X";
source.sor.Remove(2);//2. sor kiszedes
source.sor.Remove(4);//4. sor kiszedes
} else {
harmadik_sor[1].text = "X";
source.sor.Remove(1);//2. sor kiszedes
source.sor.Remove(3);//4. sor kiszedes
}
}else if(movement.jelenlegi_y == 4) {
hackelt_sorok[movement.jelenlegi_y-1] = movement.jelenlegi_y;
} else if(movement.jelenlegi_y == 4) {
if(rand < 3) {
negyedik_sor[0].text = "X";
source.oszlop = 1;
}else if( rand < 5) {
negyedik_sor[1].text = "X";
source.oszlop = 2;
} else {
negyedik_sor[2].text = "X";
source.oszlop = 3;
}
hackelt_sorok[movement.jelenlegi_y-1] = movement.jelenlegi_y;
}
}
ap.akciopont -= upgrade.hack[upgrade.getHackIndex()]; //ap koltseg levonasa
} else {
Debug.Log("itt mar hackeltel");
}
}

61
Assets/Scripts/Source.cs Normal file
View File

@@ -0,0 +1,61 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Source : MonoBehaviour
{
public bool isNyitva = false;
public int oszlop = -1;
public List<int> sor;
private movement movement;
public GameObject sourceSprite;
private void Start() {
movement = FindObjectOfType<movement>();
sor = new List<int>();
for (int i = 1; i < 5; i++) {
sor.Add(i);
}
}
private void Update() {
if(isNyitva && oszlop != -1 && sor.Count == 1) {
sourceRender(sor[0], oszlop);
printSourceLocation();
}
}
public void printSourceLocation() {
Debug.Log("Source hely: oszlop: "+oszlop+", sor: "+sor[0]);
}
public void sourceRender(int x, int y) {
if (x == 1 && y == 1) {
sourceSprite.transform.position = movement.oneone.transform.position;
} else if (x == 1 && y == 2) {
sourceSprite.transform.position = movement.onetwo.transform.position;
} else if (x == 1 && y == 3) {
sourceSprite.transform.position = movement.onethree.transform.position;
} else if (x == 1 && y == 4) {
sourceSprite.transform.position = movement.onefour.transform.position;
} else if (x == 2 && y == 1) {
sourceSprite.transform.position = movement.twoone.transform.position;
} else if (x == 2 && y == 2) {
sourceSprite.transform.position = movement.twotwo.transform.position;
} else if (x == 2 && y == 3) {
sourceSprite.transform.position = movement.twothree.transform.position;
} else if (x == 2 && y == 4) {
sourceSprite.transform.position = movement.twofour.transform.position;
} else if (x == 3 && y == 1) {
sourceSprite.transform.position = movement.threeone.transform.position;
} else if (x == 3 && y == 2) {
sourceSprite.transform.position = movement.threetwo.transform.position;
} else if (x == 3 && y == 3) {
sourceSprite.transform.position = movement.threethree.transform.position;
} else if (x == 3 && y == 4) {
sourceSprite.transform.position = movement.threefour.transform.position;
}
}
}

View File

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

View File

@@ -14,7 +14,7 @@ MonoBehaviour:
m_EditorClassIdentifier:
m_Children:
- {fileID: 3}
- {fileID: 12}
- {fileID: 13}
m_Position:
serializedVersion: 2
x: 0
@@ -24,7 +24,7 @@ MonoBehaviour:
m_MinSize: {x: 300, y: 200}
m_MaxSize: {x: 24288, y: 16192}
vertical: 0
controlID: 4928
controlID: 305
--- !u!114 &2
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -48,7 +48,7 @@ MonoBehaviour:
x: 205
y: 19
width: 842
height: 299
height: 342
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: 842, y: 278}
m_TargetSize: {x: 842, y: 321}
m_TextureFilterMode: 0
m_TextureHideFlags: 61
m_RenderIMGUI: 1
@@ -76,8 +76,8 @@ MonoBehaviour:
vZoomLockedByDefault: 0
m_HBaseRangeMin: -421
m_HBaseRangeMax: 421
m_VBaseRangeMin: -139
m_VBaseRangeMax: 139
m_VBaseRangeMin: -160.5
m_VBaseRangeMax: 160.5
m_HAllowExceedBaseRangeMin: 1
m_HAllowExceedBaseRangeMax: 1
m_VAllowExceedBaseRangeMin: 1
@@ -96,9 +96,9 @@ MonoBehaviour:
x: 0
y: 21
width: 842
height: 278
height: 321
m_Scale: {x: 1, y: 1}
m_Translation: {x: 421, y: 139}
m_Translation: {x: 421, y: 160.5}
m_MarginLeft: 0
m_MarginRight: 0
m_MarginTop: 0
@@ -106,12 +106,12 @@ MonoBehaviour:
m_LastShownAreaInsideMargins:
serializedVersion: 2
x: -421
y: -139
y: -160.5
width: 842
height: 278
height: 321
m_MinimalGUI: 1
m_defaultScale: 1
m_LastWindowPixelSize: {x: 842, y: 299}
m_LastWindowPixelSize: {x: 842, y: 342}
m_ClearInEditMode: 1
m_NoCameraWarning: 1
m_LowResolutionForAspectRatios: 01000000000000000000
@@ -141,7 +141,7 @@ MonoBehaviour:
m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 16192, y: 16192}
vertical: 1
controlID: 4906
controlID: 306
--- !u!114 &4
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -162,11 +162,11 @@ MonoBehaviour:
x: 0
y: 0
width: 1048
height: 320
height: 363
m_MinSize: {x: 200, y: 100}
m_MaxSize: {x: 16192, y: 8096}
vertical: 0
controlID: 4907
controlID: 267
--- !u!114 &5
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -185,9 +185,9 @@ MonoBehaviour:
x: 0
y: 0
width: 204
height: 320
m_MinSize: {x: 201, y: 221}
m_MaxSize: {x: 4001, y: 4021}
height: 363
m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 6}
m_Panes:
- {fileID: 6}
@@ -216,17 +216,17 @@ MonoBehaviour:
x: 0
y: 73
width: 203
height: 299
height: 342
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
m_SaveData: []
m_SceneHierarchy:
m_TreeViewState:
scrollPos: {x: 0, y: 1578}
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
m_LastClickedID: 0
m_ExpandedIDs: 80c1fffffcc1ffff9ec5ffffbcc5ffff20fbffff02fe000036fe000076ff0000200301003c030100b0030100bc030100020401007804010092050100560601008c060100c6060100ce060100ea070100ee070100
m_ExpandedIDs: acf2ffff4cf3ffffeef6ffff0cf7ffff28fbffff
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@@ -268,7 +268,7 @@ MonoBehaviour:
x: 204
y: 0
width: 844
height: 320
height: 363
m_MinSize: {x: 202, y: 221}
m_MaxSize: {x: 4002, y: 4021}
m_ActualView: {fileID: 2}
@@ -300,7 +300,7 @@ MonoBehaviour:
x: 204
y: 73
width: 842
height: 299
height: 342
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@@ -557,9 +557,9 @@ MonoBehaviour:
m_PlayAudio: 0
m_AudioPlay: 0
m_Position:
m_Target: {x: 1.2482973, y: -5.416713, z: 0.06453486}
m_Target: {x: -16.487053, y: 0.2214305, z: 0.007133484}
speed: 2
m_Value: {x: 1.2482973, y: -5.416713, z: 0.06453486}
m_Value: {x: -16.487053, y: 0.2214305, z: 0.007133484}
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: 14.705635
m_Target: 11.984197
speed: 2
m_Value: 14.705635
m_Value: 11.984197
m_Ortho:
m_Target: 1
speed: 2
@@ -647,23 +647,24 @@ 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: 320
y: 363
width: 1048
height: 315
m_MinSize: {x: 230, y: 250}
m_MaxSize: {x: 10000, y: 10000}
m_ActualView: {fileID: 10}
height: 272
m_MinSize: {x: 100, y: 100}
m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 11}
m_Panes:
- {fileID: 10}
- {fileID: 11}
m_Selected: 0
m_LastSelected: 0
- {fileID: 12}
m_Selected: 1
m_LastSelected: 2
--- !u!114 &10
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -685,9 +686,9 @@ MonoBehaviour:
m_Pos:
serializedVersion: 2
x: 0
y: 393
y: 436
width: 1047
height: 294
height: 251
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@@ -718,9 +719,9 @@ MonoBehaviour:
m_IsLocked: 0
m_FolderTreeState:
scrollPos: {x: 0, y: 0}
m_SelectedIDs: 76770000
m_LastClickedID: 30582
m_ExpandedIDs: 000000004877000000ca9a3bffffff7f
m_SelectedIDs: 5a770000
m_LastClickedID: 30554
m_ExpandedIDs: 000000004277000000ca9a3bffffff7f
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@@ -748,7 +749,7 @@ MonoBehaviour:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
m_LastClickedID: 0
m_ExpandedIDs: 000000004877000000ca9a3bffffff7f
m_ExpandedIDs: 000000004277000000ca9a3bffffff7f
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@@ -773,8 +774,8 @@ MonoBehaviour:
m_Icon: {fileID: 0}
m_ResourceFile:
m_ListAreaState:
m_SelectedInstanceIDs: b0290000
m_LastClickedInstanceID: 10672
m_SelectedInstanceIDs: 4a280000
m_LastClickedInstanceID: 10314
m_HadKeyboardFocusLastEvent: 0
m_ExpandedInstanceIDs: c62300000000000034ecffff
m_RenameOverlay:
@@ -805,6 +806,34 @@ MonoBehaviour:
m_SkipHiddenPackages: 0
m_DirectoriesAreaWidth: 164
--- !u!114 &11
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_Script: {fileID: 12003, guid: 0000000000000000e000000000000000, type: 0}
m_Name:
m_EditorClassIdentifier:
m_MinSize: {x: 100, y: 100}
m_MaxSize: {x: 4000, y: 4000}
m_TitleContent:
m_Text: Console
m_Image: {fileID: -4327648978806127646, guid: 0000000000000000d000000000000000, type: 0}
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 0
y: 436
width: 1047
height: 251
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
m_SaveData: []
--- !u!114 &12
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
@@ -825,9 +854,9 @@ MonoBehaviour:
m_Pos:
serializedVersion: 2
x: 0
y: 550
width: 1472
height: 449
y: 436
width: 1047
height: 251
m_ViewDataDictionary: {fileID: 0}
m_OverlayCanvas:
m_LastAppliedPresetName: Default
@@ -951,12 +980,12 @@ MonoBehaviour:
oldMaxSizes:
oldSplitSize: 0
m_HorizontalSplitter:
ID: 115
ID: 373
splitterInitialOffset: 299
currentActiveSplitter: -1
realSizes:
- 592
- 880
- 421
- 626
relativeSizes:
- 0.40213048
- 0.5978695
@@ -966,7 +995,7 @@ MonoBehaviour:
maxSizes:
- 0
- 0
lastTotalSize: 1472
lastTotalSize: 1047
splitSize: 6
xOffset: 0
m_Version: 1
@@ -980,7 +1009,7 @@ MonoBehaviour:
m_ShowReferencedBuses: 1
m_ShowBusConnections: 0
m_ShowBusConnectionsOfSelection: 0
--- !u!114 &12
--- !u!114 &13
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
@@ -999,14 +1028,14 @@ MonoBehaviour:
y: 0
width: 318
height: 635
m_MinSize: {x: 276, y: 71}
m_MaxSize: {x: 4001, y: 4021}
m_ActualView: {fileID: 13}
m_MinSize: {x: 275, y: 50}
m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 14}
m_Panes:
- {fileID: 13}
- {fileID: 14}
m_Selected: 0
m_LastSelected: 0
--- !u!114 &13
--- !u!114 &14
MonoBehaviour:
m_ObjectHideFlags: 52
m_CorrespondingSourceObject: {fileID: 0}
@@ -1040,7 +1069,7 @@ MonoBehaviour:
m_CachedPref: 160
m_ControlHash: -371814159
m_PrefName: Preview_InspectorPreview
m_LastInspectedObjectInstanceID: 10672
m_LastInspectedObjectInstanceID: 10314
m_LastVerticalScrollValue: 0
m_GlobalObjectId:
m_InspectorMode: 0

View File

@@ -119,7 +119,7 @@ MonoBehaviour:
m_MinSize: {x: 300, y: 200}
m_MaxSize: {x: 24288, y: 16192}
vertical: 0
controlID: 283
controlID: 5051
--- !u!114 &6
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -144,7 +144,7 @@ MonoBehaviour:
m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 16192, y: 16192}
vertical: 1
controlID: 222
controlID: 5129
--- !u!114 &7
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -169,7 +169,7 @@ MonoBehaviour:
m_MinSize: {x: 200, y: 100}
m_MaxSize: {x: 16192, y: 8096}
vertical: 0
controlID: 223
controlID: 5130
--- !u!114 &8
MonoBehaviour:
m_ObjectHideFlags: 52
@@ -189,8 +189,8 @@ MonoBehaviour:
y: 0
width: 204
height: 320
m_MinSize: {x: 201, y: 221}
m_MaxSize: {x: 4001, y: 4021}
m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 13}
m_Panes:
- {fileID: 13}
@@ -269,8 +269,8 @@ MonoBehaviour:
y: 0
width: 318
height: 635
m_MinSize: {x: 276, y: 71}
m_MaxSize: {x: 4001, y: 4021}
m_MinSize: {x: 275, y: 50}
m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 17}
m_Panes:
- {fileID: 17}
@@ -398,10 +398,10 @@ MonoBehaviour:
m_SaveData: []
m_SceneHierarchy:
m_TreeViewState:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
scrollPos: {x: 0, y: 1578}
m_SelectedIDs: 48770000
m_LastClickedID: 0
m_ExpandedIDs: 1efbffff
m_ExpandedIDs: 80c1fffffcc1ffff9ec5ffffbcc5ffff20fbffff02fe000036fe000076ff0000200301003c030100b0030100bc030100020401007804010092050100560601008c060100c6060100ce060100ea070100ee070100
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@@ -705,9 +705,9 @@ MonoBehaviour:
m_PlayAudio: 0
m_AudioPlay: 0
m_Position:
m_Target: {x: -6.77928, y: 1.6319876, z: 0.114865065}
m_Target: {x: 1.2482973, y: -5.416713, z: 0.06453486}
speed: 2
m_Value: {x: -6.77928, y: 1.6319876, z: 0.114865065}
m_Value: {x: 1.2482973, y: -5.416713, z: 0.06453486}
m_RenderMode: 0
m_CameraMode:
drawMode: 0
@@ -758,9 +758,9 @@ MonoBehaviour:
speed: 2
m_Value: {x: 0, y: 0, z: 0, w: 1}
m_Size:
m_Target: 8.167332
m_Target: 14.705635
speed: 2
m_Value: 8.167332
m_Value: 14.705635
m_Ortho:
m_Target: 1
speed: 2
@@ -826,21 +826,21 @@ MonoBehaviour:
m_SkipHidden: 0
m_SearchArea: 1
m_Folders:
- Assets/Scripts
- Assets
m_Globs: []
m_OriginalText:
m_ViewMode: 1
m_StartGridSize: 71
m_LastFolders:
- Assets/Scripts
- Assets
m_LastFoldersGridSize: 71
m_LastProjectPath: C:\dev\find the source
m_LockTracker:
m_IsLocked: 0
m_FolderTreeState:
scrollPos: {x: 0, y: 0}
m_SelectedIDs: 60770000
m_LastClickedID: 30560
m_SelectedIDs: 48770000
m_LastClickedID: 30536
m_ExpandedIDs: 000000004877000000ca9a3bffffff7f
m_RenameOverlay:
m_UserAcceptedRename: 0