username handler, timer
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -42,17 +42,17 @@ public class CoinCounter : MonoBehaviour
|
|||||||
coin += number;
|
coin += number;
|
||||||
coinCounterUI.text = "Coins: " + coin.ToString();
|
coinCounterUI.text = "Coins: " + coin.ToString();
|
||||||
|
|
||||||
writer = new StreamWriter(path, false, Encoding.Default);
|
/*writer = new StreamWriter(path, false, Encoding.Default);
|
||||||
writer.Write(coin);
|
writer.Write(coin);
|
||||||
writer.Close();
|
writer.Close();*/
|
||||||
}
|
}
|
||||||
|
|
||||||
public void RemoveCoin(ulong number){
|
public void RemoveCoin(ulong number){
|
||||||
coin -= number;
|
coin -= number;
|
||||||
//coinCounterUI.text = "Coins: " + coin.ToString();
|
//coinCounterUI.text = "Coins: " + coin.ToString();
|
||||||
|
|
||||||
writer = new StreamWriter(path, false, Encoding.Default);
|
/*writer = new StreamWriter(path, false, Encoding.Default);
|
||||||
writer.Write(coin);
|
writer.Write(coin);
|
||||||
writer.Close();
|
writer.Close();*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,12 +5,12 @@ using UnityEngine;
|
|||||||
public class DestroyObjects : MonoBehaviour
|
public class DestroyObjects : MonoBehaviour
|
||||||
{
|
{
|
||||||
private void OnTriggerEnter(Collider other) {
|
private void OnTriggerEnter(Collider other) {
|
||||||
Debug.Log("destroy wall trigger");
|
//Debug.Log("destroy wall trigger");
|
||||||
Destroy(other.gameObject);
|
Destroy(other.gameObject);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void OnCollisionEnter(Collision other) {
|
private void OnCollisionEnter(Collision other) {
|
||||||
Debug.Log("collision enter");
|
//Debug.Log("collision enter");
|
||||||
Destroy(other.gameObject);
|
Destroy(other.gameObject);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,8 @@ using System.Collections.Generic;
|
|||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
using TMPro;
|
using TMPro;
|
||||||
using UnityEngine.Networking;
|
using UnityEngine.Networking;
|
||||||
|
using System.IO;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
public class DatabaseData : MonoBehaviour
|
public class DatabaseData : MonoBehaviour
|
||||||
{
|
{
|
||||||
@@ -10,25 +12,29 @@ public class DatabaseData : MonoBehaviour
|
|||||||
public PlayerList players; //jatekos adatok
|
public PlayerList players; //jatekos adatok
|
||||||
public HighScoreTableDataContainer htdc; //itt van a tomb
|
public HighScoreTableDataContainer htdc; //itt van a tomb
|
||||||
public HighScoreTable hst; //high score table ui
|
public HighScoreTable hst; //high score table ui
|
||||||
|
|
||||||
|
private StreamWriter writer;
|
||||||
public string jsondata; //json szoveg
|
public string jsondata; //json szoveg
|
||||||
|
|
||||||
private CoinCounter coinc;
|
private CoinCounter coinc;
|
||||||
|
|
||||||
private ulong coins = 0;
|
public ulong coins = 0;
|
||||||
|
|
||||||
private void Awake() {
|
private void Awake() {
|
||||||
hst = FindObjectOfType<HighScoreTable>(); //High Score Table referencia
|
hst = FindObjectOfType<HighScoreTable>(); //High Score Table referencia
|
||||||
htdc = new HighScoreTableDataContainer(); //High Score Table Container objektum
|
htdc = new HighScoreTableDataContainer(); //High Score Table Container objektum
|
||||||
players = new PlayerList(); //jatekos lista osztaly
|
|
||||||
coinc = FindObjectOfType<CoinCounter>();
|
coinc = FindObjectOfType<CoinCounter>();
|
||||||
|
//writer = new StreamWriter(Application.persistentDataPath + "/coins.txt", false, Encoding.Default);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Start() {
|
private void Start() {
|
||||||
//GetHighScoreData(2);
|
//GetHighScoreData();
|
||||||
//StartCoroutine(GetCoinData(1));
|
//StartCoroutine(GetCoinData(1));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void jsonParser(string jsondata) { //beerkezo json adat eltarolasa
|
public void jsonParser(string jsondata) { //beerkezo json adat eltarolasa
|
||||||
|
players = new PlayerList(); //jatekos lista osztaly
|
||||||
players = JsonUtility.FromJson<PlayerList>("{\"player\":" + jsondata + "}");
|
players = JsonUtility.FromJson<PlayerList>("{\"player\":" + jsondata + "}");
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -36,16 +42,23 @@ public class DatabaseData : MonoBehaviour
|
|||||||
htdc = JsonUtility.FromJson<HighScoreTableDataContainer>("{\"htd\":" + jsondata + "}");
|
htdc = JsonUtility.FromJson<HighScoreTableDataContainer>("{\"htd\":" + jsondata + "}");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void jsonParserCoin(string jsondata){
|
public void ParserCoin(string jsondata){
|
||||||
coins = ulong.Parse(jsondata.Substring(14,2));
|
string data = "";
|
||||||
Debug.Log(jsondata.Substring(14,2));
|
for (int i = 0; i < jsondata.Length; i++)
|
||||||
|
{
|
||||||
|
if(jsondata[i] == '0' || jsondata[i] == '1' || jsondata[i] == '2' || jsondata[i] == '3' || jsondata[i] == '4' || jsondata[i] == '5' || jsondata[i] == '6' || jsondata[i] == '7' || jsondata[i] == '8' || jsondata[i] == '9'){
|
||||||
|
data += jsondata[i]; //kiszedi a szamokat a stringbol
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Debug.Log(data);
|
||||||
|
coins = ulong.Parse(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
//fuggvenyek amik meghivjak a rutint
|
//fuggvenyek amik meghivjak a rutint
|
||||||
public void GetPlayerData() => StartCoroutine(IGetPlayerData());
|
public void GetPlayerData() => StartCoroutine(IGetPlayerData());
|
||||||
public void GetHighScoreData(int palya_id) => StartCoroutine(IGetHighScoreData(palya_id));
|
public void GetHighScoreData() => StartCoroutine(IGetHighScoreData());
|
||||||
public void PostNewPlayerData() => StartCoroutine(IPostNewPlayerData());
|
public void PostNewPlayerData() => StartCoroutine(IPostNewPlayerData());
|
||||||
public void PostNewScoreData() => StartCoroutine(IPostNewScoreData());
|
public void PostNewScoreData(int playerid, ulong score, string time) => StartCoroutine(IPostNewScoreData(playerid, score, time));
|
||||||
public void PostNewPalyaData() => StartCoroutine(IPostNewPalyaData());
|
public void PostNewPalyaData() => StartCoroutine(IPostNewPalyaData());
|
||||||
|
|
||||||
public ulong GetCoins(int userid){
|
public ulong GetCoins(int userid){
|
||||||
@@ -70,7 +83,7 @@ public class DatabaseData : MonoBehaviour
|
|||||||
} else {
|
} else {
|
||||||
jsondata = uwr.downloadHandler.text; //json szoveg eltarolasa
|
jsondata = uwr.downloadHandler.text; //json szoveg eltarolasa
|
||||||
Debug.Log(jsondata);
|
Debug.Log(jsondata);
|
||||||
jsonParserCoin(jsondata);
|
ParserCoin(jsondata);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -128,12 +141,12 @@ public class DatabaseData : MonoBehaviour
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private IEnumerator IGetHighScoreData(int palya_id){
|
private IEnumerator IGetHighScoreData(){
|
||||||
string uri = "http://localhost:3000/toplist";
|
string uri = "http://localhost:3000/toplist";
|
||||||
|
|
||||||
var uwr = new UnityWebRequest(uri, "POST");
|
var uwr = new UnityWebRequest(uri, "POST");
|
||||||
byte[] jsonToSend = new System.Text.UTF8Encoding().GetBytes("{\"bevitel1\":"+palya_id+"}"); //palya id megadasa
|
//byte[] jsonToSend = new System.Text.UTF8Encoding().GetBytes("{\"bevitel1\":"+palya_id+"}"); //palya id megadasa
|
||||||
uwr.uploadHandler = (UploadHandler)new UploadHandlerRaw(jsonToSend); //felkuldi a palya id-t
|
//uwr.uploadHandler = (UploadHandler)new UploadHandlerRaw(jsonToSend); //felkuldi a palya id-t
|
||||||
uwr.downloadHandler = (DownloadHandler)new DownloadHandlerBuffer();
|
uwr.downloadHandler = (DownloadHandler)new DownloadHandlerBuffer();
|
||||||
uwr.SetRequestHeader("Content-Type", "application/json");
|
uwr.SetRequestHeader("Content-Type", "application/json");
|
||||||
|
|
||||||
@@ -213,14 +226,21 @@ public class DatabaseData : MonoBehaviour
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private IEnumerator IPostNewScoreData() {
|
private IEnumerator IPostNewScoreData(int playerid, ulong score, string time) {
|
||||||
//input.text = "loading...";
|
//input.text = "loading...";
|
||||||
|
|
||||||
string uri = "http://localhost:3000/newscore";
|
string uri = "http://localhost:3000/newscore";
|
||||||
|
|
||||||
|
//felhasznalonevet ki kell irni fajlba
|
||||||
|
//ha username keresve lenne es ha nincs akkor kap egy uj id-t ami ideiglenesen tarolodik (ures string a visszateres?)
|
||||||
|
//ha van akkor akkor lekeri az id-t es ideiglenesen tarolja
|
||||||
|
|
||||||
|
|
||||||
var uwr = new UnityWebRequest(uri, "POST");
|
var uwr = new UnityWebRequest(uri, "POST");
|
||||||
byte[] jsonToSend =
|
byte[] jsonToSend =
|
||||||
new System.Text.UTF8Encoding().GetBytes("{\"bevitel1\":2,\"bevitel2\":1,\"bevitel3\":400,\"bevitel4\":\"00:05:06\"}");
|
new System.Text.UTF8Encoding().GetBytes("{\"bevitel1\":"+playerid+",\"bevitel2\":400,\"bevitel3\":\"00:05:06\"}");
|
||||||
|
//playerid, points, time
|
||||||
|
|
||||||
uwr.uploadHandler = (UploadHandler)new UploadHandlerRaw(jsonToSend);
|
uwr.uploadHandler = (UploadHandler)new UploadHandlerRaw(jsonToSend);
|
||||||
uwr.downloadHandler = (DownloadHandler)new DownloadHandlerBuffer();
|
uwr.downloadHandler = (DownloadHandler)new DownloadHandlerBuffer();
|
||||||
uwr.SetRequestHeader("Content-Type", "application/json");
|
uwr.SetRequestHeader("Content-Type", "application/json");
|
||||||
|
|||||||
@@ -23,7 +23,7 @@ public class SceneUIManager : MonoBehaviour
|
|||||||
SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex + 1);
|
SceneManager.LoadScene(SceneManager.GetActiveScene().buildIndex + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void LoadScene(int sceneIndex) {
|
public static void LoadScene(int sceneIndex) {
|
||||||
SceneManager.LoadScene(sceneIndex);
|
SceneManager.LoadScene(sceneIndex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
26
Assets/Scripts/Timer.cs
Normal file
26
Assets/Scripts/Timer.cs
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
using System.Collections;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using UnityEngine;
|
||||||
|
using System.Diagnostics;
|
||||||
|
using TMPro;
|
||||||
|
|
||||||
|
|
||||||
|
public class Timer : MonoBehaviour
|
||||||
|
{
|
||||||
|
public Stopwatch playTime;
|
||||||
|
|
||||||
|
public TMP_Text time;
|
||||||
|
|
||||||
|
private void Awake() {
|
||||||
|
playTime = new Stopwatch();
|
||||||
|
}
|
||||||
|
private void Update() {
|
||||||
|
time.text = playTime.Elapsed.Seconds.ToString();
|
||||||
|
}
|
||||||
|
|
||||||
|
public string convertTimeToString(){
|
||||||
|
UnityEngine.Debug.Log(playTime.Elapsed.ToString(@"hh\:mm\:ss"));
|
||||||
|
return playTime.Elapsed.ToString(@"hh\:mm\:ss");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
11
Assets/Scripts/Timer.cs.meta
Normal file
11
Assets/Scripts/Timer.cs.meta
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 3c0512d5f0582734f99e51ebfb533bc4
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
96
Assets/Scripts/UsernameHandler.cs
Normal file
96
Assets/Scripts/UsernameHandler.cs
Normal file
@@ -0,0 +1,96 @@
|
|||||||
|
using System.Collections;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using UnityEngine;
|
||||||
|
using System.IO;
|
||||||
|
using System.Text;
|
||||||
|
using TMPro;
|
||||||
|
|
||||||
|
public class UsernameHandler : MonoBehaviour
|
||||||
|
{
|
||||||
|
public string username; //playerlistbe benne van az id-val
|
||||||
|
public int userid;
|
||||||
|
private string path;
|
||||||
|
|
||||||
|
public TMP_InputField input;
|
||||||
|
public GameObject inputBackground;
|
||||||
|
public Canvas usernameInputCanvas;
|
||||||
|
|
||||||
|
private StreamWriter writer;
|
||||||
|
private StreamReader reader;
|
||||||
|
private DatabaseData db;
|
||||||
|
private PlayerList playerList;
|
||||||
|
|
||||||
|
private void Awake() {
|
||||||
|
input.gameObject.SetActive(false);
|
||||||
|
inputBackground.SetActive(false);
|
||||||
|
path = Application.persistentDataPath + "/username.txt";
|
||||||
|
db = FindObjectOfType<DatabaseData>();
|
||||||
|
db.GetPlayerData();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Start() {
|
||||||
|
usernameCheck();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void ReadUsername(string username){ //kiirja az inputbol kapott usernevet fajlba
|
||||||
|
this.username = username;
|
||||||
|
Debug.Log(this.username);
|
||||||
|
|
||||||
|
writer = new StreamWriter(path, false, Encoding.Default);
|
||||||
|
writer.Write(username);
|
||||||
|
writer.Close();
|
||||||
|
|
||||||
|
input.gameObject.SetActive(false);
|
||||||
|
inputBackground.SetActive(false);
|
||||||
|
usernameInputCanvas.gameObject.SetActive(false);
|
||||||
|
|
||||||
|
getId();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void getId(){
|
||||||
|
foreach(var item in db.players.player){
|
||||||
|
if(item.player_name.Equals(username)){
|
||||||
|
userid = item.player_id;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void usernameCheck(){
|
||||||
|
string data = "";
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
reader = new StreamReader(path);
|
||||||
|
}
|
||||||
|
catch (System.IO.FileNotFoundException)
|
||||||
|
{
|
||||||
|
//ha nem letezik a fajl aktivalja az inputot
|
||||||
|
usernameInputCanvas.gameObject.SetActive(true);
|
||||||
|
inputBackground.SetActive(true);
|
||||||
|
input.gameObject.SetActive(true);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
if(File.Exists(path)){
|
||||||
|
while(!reader.EndOfStream){
|
||||||
|
data += reader.ReadLine();
|
||||||
|
}
|
||||||
|
|
||||||
|
if(data.Equals("")){ //nincs username meg
|
||||||
|
usernameInputCanvas.gameObject.SetActive(true);
|
||||||
|
input.gameObject.SetActive(true);
|
||||||
|
inputBackground.SetActive(true);
|
||||||
|
}else{
|
||||||
|
//van username
|
||||||
|
username = data;
|
||||||
|
Debug.Log("username: " + username);
|
||||||
|
|
||||||
|
getId();
|
||||||
|
|
||||||
|
input.gameObject.SetActive(false);
|
||||||
|
inputBackground.SetActive(false);
|
||||||
|
usernameInputCanvas.gameObject.SetActive(false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
11
Assets/Scripts/UsernameHandler.cs.meta
Normal file
11
Assets/Scripts/UsernameHandler.cs.meta
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: d6b767d38cbe50a4d85298df361ad2aa
|
||||||
|
MonoImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
serializedVersion: 2
|
||||||
|
defaultReferences: []
|
||||||
|
executionOrder: 0
|
||||||
|
icon: {instanceID: 0}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@@ -11,7 +11,7 @@ public class WallCollision : MonoBehaviour
|
|||||||
if(other.gameObject.tag == "Player"){
|
if(other.gameObject.tag == "Player"){
|
||||||
|
|
||||||
Debug.Log("neki ment a falnak");
|
Debug.Log("neki ment a falnak");
|
||||||
jatekmanager.UpdateGameState(jatekmanager.GameState.Meghaltal);
|
jatekmanager.Instance.UpdateGameState(jatekmanager.GameState.Meghaltal);
|
||||||
/*#if UNITY_EDITOR
|
/*#if UNITY_EDITOR
|
||||||
EditorApplication.isPlaying = false;
|
EditorApplication.isPlaying = false;
|
||||||
#else
|
#else
|
||||||
|
|||||||
@@ -22,14 +22,24 @@ public class jatekmanager : MonoBehaviour
|
|||||||
public GameObject settingsGomb;
|
public GameObject settingsGomb;
|
||||||
public GameObject shopGomb;
|
public GameObject shopGomb;
|
||||||
|
|
||||||
|
|
||||||
|
private DatabaseData db;
|
||||||
|
private UsernameHandler usernameHandler;
|
||||||
|
private Score score;
|
||||||
|
private Timer timer;
|
||||||
|
|
||||||
private void Awake()
|
private void Awake()
|
||||||
{
|
{
|
||||||
|
Application.targetFrameRate = 60;
|
||||||
Instance = this;
|
Instance = this;
|
||||||
|
db = FindObjectOfType<DatabaseData>();
|
||||||
|
usernameHandler = FindObjectOfType<UsernameHandler>();
|
||||||
|
score = FindObjectOfType<Score>();
|
||||||
|
timer = FindObjectOfType<Timer>();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Start()
|
private void Start()
|
||||||
{
|
{
|
||||||
|
|
||||||
UpdateGameState(GameState.Home);
|
UpdateGameState(GameState.Home);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -114,10 +124,10 @@ public class jatekmanager : MonoBehaviour
|
|||||||
|
|
||||||
public void ChangeToGame()
|
public void ChangeToGame()
|
||||||
{
|
{
|
||||||
UpdateGameState(GameState.Game);
|
|
||||||
homeGomb.SetActive(false);
|
homeGomb.SetActive(false);
|
||||||
settingsGomb.SetActive(false);
|
settingsGomb.SetActive(false);
|
||||||
shopGomb.SetActive(false);
|
shopGomb.SetActive(false);
|
||||||
|
UpdateGameState(GameState.Game);
|
||||||
}
|
}
|
||||||
|
|
||||||
IEnumerator TimerGame()
|
IEnumerator TimerGame()
|
||||||
@@ -132,6 +142,7 @@ public class jatekmanager : MonoBehaviour
|
|||||||
StartCoroutine(TimerGame());
|
StartCoroutine(TimerGame());
|
||||||
GetComponent <GroundController> ().enabled = true;
|
GetComponent <GroundController> ().enabled = true;
|
||||||
GetComponent <PlayerController>().enabled = true;
|
GetComponent <PlayerController>().enabled = true;
|
||||||
|
timer.playTime.Start();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void ChangeToMeghaltal()
|
public void ChangeToMeghaltal()
|
||||||
@@ -141,15 +152,21 @@ public class jatekmanager : MonoBehaviour
|
|||||||
|
|
||||||
private async void HandleMeghaltal()
|
private async void HandleMeghaltal()
|
||||||
{
|
{
|
||||||
playButton.SetActive(false);
|
//ora leallitasa
|
||||||
|
timer.playTime.Stop();
|
||||||
|
|
||||||
|
//Valtson at high score tabla scenebe utana ha megnyomott egy gombot ugy menjen vissza a menube
|
||||||
|
//toltse fel az adatokat a run-rol
|
||||||
|
db.PostNewScoreData(usernameHandler.userid, score.score, timer.convertTimeToString());
|
||||||
|
|
||||||
|
SceneUIManager.LoadScene(1); //HighScore scene
|
||||||
|
|
||||||
|
//
|
||||||
|
|
||||||
|
/*playButton.SetActive(false);
|
||||||
homeGomb.SetActive(true);
|
homeGomb.SetActive(true);
|
||||||
GetComponent<GroundController>().enabled = false;
|
GetComponent<GroundController>().enabled = false;
|
||||||
GetComponent<PlayerController>().enabled = false;
|
GetComponent<PlayerController>().enabled = false;
|
||||||
garazs.SetActive(true);
|
garazs.SetActive(true);*/
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//application target frame rate
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -7,9 +7,7 @@ public class menumanager : MonoBehaviour
|
|||||||
{
|
{
|
||||||
public CinemachineVirtualCamera currentCamera;
|
public CinemachineVirtualCamera currentCamera;
|
||||||
|
|
||||||
|
private void Start()
|
||||||
// Start is called before the first frame update
|
|
||||||
void Start()
|
|
||||||
{
|
{
|
||||||
currentCamera.Priority++;
|
currentCamera.Priority++;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,6 +6,9 @@ EditorBuildSettings:
|
|||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
m_Scenes:
|
m_Scenes:
|
||||||
- enabled: 1
|
- enabled: 1
|
||||||
path: Assets/Scenes/EndlessRunnerTest.unity
|
path: Assets/Scenes/Menu.unity
|
||||||
guid: 704dd654004d8294087e65b01ffe8600
|
guid: 2c9904e4e33324124a047ffe8b573c9e
|
||||||
|
- enabled: 1
|
||||||
|
path: Assets/Scenes/HighScore.unity
|
||||||
|
guid: 8de1c3d971ab3e84780f2c43947a29ec
|
||||||
m_configObjects: {}
|
m_configObjects: {}
|
||||||
|
|||||||
@@ -15,6 +15,9 @@ EditorUserSettings:
|
|||||||
value: 5401000201035c0f5d5e582648710644464f4f2f7a7d24607c2f1b36bab66468
|
value: 5401000201035c0f5d5e582648710644464f4f2f7a7d24607c2f1b36bab66468
|
||||||
flags: 0
|
flags: 0
|
||||||
RecentlyUsedSceneGuid-3:
|
RecentlyUsedSceneGuid-3:
|
||||||
|
value: 5357075101505a0f5b5e0f7745740d4446161a7d79787035287f4a32b3e3303e
|
||||||
|
flags: 0
|
||||||
|
RecentlyUsedSceneGuid-4:
|
||||||
value: 51520d5f55010c0f085d5f7142770e424216487e7b2e2035752b4864b1e36d3d
|
value: 51520d5f55010c0f085d5f7142770e424216487e7b2e2035752b4864b1e36d3d
|
||||||
flags: 0
|
flags: 0
|
||||||
UnityRemoteCompression:
|
UnityRemoteCompression:
|
||||||
|
|||||||
967
UserSettings/Layouts/default-2021.dwlt
Normal file
967
UserSettings/Layouts/default-2021.dwlt
Normal file
@@ -0,0 +1,967 @@
|
|||||||
|
%YAML 1.1
|
||||||
|
%TAG !u! tag:unity3d.com,2011:
|
||||||
|
--- !u!114 &1
|
||||||
|
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: 1
|
||||||
|
m_Script: {fileID: 12004, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_PixelRect:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 43
|
||||||
|
width: 1920
|
||||||
|
height: 997
|
||||||
|
m_ShowMode: 4
|
||||||
|
m_Title: Hierarchy
|
||||||
|
m_RootView: {fileID: 7}
|
||||||
|
m_MinSize: {x: 875, y: 300}
|
||||||
|
m_MaxSize: {x: 10000, y: 10000}
|
||||||
|
m_Maximized: 1
|
||||||
|
--- !u!114 &2
|
||||||
|
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: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name: SimulatorWindow
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Children: []
|
||||||
|
m_Position:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 1098
|
||||||
|
y: 0
|
||||||
|
width: 368
|
||||||
|
height: 561
|
||||||
|
m_MinSize: {x: 202, y: 221}
|
||||||
|
m_MaxSize: {x: 4002, y: 4021}
|
||||||
|
m_ActualView: {fileID: 13}
|
||||||
|
m_Panes:
|
||||||
|
- {fileID: 13}
|
||||||
|
m_Selected: 0
|
||||||
|
m_LastSelected: 0
|
||||||
|
--- !u!114 &3
|
||||||
|
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: 1
|
||||||
|
m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Children:
|
||||||
|
- {fileID: 10}
|
||||||
|
- {fileID: 4}
|
||||||
|
m_Position:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 30
|
||||||
|
width: 1920
|
||||||
|
height: 947
|
||||||
|
m_MinSize: {x: 400, y: 200}
|
||||||
|
m_MaxSize: {x: 32384, y: 16192}
|
||||||
|
vertical: 0
|
||||||
|
controlID: 17
|
||||||
|
--- !u!114 &4
|
||||||
|
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: 1
|
||||||
|
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Children: []
|
||||||
|
m_Position:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 1466
|
||||||
|
y: 0
|
||||||
|
width: 454
|
||||||
|
height: 947
|
||||||
|
m_MinSize: {x: 276, y: 71}
|
||||||
|
m_MaxSize: {x: 4001, y: 4021}
|
||||||
|
m_ActualView: {fileID: 15}
|
||||||
|
m_Panes:
|
||||||
|
- {fileID: 15}
|
||||||
|
m_Selected: 0
|
||||||
|
m_LastSelected: 0
|
||||||
|
--- !u!114 &5
|
||||||
|
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: 1
|
||||||
|
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Children: []
|
||||||
|
m_Position:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 268
|
||||||
|
height: 561
|
||||||
|
m_MinSize: {x: 201, y: 221}
|
||||||
|
m_MaxSize: {x: 4001, y: 4021}
|
||||||
|
m_ActualView: {fileID: 16}
|
||||||
|
m_Panes:
|
||||||
|
- {fileID: 16}
|
||||||
|
m_Selected: 0
|
||||||
|
m_LastSelected: 0
|
||||||
|
--- !u!114 &6
|
||||||
|
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: 1
|
||||||
|
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name: ProjectBrowser
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Children: []
|
||||||
|
m_Position:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 561
|
||||||
|
width: 1466
|
||||||
|
height: 386
|
||||||
|
m_MinSize: {x: 231, y: 271}
|
||||||
|
m_MaxSize: {x: 10001, y: 10021}
|
||||||
|
m_ActualView: {fileID: 14}
|
||||||
|
m_Panes:
|
||||||
|
- {fileID: 14}
|
||||||
|
- {fileID: 18}
|
||||||
|
m_Selected: 0
|
||||||
|
m_LastSelected: 1
|
||||||
|
--- !u!114 &7
|
||||||
|
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: 1
|
||||||
|
m_Script: {fileID: 12008, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Children:
|
||||||
|
- {fileID: 8}
|
||||||
|
- {fileID: 3}
|
||||||
|
- {fileID: 9}
|
||||||
|
m_Position:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1920
|
||||||
|
height: 997
|
||||||
|
m_MinSize: {x: 875, y: 300}
|
||||||
|
m_MaxSize: {x: 10000, y: 10000}
|
||||||
|
m_UseTopView: 1
|
||||||
|
m_TopViewHeight: 30
|
||||||
|
m_UseBottomView: 1
|
||||||
|
m_BottomViewHeight: 20
|
||||||
|
--- !u!114 &8
|
||||||
|
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: 1
|
||||||
|
m_Script: {fileID: 12011, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Children: []
|
||||||
|
m_Position:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1920
|
||||||
|
height: 30
|
||||||
|
m_MinSize: {x: 0, y: 0}
|
||||||
|
m_MaxSize: {x: 0, y: 0}
|
||||||
|
m_LastLoadedLayoutName:
|
||||||
|
--- !u!114 &9
|
||||||
|
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: 1
|
||||||
|
m_Script: {fileID: 12042, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Children: []
|
||||||
|
m_Position:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 977
|
||||||
|
width: 1920
|
||||||
|
height: 20
|
||||||
|
m_MinSize: {x: 0, y: 0}
|
||||||
|
m_MaxSize: {x: 0, y: 0}
|
||||||
|
--- !u!114 &10
|
||||||
|
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: 1
|
||||||
|
m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Children:
|
||||||
|
- {fileID: 11}
|
||||||
|
- {fileID: 6}
|
||||||
|
m_Position:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1466
|
||||||
|
height: 947
|
||||||
|
m_MinSize: {x: 300, y: 200}
|
||||||
|
m_MaxSize: {x: 24288, y: 16192}
|
||||||
|
vertical: 1
|
||||||
|
controlID: 28
|
||||||
|
--- !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: 1
|
||||||
|
m_Script: {fileID: 12010, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Children:
|
||||||
|
- {fileID: 5}
|
||||||
|
- {fileID: 12}
|
||||||
|
- {fileID: 2}
|
||||||
|
m_Position:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 0
|
||||||
|
width: 1466
|
||||||
|
height: 561
|
||||||
|
m_MinSize: {x: 300, y: 100}
|
||||||
|
m_MaxSize: {x: 24288, y: 8096}
|
||||||
|
vertical: 0
|
||||||
|
controlID: 29
|
||||||
|
--- !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: 1
|
||||||
|
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name: SceneView
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_Children: []
|
||||||
|
m_Position:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 268
|
||||||
|
y: 0
|
||||||
|
width: 830
|
||||||
|
height: 561
|
||||||
|
m_MinSize: {x: 202, y: 221}
|
||||||
|
m_MaxSize: {x: 4002, y: 4021}
|
||||||
|
m_ActualView: {fileID: 17}
|
||||||
|
m_Panes:
|
||||||
|
- {fileID: 17}
|
||||||
|
m_Selected: 0
|
||||||
|
m_LastSelected: 0
|
||||||
|
--- !u!114 &13
|
||||||
|
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: 13974, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_MinSize: {x: 200, y: 200}
|
||||||
|
m_MaxSize: {x: 4000, y: 4000}
|
||||||
|
m_TitleContent:
|
||||||
|
m_Text: Simulator
|
||||||
|
m_Image: {fileID: 8720083202187608617, guid: 0000000000000000d000000000000000, type: 0}
|
||||||
|
m_Tooltip:
|
||||||
|
m_Pos:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 1098
|
||||||
|
y: 73
|
||||||
|
width: 366
|
||||||
|
height: 540
|
||||||
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
|
m_OverlayCanvas:
|
||||||
|
m_LastAppliedPresetName: Default
|
||||||
|
m_SaveData: []
|
||||||
|
m_SerializedViewNames:
|
||||||
|
- UnityEditor.GameView
|
||||||
|
m_SerializedViewValues:
|
||||||
|
- E:\dev\zarodolgozat\ColorBall\Library\PlayModeViewStates\d37f4d37044bc904d918863a12d71cb6
|
||||||
|
m_PlayModeViewName: Device Simulator
|
||||||
|
m_ShowGizmos: 0
|
||||||
|
m_TargetDisplay: 0
|
||||||
|
m_ClearColor: {r: 0, g: 0, b: 0, a: 1}
|
||||||
|
m_TargetSize: {x: 1170, y: 2532}
|
||||||
|
m_TextureFilterMode: 0
|
||||||
|
m_TextureHideFlags: 61
|
||||||
|
m_RenderIMGUI: 1
|
||||||
|
m_EnterPlayModeBehavior: 2
|
||||||
|
m_UseMipMap: 0
|
||||||
|
m_SimulatorState:
|
||||||
|
controlPanelVisible: 0
|
||||||
|
controlPanelWidth: 0
|
||||||
|
controlPanelFoldoutKeys:
|
||||||
|
- UnityEditor.DeviceSimulation.ApplicationSettingsPlugin
|
||||||
|
controlPanelFoldoutValues: 00
|
||||||
|
pluginNames:
|
||||||
|
- UnityEditor.DeviceSimulation.ApplicationSettingsPlugin
|
||||||
|
pluginStates:
|
||||||
|
- '{}'
|
||||||
|
scale: 19
|
||||||
|
fitToScreenEnabled: 1
|
||||||
|
rotationDegree: 0
|
||||||
|
highlightSafeAreaEnabled: 0
|
||||||
|
friendlyName: Apple iPhone 13 Pro
|
||||||
|
networkReachability: 1
|
||||||
|
systemLanguage: 10
|
||||||
|
--- !u!114 &14
|
||||||
|
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: 1
|
||||||
|
m_Script: {fileID: 12014, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_MinSize: {x: 230, y: 250}
|
||||||
|
m_MaxSize: {x: 10000, y: 10000}
|
||||||
|
m_TitleContent:
|
||||||
|
m_Text: Project
|
||||||
|
m_Image: {fileID: -5467254957812901981, guid: 0000000000000000d000000000000000, type: 0}
|
||||||
|
m_Tooltip:
|
||||||
|
m_Pos:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 634
|
||||||
|
width: 1465
|
||||||
|
height: 365
|
||||||
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
|
m_OverlayCanvas:
|
||||||
|
m_LastAppliedPresetName: Default
|
||||||
|
m_SaveData: []
|
||||||
|
m_SearchFilter:
|
||||||
|
m_NameFilter:
|
||||||
|
m_ClassNames: []
|
||||||
|
m_AssetLabels: []
|
||||||
|
m_AssetBundleNames: []
|
||||||
|
m_VersionControlStates: []
|
||||||
|
m_SoftLockControlStates: []
|
||||||
|
m_ReferencingInstanceIDs:
|
||||||
|
m_SceneHandles:
|
||||||
|
m_ShowAllHits: 0
|
||||||
|
m_SkipHidden: 0
|
||||||
|
m_SearchArea: 1
|
||||||
|
m_Folders:
|
||||||
|
- Assets/Scripts
|
||||||
|
m_Globs: []
|
||||||
|
m_OriginalText:
|
||||||
|
m_ViewMode: 1
|
||||||
|
m_StartGridSize: 78
|
||||||
|
m_LastFolders:
|
||||||
|
- Assets/Scripts
|
||||||
|
m_LastFoldersGridSize: 78
|
||||||
|
m_LastProjectPath: E:\dev\zarodolgozat\ColorBall
|
||||||
|
m_LockTracker:
|
||||||
|
m_IsLocked: 0
|
||||||
|
m_FolderTreeState:
|
||||||
|
scrollPos: {x: 0, y: 0}
|
||||||
|
m_SelectedIDs: 606c0000
|
||||||
|
m_LastClickedID: 27744
|
||||||
|
m_ExpandedIDs: 00000000486c0000
|
||||||
|
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: 1
|
||||||
|
m_ClientGUIView: {fileID: 0}
|
||||||
|
m_SearchString:
|
||||||
|
m_CreateAssetUtility:
|
||||||
|
m_EndAction: {fileID: 0}
|
||||||
|
m_InstanceID: 0
|
||||||
|
m_Path:
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_ResourceFile:
|
||||||
|
m_AssetTreeState:
|
||||||
|
scrollPos: {x: 0, y: 0}
|
||||||
|
m_SelectedIDs:
|
||||||
|
m_LastClickedID: 0
|
||||||
|
m_ExpandedIDs: 00000000486c0000
|
||||||
|
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: 1
|
||||||
|
m_ClientGUIView: {fileID: 0}
|
||||||
|
m_SearchString:
|
||||||
|
m_CreateAssetUtility:
|
||||||
|
m_EndAction: {fileID: 0}
|
||||||
|
m_InstanceID: 0
|
||||||
|
m_Path:
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_ResourceFile:
|
||||||
|
m_ListAreaState:
|
||||||
|
m_SelectedInstanceIDs:
|
||||||
|
m_LastClickedInstanceID: 0
|
||||||
|
m_HadKeyboardFocusLastEvent: 0
|
||||||
|
m_ExpandedInstanceIDs: c6230000
|
||||||
|
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: 1
|
||||||
|
m_ClientGUIView: {fileID: 6}
|
||||||
|
m_CreateAssetUtility:
|
||||||
|
m_EndAction: {fileID: 0}
|
||||||
|
m_InstanceID: 0
|
||||||
|
m_Path:
|
||||||
|
m_Icon: {fileID: 0}
|
||||||
|
m_ResourceFile:
|
||||||
|
m_NewAssetIndexInList: -1
|
||||||
|
m_ScrollPosition: {x: 0, y: 0}
|
||||||
|
m_GridSize: 78
|
||||||
|
m_SkipHiddenPackages: 0
|
||||||
|
m_DirectoriesAreaWidth: 207
|
||||||
|
--- !u!114 &15
|
||||||
|
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: 1
|
||||||
|
m_Script: {fileID: 12019, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_MinSize: {x: 275, y: 50}
|
||||||
|
m_MaxSize: {x: 4000, y: 4000}
|
||||||
|
m_TitleContent:
|
||||||
|
m_Text: Inspector
|
||||||
|
m_Image: {fileID: -2667387946076563598, guid: 0000000000000000d000000000000000, type: 0}
|
||||||
|
m_Tooltip:
|
||||||
|
m_Pos:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 1466
|
||||||
|
y: 73
|
||||||
|
width: 453
|
||||||
|
height: 926
|
||||||
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
|
m_OverlayCanvas:
|
||||||
|
m_LastAppliedPresetName: Default
|
||||||
|
m_SaveData: []
|
||||||
|
m_ObjectsLockedBeforeSerialization: []
|
||||||
|
m_InstanceIDsLockedBeforeSerialization:
|
||||||
|
m_PreviewResizer:
|
||||||
|
m_CachedPref: 160
|
||||||
|
m_ControlHash: -371814159
|
||||||
|
m_PrefName: Preview_InspectorPreview
|
||||||
|
m_LastInspectedObjectInstanceID: -1
|
||||||
|
m_LastVerticalScrollValue: 26
|
||||||
|
m_GlobalObjectId:
|
||||||
|
m_InspectorMode: 0
|
||||||
|
m_LockTracker:
|
||||||
|
m_IsLocked: 0
|
||||||
|
m_PreviewWindow: {fileID: 0}
|
||||||
|
--- !u!114 &16
|
||||||
|
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: 1
|
||||||
|
m_Script: {fileID: 12061, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_MinSize: {x: 200, y: 200}
|
||||||
|
m_MaxSize: {x: 4000, y: 4000}
|
||||||
|
m_TitleContent:
|
||||||
|
m_Text: Hierarchy
|
||||||
|
m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0}
|
||||||
|
m_Tooltip:
|
||||||
|
m_Pos:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 0
|
||||||
|
y: 73
|
||||||
|
width: 267
|
||||||
|
height: 540
|
||||||
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
|
m_OverlayCanvas:
|
||||||
|
m_LastAppliedPresetName: Default
|
||||||
|
m_SaveData: []
|
||||||
|
m_SceneHierarchy:
|
||||||
|
m_TreeViewState:
|
||||||
|
scrollPos: {x: 0, y: 0}
|
||||||
|
m_SelectedIDs:
|
||||||
|
m_LastClickedID: 0
|
||||||
|
m_ExpandedIDs: 12b3ffff18fbffff005c00007a5c0000
|
||||||
|
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: 4}
|
||||||
|
m_SearchString:
|
||||||
|
m_ExpandedScenes: []
|
||||||
|
m_CurrenRootInstanceID: 0
|
||||||
|
m_LockTracker:
|
||||||
|
m_IsLocked: 0
|
||||||
|
m_CurrentSortingName: TransformSorting
|
||||||
|
m_WindowGUID: 4c969a2b90040154d917609493e03593
|
||||||
|
--- !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: 1
|
||||||
|
m_Script: {fileID: 12013, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
|
m_Name:
|
||||||
|
m_EditorClassIdentifier:
|
||||||
|
m_MinSize: {x: 200, y: 200}
|
||||||
|
m_MaxSize: {x: 4000, y: 4000}
|
||||||
|
m_TitleContent:
|
||||||
|
m_Text: Scene
|
||||||
|
m_Image: {fileID: 2593428753322112591, guid: 0000000000000000d000000000000000, type: 0}
|
||||||
|
m_Tooltip:
|
||||||
|
m_Pos:
|
||||||
|
serializedVersion: 2
|
||||||
|
x: 268
|
||||||
|
y: 73
|
||||||
|
width: 828
|
||||||
|
height: 540
|
||||||
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
|
m_OverlayCanvas:
|
||||||
|
m_LastAppliedPresetName: Default
|
||||||
|
m_SaveData:
|
||||||
|
- dockPosition: 0
|
||||||
|
containerId: overlay-toolbar__top
|
||||||
|
floating: 0
|
||||||
|
collapsed: 0
|
||||||
|
displayed: 1
|
||||||
|
snapOffset: {x: 0, y: 0}
|
||||||
|
snapOffsetDelta: {x: -101, y: -26}
|
||||||
|
snapCorner: 3
|
||||||
|
id: Tool Settings
|
||||||
|
index: 0
|
||||||
|
layout: 1
|
||||||
|
- dockPosition: 0
|
||||||
|
containerId: overlay-toolbar__top
|
||||||
|
floating: 0
|
||||||
|
collapsed: 0
|
||||||
|
displayed: 1
|
||||||
|
snapOffset: {x: -141, y: 149}
|
||||||
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
|
snapCorner: 1
|
||||||
|
id: unity-grid-and-snap-toolbar
|
||||||
|
index: 1
|
||||||
|
layout: 1
|
||||||
|
- dockPosition: 1
|
||||||
|
containerId: overlay-toolbar__top
|
||||||
|
floating: 0
|
||||||
|
collapsed: 0
|
||||||
|
displayed: 1
|
||||||
|
snapOffset: {x: 0, y: 0}
|
||||||
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
|
snapCorner: 0
|
||||||
|
id: unity-scene-view-toolbar
|
||||||
|
index: 0
|
||||||
|
layout: 1
|
||||||
|
- dockPosition: 1
|
||||||
|
containerId: overlay-toolbar__top
|
||||||
|
floating: 0
|
||||||
|
collapsed: 0
|
||||||
|
displayed: 0
|
||||||
|
snapOffset: {x: 0, y: 0}
|
||||||
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
|
snapCorner: 1
|
||||||
|
id: unity-search-toolbar
|
||||||
|
index: 1
|
||||||
|
layout: 1
|
||||||
|
- dockPosition: 0
|
||||||
|
containerId: overlay-container--left
|
||||||
|
floating: 0
|
||||||
|
collapsed: 0
|
||||||
|
displayed: 1
|
||||||
|
snapOffset: {x: 0, y: 0}
|
||||||
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
|
snapCorner: 0
|
||||||
|
id: unity-transform-toolbar
|
||||||
|
index: 0
|
||||||
|
layout: 2
|
||||||
|
- dockPosition: 0
|
||||||
|
containerId: overlay-container--left
|
||||||
|
floating: 0
|
||||||
|
collapsed: 0
|
||||||
|
displayed: 1
|
||||||
|
snapOffset: {x: 0, y: 197}
|
||||||
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
|
snapCorner: 0
|
||||||
|
id: unity-component-tools
|
||||||
|
index: 1
|
||||||
|
layout: 2
|
||||||
|
- dockPosition: 0
|
||||||
|
containerId: overlay-container--right
|
||||||
|
floating: 0
|
||||||
|
collapsed: 0
|
||||||
|
displayed: 1
|
||||||
|
snapOffset: {x: 67.5, y: 86}
|
||||||
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
|
snapCorner: 0
|
||||||
|
id: Orientation
|
||||||
|
index: 0
|
||||||
|
layout: 4
|
||||||
|
- dockPosition: 1
|
||||||
|
containerId: overlay-container--right
|
||||||
|
floating: 0
|
||||||
|
collapsed: 0
|
||||||
|
displayed: 0
|
||||||
|
snapOffset: {x: 0, y: 0}
|
||||||
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
|
snapCorner: 0
|
||||||
|
id: Scene View/Light Settings
|
||||||
|
index: 0
|
||||||
|
layout: 4
|
||||||
|
- dockPosition: 1
|
||||||
|
containerId: overlay-container--right
|
||||||
|
floating: 0
|
||||||
|
collapsed: 0
|
||||||
|
displayed: 0
|
||||||
|
snapOffset: {x: 0, y: 0}
|
||||||
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
|
snapCorner: 0
|
||||||
|
id: Scene View/Camera
|
||||||
|
index: 1
|
||||||
|
layout: 4
|
||||||
|
- dockPosition: 1
|
||||||
|
containerId: overlay-container--right
|
||||||
|
floating: 0
|
||||||
|
collapsed: 0
|
||||||
|
displayed: 0
|
||||||
|
snapOffset: {x: 0, y: 0}
|
||||||
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
|
snapCorner: 0
|
||||||
|
id: Scene View/Cloth Constraints
|
||||||
|
index: 2
|
||||||
|
layout: 4
|
||||||
|
- dockPosition: 1
|
||||||
|
containerId: overlay-container--right
|
||||||
|
floating: 0
|
||||||
|
collapsed: 0
|
||||||
|
displayed: 0
|
||||||
|
snapOffset: {x: 0, y: 0}
|
||||||
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
|
snapCorner: 0
|
||||||
|
id: Scene View/Cloth Collisions
|
||||||
|
index: 3
|
||||||
|
layout: 4
|
||||||
|
- dockPosition: 1
|
||||||
|
containerId: overlay-container--right
|
||||||
|
floating: 0
|
||||||
|
collapsed: 0
|
||||||
|
displayed: 0
|
||||||
|
snapOffset: {x: 0, y: 0}
|
||||||
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
|
snapCorner: 0
|
||||||
|
id: Scene View/Navmesh Display
|
||||||
|
index: 4
|
||||||
|
layout: 4
|
||||||
|
- dockPosition: 1
|
||||||
|
containerId: overlay-container--right
|
||||||
|
floating: 0
|
||||||
|
collapsed: 0
|
||||||
|
displayed: 0
|
||||||
|
snapOffset: {x: 0, y: 0}
|
||||||
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
|
snapCorner: 0
|
||||||
|
id: Scene View/Agent Display
|
||||||
|
index: 5
|
||||||
|
layout: 4
|
||||||
|
- dockPosition: 1
|
||||||
|
containerId: overlay-container--right
|
||||||
|
floating: 0
|
||||||
|
collapsed: 0
|
||||||
|
displayed: 0
|
||||||
|
snapOffset: {x: 0, y: 0}
|
||||||
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
|
snapCorner: 0
|
||||||
|
id: Scene View/Obstacle Display
|
||||||
|
index: 6
|
||||||
|
layout: 4
|
||||||
|
- dockPosition: 1
|
||||||
|
containerId: overlay-container--right
|
||||||
|
floating: 0
|
||||||
|
collapsed: 0
|
||||||
|
displayed: 0
|
||||||
|
snapOffset: {x: 0, y: 0}
|
||||||
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
|
snapCorner: 0
|
||||||
|
id: Scene View/Occlusion Culling
|
||||||
|
index: 7
|
||||||
|
layout: 4
|
||||||
|
- dockPosition: 1
|
||||||
|
containerId: overlay-container--right
|
||||||
|
floating: 0
|
||||||
|
collapsed: 0
|
||||||
|
displayed: 0
|
||||||
|
snapOffset: {x: 0, y: 0}
|
||||||
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
|
snapCorner: 0
|
||||||
|
id: Scene View/Physics Debugger
|
||||||
|
index: 8
|
||||||
|
layout: 4
|
||||||
|
- dockPosition: 1
|
||||||
|
containerId: overlay-container--right
|
||||||
|
floating: 0
|
||||||
|
collapsed: 0
|
||||||
|
displayed: 0
|
||||||
|
snapOffset: {x: 0, y: 0}
|
||||||
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
|
snapCorner: 0
|
||||||
|
id: Scene View/Scene Visibility
|
||||||
|
index: 9
|
||||||
|
layout: 4
|
||||||
|
- dockPosition: 1
|
||||||
|
containerId: overlay-container--right
|
||||||
|
floating: 0
|
||||||
|
collapsed: 0
|
||||||
|
displayed: 0
|
||||||
|
snapOffset: {x: 0, y: 0}
|
||||||
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
|
snapCorner: 0
|
||||||
|
id: Scene View/Particles
|
||||||
|
index: 10
|
||||||
|
layout: 4
|
||||||
|
- dockPosition: 1
|
||||||
|
containerId: overlay-container--right
|
||||||
|
floating: 0
|
||||||
|
collapsed: 0
|
||||||
|
displayed: 0
|
||||||
|
snapOffset: {x: 0, y: 0}
|
||||||
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
|
snapCorner: 0
|
||||||
|
id: Scene View/Tilemap
|
||||||
|
index: 11
|
||||||
|
layout: 4
|
||||||
|
- dockPosition: 1
|
||||||
|
containerId: overlay-container--right
|
||||||
|
floating: 0
|
||||||
|
collapsed: 0
|
||||||
|
displayed: 0
|
||||||
|
snapOffset: {x: 0, y: 0}
|
||||||
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
|
snapCorner: 0
|
||||||
|
id: Scene View/Tilemap Palette Helper
|
||||||
|
index: 12
|
||||||
|
layout: 4
|
||||||
|
m_WindowGUID: cc27987af1a868c49b0894db9c0f5429
|
||||||
|
m_Gizmos: 1
|
||||||
|
m_OverrideSceneCullingMask: 6917529027641081856
|
||||||
|
m_SceneIsLit: 1
|
||||||
|
m_SceneLighting: 1
|
||||||
|
m_2DMode: 1
|
||||||
|
m_isRotationLocked: 0
|
||||||
|
m_PlayAudio: 0
|
||||||
|
m_AudioPlay: 0
|
||||||
|
m_Position:
|
||||||
|
m_Target: {x: 750.6812, y: 1350.9152, z: -10.540598}
|
||||||
|
speed: 2
|
||||||
|
m_Value: {x: 753.43054, y: 1349.652, z: -10.7315645}
|
||||||
|
m_RenderMode: 0
|
||||||
|
m_CameraMode:
|
||||||
|
drawMode: 0
|
||||||
|
name: Shaded
|
||||||
|
section: Shading Mode
|
||||||
|
m_ValidateTrueMetals: 0
|
||||||
|
m_DoValidateTrueMetals: 0
|
||||||
|
m_ExposureSliderValue: 0
|
||||||
|
m_SceneViewState:
|
||||||
|
m_AlwaysRefresh: 0
|
||||||
|
showFog: 1
|
||||||
|
showSkybox: 1
|
||||||
|
showFlares: 1
|
||||||
|
showImageEffects: 1
|
||||||
|
showParticleSystems: 1
|
||||||
|
showVisualEffectGraphs: 1
|
||||||
|
m_FxEnabled: 1
|
||||||
|
m_Grid:
|
||||||
|
xGrid:
|
||||||
|
m_Fade:
|
||||||
|
m_Target: 0
|
||||||
|
speed: 2
|
||||||
|
m_Value: 0
|
||||||
|
m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4}
|
||||||
|
m_Pivot: {x: 0, y: 0, z: 0}
|
||||||
|
m_Size: {x: 0, y: 0}
|
||||||
|
yGrid:
|
||||||
|
m_Fade:
|
||||||
|
m_Target: 0
|
||||||
|
speed: 2
|
||||||
|
m_Value: 0
|
||||||
|
m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4}
|
||||||
|
m_Pivot: {x: 0, y: 0, z: 0}
|
||||||
|
m_Size: {x: 1, y: 1}
|
||||||
|
zGrid:
|
||||||
|
m_Fade:
|
||||||
|
m_Target: 1
|
||||||
|
speed: 2
|
||||||
|
m_Value: 1
|
||||||
|
m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4}
|
||||||
|
m_Pivot: {x: 0, y: 0, z: 0}
|
||||||
|
m_Size: {x: 1, y: 1}
|
||||||
|
m_ShowGrid: 1
|
||||||
|
m_GridAxis: 1
|
||||||
|
m_gridOpacity: 0.5
|
||||||
|
m_Rotation:
|
||||||
|
m_Target: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
speed: 2
|
||||||
|
m_Value: {x: 0, y: 0, z: 0, w: 1}
|
||||||
|
m_Size:
|
||||||
|
m_Target: 405.2743
|
||||||
|
speed: 2
|
||||||
|
m_Value: 424.37097
|
||||||
|
m_Ortho:
|
||||||
|
m_Target: 1
|
||||||
|
speed: 2
|
||||||
|
m_Value: 1
|
||||||
|
m_CameraSettings:
|
||||||
|
m_Speed: 1
|
||||||
|
m_SpeedNormalized: 0.5
|
||||||
|
m_SpeedMin: 0.001
|
||||||
|
m_SpeedMax: 2
|
||||||
|
m_EasingEnabled: 1
|
||||||
|
m_EasingDuration: 0.4
|
||||||
|
m_AccelerationEnabled: 1
|
||||||
|
m_FieldOfViewHorizontalOrVertical: 60
|
||||||
|
m_NearClip: 0.03
|
||||||
|
m_FarClip: 10000
|
||||||
|
m_DynamicClip: 1
|
||||||
|
m_OcclusionCulling: 0
|
||||||
|
m_LastSceneViewRotation: {x: 0.093103625, y: 0.03881543, z: -0.0036324712, w: 0.99489313}
|
||||||
|
m_LastSceneViewOrtho: 0
|
||||||
|
m_ReplacementShader: {fileID: 0}
|
||||||
|
m_ReplacementString:
|
||||||
|
m_SceneVisActive: 1
|
||||||
|
m_LastLockedObject: {fileID: 0}
|
||||||
|
m_ViewIsLockedToObject: 0
|
||||||
|
--- !u!114 &18
|
||||||
|
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: 1
|
||||||
|
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: 634
|
||||||
|
width: 1465
|
||||||
|
height: 365
|
||||||
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
|
m_OverlayCanvas:
|
||||||
|
m_LastAppliedPresetName: Default
|
||||||
|
m_SaveData: []
|
||||||
Reference in New Issue
Block a user