Skip to content
Snippets Groups Projects
default-2021.dwlt 24.8 KiB
Newer Older
  • Learn to ignore specific revisions
  • Lubomír Šimák's avatar
    Lubomír Šimák committed
    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
    %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: 2560
        height: 1357
      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
    --- !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: 1
      m_Script: {fileID: 12008, guid: 0000000000000000e000000000000000, type: 0}
      m_Name: 
      m_EditorClassIdentifier: 
      m_Children:
      - {fileID: 3}
      - {fileID: 5}
      - {fileID: 4}
      m_Position:
        serializedVersion: 2
        x: 0
        y: 0
        width: 2560
        height: 1357
      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 &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: 12011, guid: 0000000000000000e000000000000000, type: 0}
      m_Name: 
      m_EditorClassIdentifier: 
      m_Children: []
      m_Position:
        serializedVersion: 2
        x: 0
        y: 0
        width: 2560
        height: 30
      m_MinSize: {x: 0, y: 0}
      m_MaxSize: {x: 0, y: 0}
      m_LastLoadedLayoutName: 
    --- !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: 12042, guid: 0000000000000000e000000000000000, type: 0}
      m_Name: 
      m_EditorClassIdentifier: 
      m_Children: []
      m_Position:
        serializedVersion: 2
        x: 0
        y: 1337
        width: 2560
        height: 20
      m_MinSize: {x: 0, y: 0}
      m_MaxSize: {x: 0, y: 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: 12010, guid: 0000000000000000e000000000000000, type: 0}
      m_Name: 
      m_EditorClassIdentifier: 
      m_Children:
      - {fileID: 6}
      - {fileID: 11}
      m_Position:
        serializedVersion: 2
        x: 0
        y: 30
        width: 2560
        height: 1307
      m_MinSize: {x: 300, y: 200}
      m_MaxSize: {x: 24288, y: 16192}
      vertical: 0
      controlID: 62
    --- !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: 12010, guid: 0000000000000000e000000000000000, type: 0}
      m_Name: 
      m_EditorClassIdentifier: 
      m_Children:
      - {fileID: 7}
      - {fileID: 10}
      m_Position:
        serializedVersion: 2
        x: 0
        y: 0
        width: 2222
        height: 1307
      m_MinSize: {x: 200, y: 200}
      m_MaxSize: {x: 16192, y: 16192}
      vertical: 1
      controlID: 63
    --- !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: 12010, guid: 0000000000000000e000000000000000, type: 0}
      m_Name: 
      m_EditorClassIdentifier: 
      m_Children:
      - {fileID: 8}
      - {fileID: 9}
      m_Position:
        serializedVersion: 2
        x: 0
        y: 0
        width: 2222
        height: 707
      m_MinSize: {x: 200, y: 100}
      m_MaxSize: {x: 16192, y: 8096}
      vertical: 0
      controlID: 64
    --- !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: 12006, guid: 0000000000000000e000000000000000, type: 0}
      m_Name: 
      m_EditorClassIdentifier: 
      m_Children: []
      m_Position:
        serializedVersion: 2
        x: 0
        y: 0
        width: 330
        height: 707
      m_MinSize: {x: 201, y: 221}
      m_MaxSize: {x: 4001, y: 4021}
      m_ActualView: {fileID: 14}
      m_Panes:
      - {fileID: 14}
      m_Selected: 0
      m_LastSelected: 0
    --- !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: 12006, guid: 0000000000000000e000000000000000, type: 0}
      m_Name: SceneView
      m_EditorClassIdentifier: 
      m_Children: []
      m_Position:
        serializedVersion: 2
        x: 330
        y: 0
        width: 1892
        height: 707
      m_MinSize: {x: 202, y: 221}
      m_MaxSize: {x: 4002, y: 4021}
      m_ActualView: {fileID: 15}
      m_Panes:
      - {fileID: 15}
      - {fileID: 16}
      - {fileID: 12}
      m_Selected: 0
      m_LastSelected: 1
    --- !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: 12006, guid: 0000000000000000e000000000000000, type: 0}
      m_Name: ProjectBrowser
      m_EditorClassIdentifier: 
      m_Children: []
      m_Position:
        serializedVersion: 2
        x: 0
        y: 707
        width: 2222
        height: 600
      m_MinSize: {x: 231, y: 271}
      m_MaxSize: {x: 10001, y: 10021}
      m_ActualView: {fileID: 17}
      m_Panes:
      - {fileID: 17}
      - {fileID: 18}
      m_Selected: 0
      m_LastSelected: 1
    --- !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: 12006, guid: 0000000000000000e000000000000000, type: 0}
      m_Name: InspectorWindow
      m_EditorClassIdentifier: 
      m_Children: []
      m_Position:
        serializedVersion: 2
        x: 2222
        y: 0
        width: 338
        height: 1307
      m_MinSize: {x: 276, y: 71}
      m_MaxSize: {x: 4001, y: 4021}
      m_ActualView: {fileID: 13}
      m_Panes:
      - {fileID: 13}
      m_Selected: 0
      m_LastSelected: 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_Script: {fileID: 12914, guid: 0000000000000000e000000000000000, type: 0}
      m_Name: 
      m_EditorClassIdentifier: 
      m_MinSize: {x: 100, y: 100}
      m_MaxSize: {x: 4000, y: 4000}
      m_TitleContent:
        m_Text: Animator
        m_Image: {fileID: -1673928668082335149, guid: 0000000000000000d000000000000000, type: 0}
        m_Tooltip: 
      m_Pos:
        serializedVersion: 2
        x: 330
        y: 73
        width: 1890
        height: 686
      m_ViewDataDictionary: {fileID: 0}
      m_OverlayCanvas:
        m_LastAppliedPresetName: Default
        m_SaveData: []
      m_ViewTransforms:
        m_KeySerializationHelper:
        - {fileID: -6616372063646423408, guid: 30b9692e91853f044aa6dd5e8a809e91, type: 2}
        m_ValueSerializationHelper:
        - e00: 1
          e01: 0
          e02: 0
          e03: 0
          e10: 0
          e11: 1
          e12: 0
          e13: 0
          e20: 0
          e21: 0
          e22: 1
          e23: 0
          e30: 0
          e31: 0
          e32: 0
          e33: 1
      m_PreviewAnimator: {fileID: 0}
      m_AnimatorController: {fileID: 9100000, guid: 30b9692e91853f044aa6dd5e8a809e91, type: 2}
      m_BreadCrumbs:
      - m_Target: {fileID: -6616372063646423408, guid: 30b9692e91853f044aa6dd5e8a809e91, type: 2}
        m_ScrollPosition: {x: 0, y: 0}
      stateMachineGraph: {fileID: 0}
      stateMachineGraphGUI: {fileID: 0}
      blendTreeGraph: {fileID: 0}
      blendTreeGraphGUI: {fileID: 0}
      m_AutoLiveLink: 1
      m_MiniTool: 0
      m_LockTracker:
        m_IsLocked: 0
      m_CurrentEditor: 0
      m_LayerEditor:
        m_SelectedLayerIndex: 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: 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: 2222
        y: 73
        width: 337
        height: 1286
      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: 0
      m_GlobalObjectId: 
      m_InspectorMode: 0
      m_LockTracker:
        m_IsLocked: 0
      m_PreviewWindow: {fileID: 0}
    --- !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: 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: 329
        height: 686
      m_ViewDataDictionary: {fileID: 0}
      m_OverlayCanvas:
        m_LastAppliedPresetName: Default
        m_SaveData: []
      m_SceneHierarchy:
        m_TreeViewState:
          scrollPos: {x: 0, y: 0}
          m_SelectedIDs: 5a5d0000
          m_LastClickedID: 23898
          m_ExpandedIDs: 56f2ffff24f6ffff445d00007a5f0000
          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: 8}
          m_SearchString: 
        m_ExpandedScenes: []
        m_CurrenRootInstanceID: 0
        m_LockTracker:
          m_IsLocked: 0
        m_CurrentSortingName: TransformSorting
      m_WindowGUID: 4c969a2b90040154d917609493e03593
    --- !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: 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: 330
        y: 73
        width: 1890
        height: 686
      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--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
      m_WindowGUID: cc27987af1a868c49b0894db9c0f5429
      m_Gizmos: 1
      m_OverrideSceneCullingMask: 6917529027641081856
      m_SceneIsLit: 1
      m_SceneLighting: 1
      m_2DMode: 0
      m_isRotationLocked: 0
      m_PlayAudio: 0
      m_AudioPlay: 0
      m_Position:
        m_Target: {x: 212.93906, y: 47.437492, z: 162.40723}
        speed: 2
        m_Value: {x: 212.93906, y: 47.437492, z: 162.40723}
      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: 0
        showSkybox: 1
        showFlares: 1
        showImageEffects: 1
        showParticleSystems: 1
        showVisualEffectGraphs: 1
        m_FxEnabled: 0
      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: 1, y: 1}
        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: 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}
        m_ShowGrid: 0
        m_GridAxis: 1
        m_gridOpacity: 0.5
      m_Rotation:
        m_Target: {x: -0.0047426336, y: -0.9083459, z: 0.024200743, w: -0.41677406}
        speed: 2
        m_Value: {x: -0.0047077374, y: -0.90924233, z: 0.024215084, w: -0.41553554}
      m_Size:
        m_Target: 37.964256
        speed: 2
        m_Value: 37.964256
      m_Ortho:
        m_Target: 0
        speed: 2
        m_Value: 0
      m_CameraSettings:
        m_Speed: 2
        m_SpeedNormalized: 1
        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, y: 0, z: 0, w: 0}
      m_LastSceneViewOrtho: 0
      m_ReplacementShader: {fileID: 0}
      m_ReplacementString: 
      m_SceneVisActive: 1
      m_LastLockedObject: {fileID: 0}
      m_ViewIsLockedToObject: 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: 12015, guid: 0000000000000000e000000000000000, type: 0}
      m_Name: 
      m_EditorClassIdentifier: 
      m_MinSize: {x: 200, y: 200}
      m_MaxSize: {x: 4000, y: 4000}
      m_TitleContent:
        m_Text: Game
        m_Image: {fileID: -6423792434712278376, guid: 0000000000000000d000000000000000, type: 0}
        m_Tooltip: 
      m_Pos:
        serializedVersion: 2
        x: 330
        y: 73
        width: 1890
        height: 686
      m_ViewDataDictionary: {fileID: 0}
      m_OverlayCanvas:
        m_LastAppliedPresetName: Default
        m_SaveData: []
      m_SerializedViewNames: []
      m_SerializedViewValues: []
      m_PlayModeViewName: GameView
      m_ShowGizmos: 0
      m_TargetDisplay: 0
      m_ClearColor: {r: 0, g: 0, b: 0, a: 0}
      m_TargetSize: {x: 1890, y: 665}
      m_TextureFilterMode: 0
      m_TextureHideFlags: 61
      m_RenderIMGUI: 1
      m_EnterPlayModeBehavior: 0
      m_UseMipMap: 0
      m_VSyncEnabled: 0
      m_Gizmos: 0
      m_Stats: 0
      m_SelectedSizes: 00000000000000000000000000000000000000000000000000000000000000000000000000000000
      m_ZoomArea:
        m_HRangeLocked: 0
        m_VRangeLocked: 0
        hZoomLockedByDefault: 0
        vZoomLockedByDefault: 0
        m_HBaseRangeMin: -945
        m_HBaseRangeMax: 945
        m_VBaseRangeMin: -332.5
        m_VBaseRangeMax: 332.5
        m_HAllowExceedBaseRangeMin: 1
        m_HAllowExceedBaseRangeMax: 1
        m_VAllowExceedBaseRangeMin: 1
        m_VAllowExceedBaseRangeMax: 1
        m_ScaleWithWindow: 0
        m_HSlider: 0
        m_VSlider: 0
        m_IgnoreScrollWheelUntilClicked: 0
        m_EnableMouseInput: 0
        m_EnableSliderZoomHorizontal: 0
        m_EnableSliderZoomVertical: 0
        m_UniformScale: 1
        m_UpDirection: 1
        m_DrawArea:
          serializedVersion: 2
          x: 0
          y: 21
          width: 1890
          height: 665
        m_Scale: {x: 1, y: 1}
        m_Translation: {x: 945, y: 332.5}
        m_MarginLeft: 0
        m_MarginRight: 0
        m_MarginTop: 0
        m_MarginBottom: 0
        m_LastShownAreaInsideMargins:
          serializedVersion: 2
          x: -945
          y: -332.5
          width: 1890
          height: 665
        m_MinimalGUI: 1
      m_defaultScale: 1
      m_LastWindowPixelSize: {x: 1890, y: 686}
      m_ClearInEditMode: 1
      m_NoCameraWarning: 1
      m_LowResolutionForAspectRatios: 01000000000000000000
      m_XRRenderMode: 0
      m_RenderTexture: {fileID: 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: 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: 780
        width: 2221
        height: 579
      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/Scenes
        m_Globs: []
        m_OriginalText: 
      m_ViewMode: 1
      m_StartGridSize: 64
      m_LastFolders:
      - Assets/Scenes
      m_LastFoldersGridSize: -1
      m_LastProjectPath: D:\school\cvut\VHS\projectVHS\3d-unity-game
      m_LockTracker:
        m_IsLocked: 0
      m_FolderTreeState:
        scrollPos: {x: 0, y: 225}
        m_SelectedIDs: 965c0000
        m_LastClickedID: 23702
        m_ExpandedIDs: 00000000d45b0000d65b0000d85b0000da5b0000dc5b0000de5b0000e05b0000e25b0000e45b0000e65b0000e85b0000ea5b0000ec5b0000ee5b0000f05b0000f25b0000f45b0000f65b0000f85b000000ca9a3b
        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: 10}
        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: 00000000d45b0000d65b0000d85b0000da5b0000dc5b0000de5b0000e05b0000e25b0000e45b0000e65b0000e85b0000ea5b0000ec5b0000ee5b0000f05b0000f25b0000f45b0000f65b0000f85b0000
        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: 1
        m_ExpandedInstanceIDs: c62300006c5300009659000018b90000f2630000f063000012610000
        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: 10}
        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: 64
      m_SkipHiddenPackages: 0
      m_DirectoriesAreaWidth: 207
    --- !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: 752