mirror of
https://github.com/DerTyp7/example-top-down-unity.git
synced 2025-10-29 12:32:09 +01:00
Added interaction text next to cursor
This commit is contained in:
@@ -19,8 +19,8 @@ public class PlayerInteraction : MonoBehaviour
|
|||||||
{
|
{
|
||||||
// Debug.Log("Target Position: " + hit.collider.gameObject.transform.position);
|
// Debug.Log("Target Position: " + hit.collider.gameObject.transform.position);
|
||||||
HandleInteraction(interactable);
|
HandleInteraction(interactable);
|
||||||
interactionText.text = interactable.GetDescription();
|
|
||||||
successfulHit = true;
|
successfulHit = true;
|
||||||
|
HandleInteractionText(interactable);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -30,12 +30,12 @@ public class PlayerInteraction : MonoBehaviour
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
void HandleInteractionText(Interactable interactable)
|
||||||
void HandleInteractionText() // interaction text has to follow mouse cursor
|
|
||||||
{
|
{
|
||||||
|
interactionText.text = interactable.GetDescription();
|
||||||
}
|
interactionText.transform.position = new Vector3(Input.mousePosition.x + interactionText.rectTransform.sizeDelta.x / 2 + 20, Input.mousePosition.y - 5, Input.mousePosition.z);
|
||||||
|
|
||||||
|
}
|
||||||
void HandleInteraction(Interactable interactable)
|
void HandleInteraction(Interactable interactable)
|
||||||
{
|
{
|
||||||
switch (interactable.interactionType)
|
switch (interactable.interactionType)
|
||||||
|
|||||||
@@ -7,8 +7,10 @@ public class TreeInteraction : Interactable
|
|||||||
public override string GetDescription() => "Baum muss schreie";
|
public override string GetDescription() => "Baum muss schreie";
|
||||||
public override void Interact()
|
public override void Interact()
|
||||||
{
|
{
|
||||||
if(isInRange())
|
if (isInRange())
|
||||||
Debug.Log("AaaaaaaaaaAaAAaAaAAaAaAaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh");
|
Debug.Log("AaaaaaaaaaAaAAaAaAAaAaAaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh");
|
||||||
|
else
|
||||||
|
Debug.Log("Tree is not in range");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ MonoBehaviour:
|
|||||||
m_MinSize: {x: 300, y: 200}
|
m_MinSize: {x: 300, y: 200}
|
||||||
m_MaxSize: {x: 24288, y: 16192}
|
m_MaxSize: {x: 24288, y: 16192}
|
||||||
vertical: 0
|
vertical: 0
|
||||||
controlID: 1995
|
controlID: -1
|
||||||
--- !u!114 &2
|
--- !u!114 &2
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
@@ -33,138 +33,90 @@ MonoBehaviour:
|
|||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 0}
|
m_GameObject: {fileID: 0}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
m_EditorHideFlags: 1
|
m_EditorHideFlags: 0
|
||||||
m_Script: {fileID: 12014, guid: 0000000000000000e000000000000000, type: 0}
|
m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_MinSize: {x: 230, y: 250}
|
m_MinSize: {x: 100, y: 100}
|
||||||
m_MaxSize: {x: 10000, y: 10000}
|
m_MaxSize: {x: 4000, y: 4000}
|
||||||
m_TitleContent:
|
m_TitleContent:
|
||||||
m_Text: Project
|
m_Text: Game
|
||||||
m_Image: {fileID: -5467254957812901981, guid: 0000000000000000d000000000000000, type: 0}
|
m_Image: {fileID: -6423792434712278376, guid: 0000000000000000d000000000000000, type: 0}
|
||||||
m_Tooltip:
|
m_Tooltip:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 331
|
||||||
y: 630
|
y: 73
|
||||||
width: 1365
|
width: 1033
|
||||||
height: 361
|
height: 536
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
m_SaveData: []
|
m_SaveData: []
|
||||||
m_SearchFilter:
|
m_SerializedViewNames: []
|
||||||
m_NameFilter:
|
m_SerializedViewValues: []
|
||||||
m_ClassNames: []
|
m_PlayModeViewName: GameView
|
||||||
m_AssetLabels: []
|
m_ShowGizmos: 0
|
||||||
m_AssetBundleNames: []
|
m_TargetDisplay: 0
|
||||||
m_VersionControlStates: []
|
m_ClearColor: {r: 0, g: 0, b: 0, a: 0}
|
||||||
m_SoftLockControlStates: []
|
m_TargetSize: {x: 1033, y: 515}
|
||||||
m_ReferencingInstanceIDs:
|
m_TextureFilterMode: 0
|
||||||
m_SceneHandles:
|
m_TextureHideFlags: 61
|
||||||
m_ShowAllHits: 0
|
m_RenderIMGUI: 1
|
||||||
m_SkipHidden: 0
|
m_EnterPlayModeBehavior: 0
|
||||||
m_SearchArea: 1
|
m_UseMipMap: 0
|
||||||
m_Folders:
|
m_VSyncEnabled: 0
|
||||||
- Assets/Scripts
|
m_Gizmos: 0
|
||||||
m_Globs: []
|
m_Stats: 0
|
||||||
m_OriginalText:
|
m_SelectedSizes: 00000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
m_ViewMode: 1
|
m_ZoomArea:
|
||||||
m_StartGridSize: 74
|
m_HRangeLocked: 0
|
||||||
m_LastFolders:
|
m_VRangeLocked: 0
|
||||||
- Assets/Scripts
|
hZoomLockedByDefault: 0
|
||||||
m_LastFoldersGridSize: 74
|
vZoomLockedByDefault: 0
|
||||||
m_LastProjectPath: M:\UnityProjects\2D-Top-Down
|
m_HBaseRangeMin: -516.5
|
||||||
m_LockTracker:
|
m_HBaseRangeMax: 516.5
|
||||||
m_IsLocked: 0
|
m_VBaseRangeMin: -257.5
|
||||||
m_FolderTreeState:
|
m_VBaseRangeMax: 257.5
|
||||||
scrollPos: {x: 0, y: 0}
|
m_HAllowExceedBaseRangeMin: 1
|
||||||
m_SelectedIDs: 406d0000
|
m_HAllowExceedBaseRangeMax: 1
|
||||||
m_LastClickedID: 27968
|
m_VAllowExceedBaseRangeMin: 1
|
||||||
m_ExpandedIDs: 00000000326d000000ca9a3bffffff7f
|
m_VAllowExceedBaseRangeMax: 1
|
||||||
m_RenameOverlay:
|
m_ScaleWithWindow: 0
|
||||||
m_UserAcceptedRename: 0
|
m_HSlider: 0
|
||||||
m_Name:
|
m_VSlider: 0
|
||||||
m_OriginalName:
|
m_IgnoreScrollWheelUntilClicked: 0
|
||||||
m_EditFieldRect:
|
m_EnableMouseInput: 0
|
||||||
serializedVersion: 2
|
m_EnableSliderZoomHorizontal: 0
|
||||||
x: 0
|
m_EnableSliderZoomVertical: 0
|
||||||
y: 0
|
m_UniformScale: 1
|
||||||
width: 0
|
m_UpDirection: 1
|
||||||
height: 0
|
m_DrawArea:
|
||||||
m_UserData: 0
|
serializedVersion: 2
|
||||||
m_IsWaitingForDelay: 0
|
x: 0
|
||||||
m_IsRenaming: 0
|
y: 21
|
||||||
m_OriginalEventType: 11
|
width: 1033
|
||||||
m_IsRenamingFilename: 1
|
height: 515
|
||||||
m_ClientGUIView: {fileID: 0}
|
m_Scale: {x: 1, y: 1}
|
||||||
m_SearchString:
|
m_Translation: {x: 516.5, y: 257.5}
|
||||||
m_CreateAssetUtility:
|
m_MarginLeft: 0
|
||||||
m_EndAction: {fileID: 0}
|
m_MarginRight: 0
|
||||||
m_InstanceID: 0
|
m_MarginTop: 0
|
||||||
m_Path:
|
m_MarginBottom: 0
|
||||||
m_Icon: {fileID: 0}
|
m_LastShownAreaInsideMargins:
|
||||||
m_ResourceFile:
|
serializedVersion: 2
|
||||||
m_AssetTreeState:
|
x: -516.5
|
||||||
scrollPos: {x: 0, y: 0}
|
y: -257.5
|
||||||
m_SelectedIDs:
|
width: 1033
|
||||||
m_LastClickedID: 0
|
height: 515
|
||||||
m_ExpandedIDs: 00000000326d000000ca9a3bffffff7f
|
m_MinimalGUI: 1
|
||||||
m_RenameOverlay:
|
m_defaultScale: 1
|
||||||
m_UserAcceptedRename: 0
|
m_LastWindowPixelSize: {x: 1033, y: 536}
|
||||||
m_Name:
|
m_ClearInEditMode: 1
|
||||||
m_OriginalName:
|
m_NoCameraWarning: 1
|
||||||
m_EditFieldRect:
|
m_LowResolutionForAspectRatios: 01000000000000000000
|
||||||
serializedVersion: 2
|
m_XRRenderMode: 0
|
||||||
x: 0
|
m_RenderTexture: {fileID: 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: 946c0000
|
|
||||||
m_LastClickedInstanceID: 27796
|
|
||||||
m_HadKeyboardFocusLastEvent: 0
|
|
||||||
m_ExpandedInstanceIDs: c62300006a8e0000f25e000088610000
|
|
||||||
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: 74
|
|
||||||
m_SkipHiddenPackages: 0
|
|
||||||
m_DirectoriesAreaWidth: 207
|
|
||||||
--- !u!114 &3
|
--- !u!114 &3
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
@@ -179,7 +131,7 @@ MonoBehaviour:
|
|||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_Children:
|
m_Children:
|
||||||
- {fileID: 4}
|
- {fileID: 4}
|
||||||
- {fileID: 10}
|
- {fileID: 9}
|
||||||
m_Position:
|
m_Position:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
@@ -189,7 +141,7 @@ MonoBehaviour:
|
|||||||
m_MinSize: {x: 200, y: 200}
|
m_MinSize: {x: 200, y: 200}
|
||||||
m_MaxSize: {x: 16192, y: 16192}
|
m_MaxSize: {x: 16192, y: 16192}
|
||||||
vertical: 1
|
vertical: 1
|
||||||
controlID: 1996
|
controlID: -1
|
||||||
--- !u!114 &4
|
--- !u!114 &4
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
@@ -214,7 +166,7 @@ MonoBehaviour:
|
|||||||
m_MinSize: {x: 200, y: 100}
|
m_MinSize: {x: 200, y: 100}
|
||||||
m_MaxSize: {x: 16192, y: 8096}
|
m_MaxSize: {x: 16192, y: 8096}
|
||||||
vertical: 0
|
vertical: 0
|
||||||
controlID: 1952
|
controlID: -1
|
||||||
--- !u!114 &5
|
--- !u!114 &5
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
@@ -234,8 +186,8 @@ MonoBehaviour:
|
|||||||
y: 0
|
y: 0
|
||||||
width: 331
|
width: 331
|
||||||
height: 557
|
height: 557
|
||||||
m_MinSize: {x: 200, y: 200}
|
m_MinSize: {x: 201, y: 221}
|
||||||
m_MaxSize: {x: 4000, y: 4000}
|
m_MaxSize: {x: 4001, y: 4021}
|
||||||
m_ActualView: {fileID: 6}
|
m_ActualView: {fileID: 6}
|
||||||
m_Panes:
|
m_Panes:
|
||||||
- {fileID: 6}
|
- {fileID: 6}
|
||||||
@@ -272,23 +224,23 @@ MonoBehaviour:
|
|||||||
m_SceneHierarchy:
|
m_SceneHierarchy:
|
||||||
m_TreeViewState:
|
m_TreeViewState:
|
||||||
scrollPos: {x: 0, y: 0}
|
scrollPos: {x: 0, y: 0}
|
||||||
m_SelectedIDs: 946c0000
|
m_SelectedIDs: a66a0000
|
||||||
m_LastClickedID: 27796
|
m_LastClickedID: 27302
|
||||||
m_ExpandedIDs: e6f9ffff8e6c0000
|
m_ExpandedIDs: 2efbffffce6a0000
|
||||||
m_RenameOverlay:
|
m_RenameOverlay:
|
||||||
m_UserAcceptedRename: 0
|
m_UserAcceptedRename: 0
|
||||||
m_Name:
|
m_Name: InteractionText
|
||||||
m_OriginalName:
|
m_OriginalName: InteractionText
|
||||||
m_EditFieldRect:
|
m_EditFieldRect:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 0
|
||||||
width: 0
|
width: 0
|
||||||
height: 0
|
height: 0
|
||||||
m_UserData: 0
|
m_UserData: 27302
|
||||||
m_IsWaitingForDelay: 0
|
m_IsWaitingForDelay: 0
|
||||||
m_IsRenaming: 0
|
m_IsRenaming: 0
|
||||||
m_OriginalEventType: 11
|
m_OriginalEventType: 4
|
||||||
m_IsRenamingFilename: 0
|
m_IsRenamingFilename: 0
|
||||||
m_ClientGUIView: {fileID: 5}
|
m_ClientGUIView: {fileID: 5}
|
||||||
m_SearchString:
|
m_SearchString:
|
||||||
@@ -319,10 +271,10 @@ MonoBehaviour:
|
|||||||
height: 557
|
height: 557
|
||||||
m_MinSize: {x: 102, y: 121}
|
m_MinSize: {x: 102, y: 121}
|
||||||
m_MaxSize: {x: 4002, y: 4021}
|
m_MaxSize: {x: 4002, y: 4021}
|
||||||
m_ActualView: {fileID: 9}
|
m_ActualView: {fileID: 2}
|
||||||
m_Panes:
|
m_Panes:
|
||||||
- {fileID: 8}
|
- {fileID: 8}
|
||||||
- {fileID: 9}
|
- {fileID: 2}
|
||||||
m_Selected: 1
|
m_Selected: 1
|
||||||
m_LastSelected: 0
|
m_LastSelected: 0
|
||||||
--- !u!114 &8
|
--- !u!114 &8
|
||||||
@@ -401,7 +353,7 @@ MonoBehaviour:
|
|||||||
containerId: overlay-toolbar__top
|
containerId: overlay-toolbar__top
|
||||||
floating: 0
|
floating: 0
|
||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 1
|
displayed: 0
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: 0, y: 0}
|
snapOffsetDelta: {x: 0, y: 0}
|
||||||
snapCorner: 0
|
snapCorner: 0
|
||||||
@@ -572,9 +524,9 @@ MonoBehaviour:
|
|||||||
m_PlayAudio: 0
|
m_PlayAudio: 0
|
||||||
m_AudioPlay: 0
|
m_AudioPlay: 0
|
||||||
m_Position:
|
m_Position:
|
||||||
m_Target: {x: 8.946545, y: 0.08794442, z: -0.5680975}
|
m_Target: {x: 479.0747, y: 297.06244, z: -1.6418004}
|
||||||
speed: 2
|
speed: 2
|
||||||
m_Value: {x: 8.946545, y: 0.08794442, z: -0.5680975}
|
m_Value: {x: 479.0747, y: 297.06244, z: -1.6418004}
|
||||||
m_RenderMode: 0
|
m_RenderMode: 0
|
||||||
m_CameraMode:
|
m_CameraMode:
|
||||||
drawMode: 0
|
drawMode: 0
|
||||||
@@ -625,9 +577,9 @@ MonoBehaviour:
|
|||||||
speed: 2
|
speed: 2
|
||||||
m_Value: {x: 0, y: 0, z: 0, w: 1}
|
m_Value: {x: 0, y: 0, z: 0, w: 1}
|
||||||
m_Size:
|
m_Size:
|
||||||
m_Target: 8.592364
|
m_Target: 264.67877
|
||||||
speed: 2
|
speed: 2
|
||||||
m_Value: 8.592364
|
m_Value: 264.67877
|
||||||
m_Ortho:
|
m_Ortho:
|
||||||
m_Target: 1
|
m_Target: 1
|
||||||
speed: 2
|
speed: 2
|
||||||
@@ -653,98 +605,6 @@ MonoBehaviour:
|
|||||||
m_LastLockedObject: {fileID: 0}
|
m_LastLockedObject: {fileID: 0}
|
||||||
m_ViewIsLockedToObject: 0
|
m_ViewIsLockedToObject: 0
|
||||||
--- !u!114 &9
|
--- !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: 0
|
|
||||||
m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0}
|
|
||||||
m_Name:
|
|
||||||
m_EditorClassIdentifier:
|
|
||||||
m_MinSize: {x: 100, y: 100}
|
|
||||||
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: 331
|
|
||||||
y: 73
|
|
||||||
width: 1033
|
|
||||||
height: 536
|
|
||||||
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: 1033, y: 515}
|
|
||||||
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: -516.5
|
|
||||||
m_HBaseRangeMax: 516.5
|
|
||||||
m_VBaseRangeMin: -257.5
|
|
||||||
m_VBaseRangeMax: 257.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: 1
|
|
||||||
m_EnableSliderZoomHorizontal: 0
|
|
||||||
m_EnableSliderZoomVertical: 0
|
|
||||||
m_UniformScale: 1
|
|
||||||
m_UpDirection: 1
|
|
||||||
m_DrawArea:
|
|
||||||
serializedVersion: 2
|
|
||||||
x: 0
|
|
||||||
y: 21
|
|
||||||
width: 1033
|
|
||||||
height: 515
|
|
||||||
m_Scale: {x: 1, y: 1}
|
|
||||||
m_Translation: {x: 516.5, y: 257.5}
|
|
||||||
m_MarginLeft: 0
|
|
||||||
m_MarginRight: 0
|
|
||||||
m_MarginTop: 0
|
|
||||||
m_MarginBottom: 0
|
|
||||||
m_LastShownAreaInsideMargins:
|
|
||||||
serializedVersion: 2
|
|
||||||
x: -516.5
|
|
||||||
y: -257.5
|
|
||||||
width: 1033
|
|
||||||
height: 515
|
|
||||||
m_MinimalGUI: 1
|
|
||||||
m_defaultScale: 1
|
|
||||||
m_LastWindowPixelSize: {x: 1033, y: 536}
|
|
||||||
m_ClearInEditMode: 1
|
|
||||||
m_NoCameraWarning: 1
|
|
||||||
m_LowResolutionForAspectRatios: 01000000000000000000
|
|
||||||
m_XRRenderMode: 0
|
|
||||||
m_RenderTexture: {fileID: 0}
|
|
||||||
--- !u!114 &10
|
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
m_CorrespondingSourceObject: {fileID: 0}
|
m_CorrespondingSourceObject: {fileID: 0}
|
||||||
@@ -765,12 +625,152 @@ MonoBehaviour:
|
|||||||
height: 382
|
height: 382
|
||||||
m_MinSize: {x: 231, y: 271}
|
m_MinSize: {x: 231, y: 271}
|
||||||
m_MaxSize: {x: 10001, y: 10021}
|
m_MaxSize: {x: 10001, y: 10021}
|
||||||
m_ActualView: {fileID: 2}
|
m_ActualView: {fileID: 10}
|
||||||
m_Panes:
|
m_Panes:
|
||||||
- {fileID: 2}
|
- {fileID: 10}
|
||||||
- {fileID: 11}
|
- {fileID: 11}
|
||||||
m_Selected: 0
|
m_Selected: 0
|
||||||
m_LastSelected: 1
|
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: 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: 630
|
||||||
|
width: 1365
|
||||||
|
height: 361
|
||||||
|
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: 74
|
||||||
|
m_LastFolders:
|
||||||
|
- Assets/Scripts
|
||||||
|
m_LastFoldersGridSize: 74
|
||||||
|
m_LastProjectPath: M:\UnityProjects\2D-Top-Down
|
||||||
|
m_LockTracker:
|
||||||
|
m_IsLocked: 0
|
||||||
|
m_FolderTreeState:
|
||||||
|
scrollPos: {x: 0, y: 0}
|
||||||
|
m_SelectedIDs: ce700000
|
||||||
|
m_LastClickedID: 28878
|
||||||
|
m_ExpandedIDs: 00000000c26e000000ca9a3bffffff7f
|
||||||
|
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: 00000000c26e0000
|
||||||
|
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: a66a0000
|
||||||
|
m_LastClickedInstanceID: 27302
|
||||||
|
m_HadKeyboardFocusLastEvent: 1
|
||||||
|
m_ExpandedInstanceIDs: c62300006a8e0000f25e000088610000
|
||||||
|
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: 9}
|
||||||
|
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: 74
|
||||||
|
m_SkipHiddenPackages: 0
|
||||||
|
m_DirectoriesAreaWidth: 207
|
||||||
--- !u!114 &11
|
--- !u!114 &11
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
@@ -818,8 +818,8 @@ MonoBehaviour:
|
|||||||
y: 0
|
y: 0
|
||||||
width: 554
|
width: 554
|
||||||
height: 939
|
height: 939
|
||||||
m_MinSize: {x: 276, y: 71}
|
m_MinSize: {x: 275, y: 50}
|
||||||
m_MaxSize: {x: 4001, y: 4021}
|
m_MaxSize: {x: 4000, y: 4000}
|
||||||
m_ActualView: {fileID: 13}
|
m_ActualView: {fileID: 13}
|
||||||
m_Panes:
|
m_Panes:
|
||||||
- {fileID: 13}
|
- {fileID: 13}
|
||||||
@@ -860,7 +860,7 @@ MonoBehaviour:
|
|||||||
m_ControlHash: -371814159
|
m_ControlHash: -371814159
|
||||||
m_PrefName: Preview_InspectorPreview
|
m_PrefName: Preview_InspectorPreview
|
||||||
m_LastInspectedObjectInstanceID: -1
|
m_LastInspectedObjectInstanceID: -1
|
||||||
m_LastVerticalScrollValue: 403
|
m_LastVerticalScrollValue: 0
|
||||||
m_GlobalObjectId:
|
m_GlobalObjectId:
|
||||||
m_InspectorMode: 0
|
m_InspectorMode: 0
|
||||||
m_LockTracker:
|
m_LockTracker:
|
||||||
|
|||||||
@@ -15,11 +15,11 @@ MonoBehaviour:
|
|||||||
m_PixelRect:
|
m_PixelRect:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 43.2
|
y: 43
|
||||||
width: 1536
|
width: 1920
|
||||||
height: 772.8
|
height: 989
|
||||||
m_ShowMode: 4
|
m_ShowMode: 4
|
||||||
m_Title: Scene
|
m_Title: Inspector
|
||||||
m_RootView: {fileID: 2}
|
m_RootView: {fileID: 2}
|
||||||
m_MinSize: {x: 875, y: 300}
|
m_MinSize: {x: 875, y: 300}
|
||||||
m_MaxSize: {x: 10000, y: 10000}
|
m_MaxSize: {x: 10000, y: 10000}
|
||||||
@@ -44,8 +44,8 @@ MonoBehaviour:
|
|||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 0
|
||||||
width: 1536
|
width: 1920
|
||||||
height: 772.8
|
height: 989
|
||||||
m_MinSize: {x: 875, y: 300}
|
m_MinSize: {x: 875, y: 300}
|
||||||
m_MaxSize: {x: 10000, y: 10000}
|
m_MaxSize: {x: 10000, y: 10000}
|
||||||
m_UseTopView: 1
|
m_UseTopView: 1
|
||||||
@@ -69,7 +69,7 @@ MonoBehaviour:
|
|||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 0
|
||||||
width: 1536
|
width: 1920
|
||||||
height: 30
|
height: 30
|
||||||
m_MinSize: {x: 0, y: 0}
|
m_MinSize: {x: 0, y: 0}
|
||||||
m_MaxSize: {x: 0, y: 0}
|
m_MaxSize: {x: 0, y: 0}
|
||||||
@@ -90,8 +90,8 @@ MonoBehaviour:
|
|||||||
m_Position:
|
m_Position:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 752.8
|
y: 969
|
||||||
width: 1536
|
width: 1920
|
||||||
height: 20
|
height: 20
|
||||||
m_MinSize: {x: 0, y: 0}
|
m_MinSize: {x: 0, y: 0}
|
||||||
m_MaxSize: {x: 0, y: 0}
|
m_MaxSize: {x: 0, y: 0}
|
||||||
@@ -114,12 +114,12 @@ MonoBehaviour:
|
|||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 30
|
y: 30
|
||||||
width: 1536
|
width: 1920
|
||||||
height: 722.8
|
height: 939
|
||||||
m_MinSize: {x: 300, y: 200}
|
m_MinSize: {x: 300, y: 200}
|
||||||
m_MaxSize: {x: 24288, y: 16192}
|
m_MaxSize: {x: 24288, y: 16192}
|
||||||
vertical: 0
|
vertical: 0
|
||||||
controlID: 103
|
controlID: 3415
|
||||||
--- !u!114 &6
|
--- !u!114 &6
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
@@ -139,12 +139,12 @@ MonoBehaviour:
|
|||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 0
|
||||||
width: 1092
|
width: 1366
|
||||||
height: 722.8
|
height: 939
|
||||||
m_MinSize: {x: 200, y: 200}
|
m_MinSize: {x: 200, y: 200}
|
||||||
m_MaxSize: {x: 16192, y: 16192}
|
m_MaxSize: {x: 16192, y: 16192}
|
||||||
vertical: 1
|
vertical: 1
|
||||||
controlID: 74
|
controlID: 3294
|
||||||
--- !u!114 &7
|
--- !u!114 &7
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
@@ -164,12 +164,12 @@ MonoBehaviour:
|
|||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 0
|
||||||
width: 1092
|
width: 1366
|
||||||
height: 428.8
|
height: 557
|
||||||
m_MinSize: {x: 200, y: 100}
|
m_MinSize: {x: 200, y: 100}
|
||||||
m_MaxSize: {x: 16192, y: 8096}
|
m_MaxSize: {x: 16192, y: 8096}
|
||||||
vertical: 0
|
vertical: 0
|
||||||
controlID: 75
|
controlID: 3295
|
||||||
--- !u!114 &8
|
--- !u!114 &8
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
@@ -187,10 +187,10 @@ MonoBehaviour:
|
|||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 0
|
y: 0
|
||||||
width: 264.8
|
width: 331
|
||||||
height: 428.8
|
height: 557
|
||||||
m_MinSize: {x: 200, y: 200}
|
m_MinSize: {x: 201, y: 221}
|
||||||
m_MaxSize: {x: 4000, y: 4000}
|
m_MaxSize: {x: 4001, y: 4021}
|
||||||
m_ActualView: {fileID: 13}
|
m_ActualView: {fileID: 13}
|
||||||
m_Panes:
|
m_Panes:
|
||||||
- {fileID: 13}
|
- {fileID: 13}
|
||||||
@@ -206,23 +206,23 @@ MonoBehaviour:
|
|||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
m_EditorHideFlags: 1
|
m_EditorHideFlags: 1
|
||||||
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
m_Name: SceneView
|
m_Name: GameView
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_Children: []
|
m_Children: []
|
||||||
m_Position:
|
m_Position:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 264.8
|
x: 331
|
||||||
y: 0
|
y: 0
|
||||||
width: 827.2
|
width: 1035
|
||||||
height: 428.8
|
height: 557
|
||||||
m_MinSize: {x: 202, y: 221}
|
m_MinSize: {x: 102, y: 121}
|
||||||
m_MaxSize: {x: 4002, y: 4021}
|
m_MaxSize: {x: 4002, y: 4021}
|
||||||
m_ActualView: {fileID: 14}
|
m_ActualView: {fileID: 15}
|
||||||
m_Panes:
|
m_Panes:
|
||||||
- {fileID: 14}
|
- {fileID: 14}
|
||||||
- {fileID: 12}
|
- {fileID: 15}
|
||||||
m_Selected: 0
|
m_Selected: 1
|
||||||
m_LastSelected: 1
|
m_LastSelected: 0
|
||||||
--- !u!114 &10
|
--- !u!114 &10
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
@@ -233,23 +233,23 @@ MonoBehaviour:
|
|||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
m_EditorHideFlags: 1
|
m_EditorHideFlags: 1
|
||||||
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
m_Name: ProjectBrowser
|
m_Name: ConsoleWindow
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_Children: []
|
m_Children: []
|
||||||
m_Position:
|
m_Position:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 428.8
|
y: 557
|
||||||
width: 1092
|
width: 1366
|
||||||
height: 294
|
height: 382
|
||||||
m_MinSize: {x: 231, y: 271}
|
m_MinSize: {x: 100, y: 100}
|
||||||
m_MaxSize: {x: 10001, y: 10021}
|
m_MaxSize: {x: 4000, y: 4000}
|
||||||
m_ActualView: {fileID: 15}
|
m_ActualView: {fileID: 16}
|
||||||
m_Panes:
|
m_Panes:
|
||||||
- {fileID: 15}
|
- {fileID: 12}
|
||||||
- {fileID: 16}
|
- {fileID: 16}
|
||||||
m_Selected: 0
|
m_Selected: 1
|
||||||
m_LastSelected: 1
|
m_LastSelected: 0
|
||||||
--- !u!114 &11
|
--- !u!114 &11
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
@@ -265,10 +265,10 @@ MonoBehaviour:
|
|||||||
m_Children: []
|
m_Children: []
|
||||||
m_Position:
|
m_Position:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 1092
|
x: 1366
|
||||||
y: 0
|
y: 0
|
||||||
width: 444
|
width: 554
|
||||||
height: 722.8
|
height: 939
|
||||||
m_MinSize: {x: 275, y: 50}
|
m_MinSize: {x: 275, y: 50}
|
||||||
m_MaxSize: {x: 4000, y: 4000}
|
m_MaxSize: {x: 4000, y: 4000}
|
||||||
m_ActualView: {fileID: 17}
|
m_ActualView: {fileID: 17}
|
||||||
@@ -284,90 +284,138 @@ MonoBehaviour:
|
|||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 0}
|
m_GameObject: {fileID: 0}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
m_EditorHideFlags: 0
|
m_EditorHideFlags: 1
|
||||||
m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0}
|
m_Script: {fileID: 12014, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_MinSize: {x: 100, y: 100}
|
m_MinSize: {x: 230, y: 250}
|
||||||
m_MaxSize: {x: 4000, y: 4000}
|
m_MaxSize: {x: 10000, y: 10000}
|
||||||
m_TitleContent:
|
m_TitleContent:
|
||||||
m_Text: Game
|
m_Text: Project
|
||||||
m_Image: {fileID: 4621777727084837110, guid: 0000000000000000d000000000000000, type: 0}
|
m_Image: {fileID: -5467254957812901981, guid: 0000000000000000d000000000000000, type: 0}
|
||||||
m_Tooltip:
|
m_Tooltip:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 264.80002
|
x: 0
|
||||||
y: 73.6
|
y: 630
|
||||||
width: 825.2
|
width: 1365
|
||||||
height: 407.8
|
height: 361
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
m_SaveData: []
|
m_SaveData: []
|
||||||
m_SerializedViewNames: []
|
m_SearchFilter:
|
||||||
m_SerializedViewValues: []
|
m_NameFilter:
|
||||||
m_PlayModeViewName: GameView
|
m_ClassNames: []
|
||||||
m_ShowGizmos: 0
|
m_AssetLabels: []
|
||||||
m_TargetDisplay: 0
|
m_AssetBundleNames: []
|
||||||
m_ClearColor: {r: 0, g: 0, b: 0, a: 0}
|
m_VersionControlStates: []
|
||||||
m_TargetSize: {x: 825.2, y: 386.8}
|
m_SoftLockControlStates: []
|
||||||
m_TextureFilterMode: 0
|
m_ReferencingInstanceIDs:
|
||||||
m_TextureHideFlags: 61
|
m_SceneHandles:
|
||||||
m_RenderIMGUI: 1
|
m_ShowAllHits: 0
|
||||||
m_EnterPlayModeBehavior: 0
|
m_SkipHidden: 0
|
||||||
m_UseMipMap: 0
|
m_SearchArea: 1
|
||||||
m_VSyncEnabled: 0
|
m_Folders:
|
||||||
m_Gizmos: 0
|
- Assets/Scripts
|
||||||
m_Stats: 0
|
m_Globs: []
|
||||||
m_SelectedSizes: 00000000000000000000000000000000000000000000000000000000000000000000000000000000
|
m_OriginalText:
|
||||||
m_ZoomArea:
|
m_ViewMode: 1
|
||||||
m_HRangeLocked: 0
|
m_StartGridSize: 74
|
||||||
m_VRangeLocked: 0
|
m_LastFolders:
|
||||||
hZoomLockedByDefault: 0
|
- Assets/Scripts
|
||||||
vZoomLockedByDefault: 0
|
m_LastFoldersGridSize: 74
|
||||||
m_HBaseRangeMin: -330.08002
|
m_LastProjectPath: M:\UnityProjects\2D-Top-Down
|
||||||
m_HBaseRangeMax: 330.08002
|
m_LockTracker:
|
||||||
m_VBaseRangeMin: -154.72
|
m_IsLocked: 0
|
||||||
m_VBaseRangeMax: 154.72
|
m_FolderTreeState:
|
||||||
m_HAllowExceedBaseRangeMin: 1
|
scrollPos: {x: 0, y: 0}
|
||||||
m_HAllowExceedBaseRangeMax: 1
|
m_SelectedIDs: 406d0000
|
||||||
m_VAllowExceedBaseRangeMin: 1
|
m_LastClickedID: 27968
|
||||||
m_VAllowExceedBaseRangeMax: 1
|
m_ExpandedIDs: 00000000326d000000ca9a3bffffff7f
|
||||||
m_ScaleWithWindow: 0
|
m_RenameOverlay:
|
||||||
m_HSlider: 0
|
m_UserAcceptedRename: 0
|
||||||
m_VSlider: 0
|
m_Name:
|
||||||
m_IgnoreScrollWheelUntilClicked: 0
|
m_OriginalName:
|
||||||
m_EnableMouseInput: 0
|
m_EditFieldRect:
|
||||||
m_EnableSliderZoomHorizontal: 0
|
serializedVersion: 2
|
||||||
m_EnableSliderZoomVertical: 0
|
x: 0
|
||||||
m_UniformScale: 1
|
y: 0
|
||||||
m_UpDirection: 1
|
width: 0
|
||||||
m_DrawArea:
|
height: 0
|
||||||
serializedVersion: 2
|
m_UserData: 0
|
||||||
x: 0
|
m_IsWaitingForDelay: 0
|
||||||
y: 21
|
m_IsRenaming: 0
|
||||||
width: 825.2
|
m_OriginalEventType: 11
|
||||||
height: 386.8
|
m_IsRenamingFilename: 1
|
||||||
m_Scale: {x: 1, y: 1}
|
m_ClientGUIView: {fileID: 0}
|
||||||
m_Translation: {x: 412.6, y: 193.4}
|
m_SearchString:
|
||||||
m_MarginLeft: 0
|
m_CreateAssetUtility:
|
||||||
m_MarginRight: 0
|
m_EndAction: {fileID: 0}
|
||||||
m_MarginTop: 0
|
m_InstanceID: 0
|
||||||
m_MarginBottom: 0
|
m_Path:
|
||||||
m_LastShownAreaInsideMargins:
|
m_Icon: {fileID: 0}
|
||||||
serializedVersion: 2
|
m_ResourceFile:
|
||||||
x: -412.6
|
m_AssetTreeState:
|
||||||
y: -193.4
|
scrollPos: {x: 0, y: 0}
|
||||||
width: 825.2
|
m_SelectedIDs:
|
||||||
height: 386.8
|
m_LastClickedID: 0
|
||||||
m_MinimalGUI: 1
|
m_ExpandedIDs: 00000000326d000000ca9a3bffffff7f
|
||||||
m_defaultScale: 1
|
m_RenameOverlay:
|
||||||
m_LastWindowPixelSize: {x: 1031.5, y: 509.75}
|
m_UserAcceptedRename: 0
|
||||||
m_ClearInEditMode: 1
|
m_Name:
|
||||||
m_NoCameraWarning: 1
|
m_OriginalName:
|
||||||
m_LowResolutionForAspectRatios: 01000000000000000000
|
m_EditFieldRect:
|
||||||
m_XRRenderMode: 0
|
serializedVersion: 2
|
||||||
m_RenderTexture: {fileID: 0}
|
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: b86c0000
|
||||||
|
m_LastClickedInstanceID: 27832
|
||||||
|
m_HadKeyboardFocusLastEvent: 0
|
||||||
|
m_ExpandedInstanceIDs: c62300006a8e0000f25e000088610000
|
||||||
|
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: 74
|
||||||
|
m_SkipHiddenPackages: 0
|
||||||
|
m_DirectoriesAreaWidth: 207
|
||||||
--- !u!114 &13
|
--- !u!114 &13
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
@@ -384,14 +432,14 @@ MonoBehaviour:
|
|||||||
m_MaxSize: {x: 4000, y: 4000}
|
m_MaxSize: {x: 4000, y: 4000}
|
||||||
m_TitleContent:
|
m_TitleContent:
|
||||||
m_Text: Hierarchy
|
m_Text: Hierarchy
|
||||||
m_Image: {fileID: -3734745235275155857, guid: 0000000000000000d000000000000000, type: 0}
|
m_Image: {fileID: 7966133145522015247, guid: 0000000000000000d000000000000000, type: 0}
|
||||||
m_Tooltip:
|
m_Tooltip:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 73.6
|
y: 73
|
||||||
width: 263.8
|
width: 330
|
||||||
height: 407.8
|
height: 536
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
@@ -399,9 +447,9 @@ MonoBehaviour:
|
|||||||
m_SceneHierarchy:
|
m_SceneHierarchy:
|
||||||
m_TreeViewState:
|
m_TreeViewState:
|
||||||
scrollPos: {x: 0, y: 0}
|
scrollPos: {x: 0, y: 0}
|
||||||
m_SelectedIDs:
|
m_SelectedIDs: 4e7bffff
|
||||||
m_LastClickedID: 0
|
m_LastClickedID: -33970
|
||||||
m_ExpandedIDs: 2efbffff
|
m_ExpandedIDs: b47fffffe6f9ffff8e6c0000
|
||||||
m_RenameOverlay:
|
m_RenameOverlay:
|
||||||
m_UserAcceptedRename: 0
|
m_UserAcceptedRename: 0
|
||||||
m_Name:
|
m_Name:
|
||||||
@@ -441,14 +489,14 @@ MonoBehaviour:
|
|||||||
m_MaxSize: {x: 4000, y: 4000}
|
m_MaxSize: {x: 4000, y: 4000}
|
||||||
m_TitleContent:
|
m_TitleContent:
|
||||||
m_Text: Scene
|
m_Text: Scene
|
||||||
m_Image: {fileID: 8634526014445323508, guid: 0000000000000000d000000000000000, type: 0}
|
m_Image: {fileID: 2593428753322112591, guid: 0000000000000000d000000000000000, type: 0}
|
||||||
m_Tooltip:
|
m_Tooltip:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 264.80002
|
x: 331
|
||||||
y: 73.6
|
y: 73
|
||||||
width: 825.2
|
width: 1033
|
||||||
height: 407.8
|
height: 536
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
@@ -459,7 +507,7 @@ MonoBehaviour:
|
|||||||
collapsed: 0
|
collapsed: 0
|
||||||
displayed: 1
|
displayed: 1
|
||||||
snapOffset: {x: 0, y: 0}
|
snapOffset: {x: 0, y: 0}
|
||||||
snapOffsetDelta: {x: -100, y: -25.600006}
|
snapOffsetDelta: {x: -101, y: -26}
|
||||||
snapCorner: 3
|
snapCorner: 3
|
||||||
id: Tool Settings
|
id: Tool Settings
|
||||||
index: 0
|
index: 0
|
||||||
@@ -672,9 +720,9 @@ MonoBehaviour:
|
|||||||
m_PlayAudio: 0
|
m_PlayAudio: 0
|
||||||
m_AudioPlay: 0
|
m_AudioPlay: 0
|
||||||
m_Position:
|
m_Position:
|
||||||
m_Target: {x: 11.580172, y: 0.6672015, z: 0.4254344}
|
m_Target: {x: 10.275199, y: 3.4533787, z: -0.614853}
|
||||||
speed: 2
|
speed: 2
|
||||||
m_Value: {x: 11.580172, y: 0.6672015, z: 0.4254344}
|
m_Value: {x: 10.275199, y: 3.4533787, z: -0.614853}
|
||||||
m_RenderMode: 0
|
m_RenderMode: 0
|
||||||
m_CameraMode:
|
m_CameraMode:
|
||||||
drawMode: 0
|
drawMode: 0
|
||||||
@@ -725,9 +773,9 @@ MonoBehaviour:
|
|||||||
speed: 2
|
speed: 2
|
||||||
m_Value: {x: 0, y: 0, z: 0, w: 1}
|
m_Value: {x: 0, y: 0, z: 0, w: 1}
|
||||||
m_Size:
|
m_Size:
|
||||||
m_Target: 7.95535
|
m_Target: 6.261133
|
||||||
speed: 2
|
speed: 2
|
||||||
m_Value: 7.95535
|
m_Value: 6.261133
|
||||||
m_Ortho:
|
m_Ortho:
|
||||||
m_Target: 1
|
m_Target: 1
|
||||||
speed: 2
|
speed: 2
|
||||||
@@ -760,138 +808,90 @@ MonoBehaviour:
|
|||||||
m_PrefabAsset: {fileID: 0}
|
m_PrefabAsset: {fileID: 0}
|
||||||
m_GameObject: {fileID: 0}
|
m_GameObject: {fileID: 0}
|
||||||
m_Enabled: 1
|
m_Enabled: 1
|
||||||
m_EditorHideFlags: 1
|
m_EditorHideFlags: 0
|
||||||
m_Script: {fileID: 12014, guid: 0000000000000000e000000000000000, type: 0}
|
m_Script: {fileID: 12015, guid: 0000000000000000e000000000000000, type: 0}
|
||||||
m_Name:
|
m_Name:
|
||||||
m_EditorClassIdentifier:
|
m_EditorClassIdentifier:
|
||||||
m_MinSize: {x: 230, y: 250}
|
m_MinSize: {x: 100, y: 100}
|
||||||
m_MaxSize: {x: 10000, y: 10000}
|
m_MaxSize: {x: 4000, y: 4000}
|
||||||
m_TitleContent:
|
m_TitleContent:
|
||||||
m_Text: Project
|
m_Text: Game
|
||||||
m_Image: {fileID: -5179483145760003458, guid: 0000000000000000d000000000000000, type: 0}
|
m_Image: {fileID: -6423792434712278376, guid: 0000000000000000d000000000000000, type: 0}
|
||||||
m_Tooltip:
|
m_Tooltip:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 331
|
||||||
y: 502.4
|
y: 73
|
||||||
width: 1091
|
width: 1033
|
||||||
height: 273
|
height: 536
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
m_SaveData: []
|
m_SaveData: []
|
||||||
m_SearchFilter:
|
m_SerializedViewNames: []
|
||||||
m_NameFilter:
|
m_SerializedViewValues: []
|
||||||
m_ClassNames: []
|
m_PlayModeViewName: GameView
|
||||||
m_AssetLabels: []
|
m_ShowGizmos: 0
|
||||||
m_AssetBundleNames: []
|
m_TargetDisplay: 0
|
||||||
m_VersionControlStates: []
|
m_ClearColor: {r: 0, g: 0, b: 0, a: 0}
|
||||||
m_SoftLockControlStates: []
|
m_TargetSize: {x: 1033, y: 515}
|
||||||
m_ReferencingInstanceIDs:
|
m_TextureFilterMode: 0
|
||||||
m_SceneHandles:
|
m_TextureHideFlags: 61
|
||||||
m_ShowAllHits: 0
|
m_RenderIMGUI: 1
|
||||||
m_SkipHidden: 0
|
m_EnterPlayModeBehavior: 0
|
||||||
m_SearchArea: 1
|
m_UseMipMap: 0
|
||||||
m_Folders:
|
m_VSyncEnabled: 0
|
||||||
- Assets/Sprites
|
m_Gizmos: 0
|
||||||
m_Globs: []
|
m_Stats: 0
|
||||||
m_OriginalText:
|
m_SelectedSizes: 00000000000000000000000000000000000000000000000000000000000000000000000000000000
|
||||||
m_ViewMode: 1
|
m_ZoomArea:
|
||||||
m_StartGridSize: 74
|
m_HRangeLocked: 0
|
||||||
m_LastFolders:
|
m_VRangeLocked: 0
|
||||||
- Assets/Sprites
|
hZoomLockedByDefault: 0
|
||||||
m_LastFoldersGridSize: 74
|
vZoomLockedByDefault: 0
|
||||||
m_LastProjectPath: C:\Users\Janis\Unity Projects\2d-top-down
|
m_HBaseRangeMin: -516.5
|
||||||
m_LockTracker:
|
m_HBaseRangeMax: 516.5
|
||||||
m_IsLocked: 0
|
m_VBaseRangeMin: -257.5
|
||||||
m_FolderTreeState:
|
m_VBaseRangeMax: 257.5
|
||||||
scrollPos: {x: 0, y: 0}
|
m_HAllowExceedBaseRangeMin: 1
|
||||||
m_SelectedIDs: e86d0000
|
m_HAllowExceedBaseRangeMax: 1
|
||||||
m_LastClickedID: 28136
|
m_VAllowExceedBaseRangeMin: 1
|
||||||
m_ExpandedIDs: 00000000266c000000ca9a3bffffff7f
|
m_VAllowExceedBaseRangeMax: 1
|
||||||
m_RenameOverlay:
|
m_ScaleWithWindow: 0
|
||||||
m_UserAcceptedRename: 0
|
m_HSlider: 0
|
||||||
m_Name:
|
m_VSlider: 0
|
||||||
m_OriginalName:
|
m_IgnoreScrollWheelUntilClicked: 0
|
||||||
m_EditFieldRect:
|
m_EnableMouseInput: 1
|
||||||
serializedVersion: 2
|
m_EnableSliderZoomHorizontal: 0
|
||||||
x: 0
|
m_EnableSliderZoomVertical: 0
|
||||||
y: 0
|
m_UniformScale: 1
|
||||||
width: 0
|
m_UpDirection: 1
|
||||||
height: 0
|
m_DrawArea:
|
||||||
m_UserData: 0
|
serializedVersion: 2
|
||||||
m_IsWaitingForDelay: 0
|
x: 0
|
||||||
m_IsRenaming: 0
|
y: 21
|
||||||
m_OriginalEventType: 11
|
width: 1033
|
||||||
m_IsRenamingFilename: 1
|
height: 515
|
||||||
m_ClientGUIView: {fileID: 0}
|
m_Scale: {x: 1, y: 1}
|
||||||
m_SearchString:
|
m_Translation: {x: 516.5, y: 257.5}
|
||||||
m_CreateAssetUtility:
|
m_MarginLeft: 0
|
||||||
m_EndAction: {fileID: 0}
|
m_MarginRight: 0
|
||||||
m_InstanceID: 0
|
m_MarginTop: 0
|
||||||
m_Path:
|
m_MarginBottom: 0
|
||||||
m_Icon: {fileID: 0}
|
m_LastShownAreaInsideMargins:
|
||||||
m_ResourceFile:
|
serializedVersion: 2
|
||||||
m_AssetTreeState:
|
x: -516.5
|
||||||
scrollPos: {x: 0, y: 0}
|
y: -257.5
|
||||||
m_SelectedIDs:
|
width: 1033
|
||||||
m_LastClickedID: 0
|
height: 515
|
||||||
m_ExpandedIDs: 00000000266c0000
|
m_MinimalGUI: 1
|
||||||
m_RenameOverlay:
|
m_defaultScale: 1
|
||||||
m_UserAcceptedRename: 0
|
m_LastWindowPixelSize: {x: 1033, y: 536}
|
||||||
m_Name:
|
m_ClearInEditMode: 1
|
||||||
m_OriginalName:
|
m_NoCameraWarning: 1
|
||||||
m_EditFieldRect:
|
m_LowResolutionForAspectRatios: 01000000000000000000
|
||||||
serializedVersion: 2
|
m_XRRenderMode: 0
|
||||||
x: 0
|
m_RenderTexture: {fileID: 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: c62300006a8e0000f25e000088610000
|
|
||||||
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: 74
|
|
||||||
m_SkipHiddenPackages: 0
|
|
||||||
m_DirectoriesAreaWidth: 207
|
|
||||||
--- !u!114 &16
|
--- !u!114 &16
|
||||||
MonoBehaviour:
|
MonoBehaviour:
|
||||||
m_ObjectHideFlags: 52
|
m_ObjectHideFlags: 52
|
||||||
@@ -908,13 +908,13 @@ MonoBehaviour:
|
|||||||
m_MaxSize: {x: 4000, y: 4000}
|
m_MaxSize: {x: 4000, y: 4000}
|
||||||
m_TitleContent:
|
m_TitleContent:
|
||||||
m_Text: Console
|
m_Text: Console
|
||||||
m_Image: {fileID: -4950941429401207979, guid: 0000000000000000d000000000000000, type: 0}
|
m_Image: {fileID: -4327648978806127646, guid: 0000000000000000d000000000000000, type: 0}
|
||||||
m_Tooltip:
|
m_Tooltip:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 0
|
x: 0
|
||||||
y: 630
|
y: 630
|
||||||
width: 1364
|
width: 1365
|
||||||
height: 361
|
height: 361
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
@@ -936,14 +936,14 @@ MonoBehaviour:
|
|||||||
m_MaxSize: {x: 4000, y: 4000}
|
m_MaxSize: {x: 4000, y: 4000}
|
||||||
m_TitleContent:
|
m_TitleContent:
|
||||||
m_Text: Inspector
|
m_Text: Inspector
|
||||||
m_Image: {fileID: -440750813802333266, guid: 0000000000000000d000000000000000, type: 0}
|
m_Image: {fileID: -2667387946076563598, guid: 0000000000000000d000000000000000, type: 0}
|
||||||
m_Tooltip:
|
m_Tooltip:
|
||||||
m_Pos:
|
m_Pos:
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
x: 1092
|
x: 1366
|
||||||
y: 73.6
|
y: 73
|
||||||
width: 443
|
width: 553
|
||||||
height: 701.8
|
height: 918
|
||||||
m_ViewDataDictionary: {fileID: 0}
|
m_ViewDataDictionary: {fileID: 0}
|
||||||
m_OverlayCanvas:
|
m_OverlayCanvas:
|
||||||
m_LastAppliedPresetName: Default
|
m_LastAppliedPresetName: Default
|
||||||
|
|||||||
Reference in New Issue
Block a user