UI revisions

This commit is contained in:
AbstractConcept 2022-09-25 01:15:27 -05:00
parent 007e2dd513
commit 1e2c4fa6bf
68 changed files with 2516 additions and 1100 deletions

View File

@ -201,7 +201,7 @@ RectTransform:
m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 260, y: 200}
m_SizeDelta: {x: 400, y: 300}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &7715503544115872490
CanvasRenderer:
@ -383,8 +383,8 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: 0, y: -115}
m_SizeDelta: {x: 260, y: 30}
m_AnchoredPosition: {x: 0, y: -165}
m_SizeDelta: {x: 400, y: 30}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &7715503544528335665
CanvasRenderer:
@ -512,8 +512,8 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchoredPosition: {x: 0, y: 140}
m_SizeDelta: {x: 260, y: 80}
m_AnchoredPosition: {x: 0, y: 190}
m_SizeDelta: {x: 400, y: 80}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &7715503544597145776
CanvasRenderer:
@ -774,10 +774,10 @@ RectTransform:
m_Father: {fileID: 7715503544597145778}
m_RootOrder: 0
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 0.5, y: 0.5}
m_AnchorMax: {x: 0.5, y: 0.5}
m_AnchorMin: {x: 0, y: 0}
m_AnchorMax: {x: 1, y: 1}
m_AnchoredPosition: {x: 0, y: 0}
m_SizeDelta: {x: 260, y: 80}
m_SizeDelta: {x: 0, y: 0}
m_Pivot: {x: 0.5, y: 0.5}
--- !u!222 &7715503544946347197
CanvasRenderer:
@ -858,8 +858,8 @@ RectTransform:
m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
m_AnchorMin: {x: 1, y: 0}
m_AnchorMax: {x: 1, y: 0}
m_AnchoredPosition: {x: 0, y: 200}
m_SizeDelta: {x: 20, y: 200}
m_AnchoredPosition: {x: 0, y: 300}
m_SizeDelta: {x: 20, y: 300}
m_Pivot: {x: 1, y: 1}
--- !u!222 &7715503544952922354
CanvasRenderer:

File diff suppressed because it is too large Load Diff

View File

@ -494,7 +494,7 @@ namespace DigitalRuby.AdvancedPolygonCollider
#endif
Debug.Log("Updated polygon.");
//Debug.Log("Updated polygon.");
}
catch (Exception ex)
{

View File

@ -15,6 +15,7 @@ namespace RimWorldAnimationStudio
public InputField raceOffsetXField;
public InputField raceOffsetZField;
public Toggle initiatorToggle;
public Dropdown selectActorLayerDropdown;
public void Initialize()
{
@ -68,7 +69,17 @@ namespace RimWorldAnimationStudio
float.TryParse(raceOffsetZField.text, out z);
actor.SetAlienRaceOffset(new Vector2(x, z));
Workspace.Instance.RecordEvent("Actor body type offset data");
Workspace.Instance.RecordEvent("Actor body offset data");
}
public void OnActorLayerChange()
{
PawnAnimationClip clip = Workspace.Instance.GetCurrentPawnAnimationClip();
if (clip == null) return;
clip.layer = selectActorLayerDropdown.captionText.text;
Workspace.Instance.RecordEvent("Actor render layer " + clip.layer);
}
public void Update()

View File

@ -87,22 +87,14 @@ namespace RimWorldAnimationStudio
RunPostLoadOperations(animationDef);
Debug.Log("Loaded AnimationDef: " + animationDef.defName);
Workspace.animationDef = animationDef;
animationDef.Initialize();
Workspace.Instance.ClearHistory();
Workspace.Instance.RecordEvent("AnimationDef loaded");
AnimationController.Instance.MakeDirty();
var animationDefCards = Resources.FindObjectsOfTypeAll(typeof(AnimationDefCard)) as AnimationDefCard[];
if (animationDefCards != null)
{
animationDefCards[0].Initialize();
animationDefCards[0].gameObject.SetActive(true);
}
}
public void RunPostLoadOperations(AnimationDef animationDef)

View File

@ -48,25 +48,9 @@ namespace RimWorldAnimationStudio
curZoom += Input.GetAxis("Mouse ScrollWheel") * scrollSpeed * 0.1f;
curZoom = Mathf.Clamp(curZoom, maxZoom, minZoom);
Vector3 cameraPosition = Vector3.Lerp(transform.position, new Vector3(x, y, -10), 0.2f);
transform.position = cameraPosition;
cam.orthographicSize = Mathf.Abs(curZoom);
}
public void SetPosition(Vector3 position)
{
x = position.x;
y = position.y;
transform.position = position;
}
public void SetZoom(float zoom)
{
this.zoom = Mathf.Clamp(zoom, maxZoom, minZoom);
}
public void StartMouseDrag()
{
Vector3 delta = cam.ScreenToWorldPoint(Input.mousePosition) - cam.transform.position;

View File

@ -14,7 +14,7 @@ namespace RimWorldAnimationStudio
private int actorID = -1;
private int hashcode = -1;
public void Start()
public void OnEnable()
{
dropdown = GetComponent<Dropdown>();
label = transform.Find("Label").GetComponent<Text>();

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -21,7 +21,7 @@ MonoBehaviour:
m_ShowMode: 4
m_Title:
m_RootView: {fileID: 2}
m_MinSize: {x: 875, y: 521}
m_MinSize: {x: 875, y: 542}
m_MaxSize: {x: 10000, y: 10000}
m_Maximized: 1
--- !u!114 &2
@ -46,7 +46,7 @@ MonoBehaviour:
y: 0
width: 1920
height: 997
m_MinSize: {x: 875, y: 300}
m_MinSize: {x: 875, y: 542}
m_MaxSize: {x: 10000, y: 10000}
--- !u!114 &3
MonoBehaviour:
@ -112,10 +112,10 @@ MonoBehaviour:
y: 30
width: 1920
height: 947
m_MinSize: {x: 678, y: 471}
m_MaxSize: {x: 14000, y: 14021}
m_MinSize: {x: 678, y: 492}
m_MaxSize: {x: 14002, y: 14042}
vertical: 0
controlID: 18138
controlID: 126945
--- !u!114 &6
MonoBehaviour:
m_ObjectHideFlags: 52
@ -137,10 +137,10 @@ MonoBehaviour:
y: 0
width: 1524
height: 947
m_MinSize: {x: 403, y: 471}
m_MaxSize: {x: 10000, y: 14021}
m_MinSize: {x: 402, y: 492}
m_MaxSize: {x: 10001, y: 14042}
vertical: 1
controlID: 18139
controlID: 126946
--- !u!114 &7
MonoBehaviour:
m_ObjectHideFlags: 52
@ -162,10 +162,10 @@ MonoBehaviour:
y: 0
width: 1524
height: 648
m_MinSize: {x: 403, y: 221}
m_MaxSize: {x: 8003, y: 4021}
m_MinSize: {x: 402, y: 221}
m_MaxSize: {x: 8002, y: 4021}
vertical: 0
controlID: 18140
controlID: 126947
--- !u!114 &8
MonoBehaviour:
m_ObjectHideFlags: 52
@ -183,10 +183,10 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 0
width: 401
width: 384
height: 648
m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4000, y: 4000}
m_MinSize: {x: 201, y: 221}
m_MaxSize: {x: 4001, y: 4021}
m_ActualView: {fileID: 13}
m_Panes:
- {fileID: 13}
@ -207,9 +207,9 @@ MonoBehaviour:
m_Children: []
m_Position:
serializedVersion: 2
x: 401
x: 384
y: 0
width: 1123
width: 1140
height: 648
m_MinSize: {x: 202, y: 221}
m_MaxSize: {x: 4002, y: 4021}
@ -296,9 +296,9 @@ MonoBehaviour:
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 402
x: 385
y: 19
width: 1121
width: 1138
height: 627
m_ViewDataDictionary: {fileID: 0}
m_SerializedViewNames: []
@ -309,7 +309,7 @@ MonoBehaviour:
m_ShowGizmos: 0
m_TargetDisplay: 0
m_ClearColor: {r: 0, g: 0, b: 0, a: 0}
m_TargetSize: {x: 1121, y: 606}
m_TargetSize: {x: 1138, y: 606}
m_TextureFilterMode: 0
m_TextureHideFlags: 61
m_RenderIMGUI: 1
@ -324,10 +324,10 @@ MonoBehaviour:
m_VRangeLocked: 0
hZoomLockedByDefault: 0
vZoomLockedByDefault: 0
m_HBaseRangeMin: -560.5
m_HBaseRangeMax: 560.5
m_VBaseRangeMin: -303
m_VBaseRangeMax: 303
m_HBaseRangeMin: -960
m_HBaseRangeMax: 960
m_VBaseRangeMin: -453.5
m_VBaseRangeMax: 453.5
m_HAllowExceedBaseRangeMin: 1
m_HAllowExceedBaseRangeMax: 1
m_VAllowExceedBaseRangeMin: 1
@ -345,23 +345,23 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 21
width: 1121
height: 606
width: 1920
height: 907
m_Scale: {x: 1, y: 1}
m_Translation: {x: 560.5, y: 303}
m_Translation: {x: 960, y: 453.5}
m_MarginLeft: 0
m_MarginRight: 0
m_MarginTop: 0
m_MarginBottom: 0
m_LastShownAreaInsideMargins:
serializedVersion: 2
x: -560.5
y: -303
width: 1121
height: 606
x: -960
y: -453.5
width: 1920
height: 907
m_MinimalGUI: 1
m_defaultScale: 1
m_LastWindowPixelSize: {x: 1121, y: 627}
m_LastWindowPixelSize: {x: 1920, y: 928}
m_ClearInEditMode: 1
m_NoCameraWarning: 1
m_LowResolutionForAspectRatios: 01000000000000000000
@ -390,15 +390,15 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 73
width: 400
width: 383
height: 627
m_ViewDataDictionary: {fileID: 0}
m_SceneHierarchy:
m_TreeViewState:
scrollPos: {x: 0, y: 346}
m_SelectedIDs: c83a0000
m_LastClickedID: 15048
m_ExpandedIDs: 10c2ffff62fbffff2e3c0000ce3c0000d83c0000003d0000043f0000643f00007c43000072440000
scrollPos: {x: 0, y: 194}
m_SelectedIDs: f43c0000
m_LastClickedID: 15604
m_ExpandedIDs: 84f3fdff8af3fdff98f3fdffa4f3fdff3aa3feff96faffffecfafffff0fafffff8faffff44fbffff62fbffff0c3a0000823a0000ae3a0000ba3b0000c43b0000d83b0000ea3b0000f43b0000543c00006e3c0000823c00009e3c0000b03c0000e43c0000f43c0000683d00005a3e0000663e00006c3e0000983e0000e03e00000e3f0000363f00006c3f00007e3f0000a63f0000b23f000060400000a0400000d0400000f640000004410000744100007a4200007e4200001243000080430000
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@ -443,9 +443,9 @@ MonoBehaviour:
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 401
x: 384
y: 73
width: 1121
width: 1138
height: 627
m_ViewDataDictionary: {fileID: 0}
m_ShowContextualTools: 0
@ -458,9 +458,9 @@ MonoBehaviour:
m_PlayAudio: 0
m_AudioPlay: 0
m_Position:
m_Target: {x: 818.2209, y: 313.30676, z: -614.875}
m_Target: {x: 542.35156, y: 345.67032, z: -1439.875}
speed: 2
m_Value: {x: 818.2209, y: 313.30676, z: -614.875}
m_Value: {x: 542.35156, y: 345.67032, z: -1439.875}
m_RenderMode: 0
m_CameraMode:
drawMode: 0
@ -510,9 +510,9 @@ MonoBehaviour:
speed: 2
m_Value: {x: 0, y: 0, z: 0, w: 1}
m_Size:
m_Target: 401.01358
m_Target: 365.94968
speed: 2
m_Value: 401.01358
m_Value: 365.94968
m_Ortho:
m_Target: 1
speed: 2
@ -1115,9 +1115,9 @@ MonoBehaviour:
m_IsLocked: 0
m_FolderTreeState:
scrollPos: {x: 0, y: 0}
m_SelectedIDs: 3e470000
m_LastClickedID: 18238
m_ExpandedIDs: 00000000204700002247000024470000264700002847000000ca9a3b
m_SelectedIDs: a4470000
m_LastClickedID: 18340
m_ExpandedIDs: 0000000086470000884700008a4700008c4700008e47000000ca9a3b
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@ -1145,7 +1145,7 @@ MonoBehaviour:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
m_LastClickedID: 0
m_ExpandedIDs: 00000000204700002247000024470000264700002847000000ca9a3b
m_ExpandedIDs: 0000000086470000884700008a4700008c4700008e47000000ca9a3b
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@ -1295,4 +1295,4 @@ MonoBehaviour:
m_PrefName: Preview_InspectorPreview
m_PreviewWindow: {fileID: 0}
m_LastInspectedObjectInstanceID: -1
m_LastVerticalScrollValue: 100
m_LastVerticalScrollValue: 50

View File

@ -21,10 +21,10 @@ MonoBehaviour:
y: 30
width: 1920
height: 947
m_MinSize: {x: 678, y: 471}
m_MaxSize: {x: 14000, y: 14021}
m_MinSize: {x: 677, y: 321}
m_MaxSize: {x: 12002, y: 8021}
vertical: 0
controlID: 17786
controlID: 126543
--- !u!114 &2
MonoBehaviour:
m_ObjectHideFlags: 52
@ -46,9 +46,9 @@ MonoBehaviour:
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 402
x: 385
y: 19
width: 1121
width: 1138
height: 627
m_ViewDataDictionary: {fileID: 0}
m_SerializedViewNames: []
@ -59,7 +59,7 @@ MonoBehaviour:
m_ShowGizmos: 0
m_TargetDisplay: 0
m_ClearColor: {r: 0, g: 0, b: 0, a: 0}
m_TargetSize: {x: 1121, y: 606}
m_TargetSize: {x: 1138, y: 606}
m_TextureFilterMode: 0
m_TextureHideFlags: 61
m_RenderIMGUI: 1
@ -74,8 +74,8 @@ MonoBehaviour:
m_VRangeLocked: 0
hZoomLockedByDefault: 0
vZoomLockedByDefault: 0
m_HBaseRangeMin: -560.5
m_HBaseRangeMax: 560.5
m_HBaseRangeMin: -569
m_HBaseRangeMax: 569
m_VBaseRangeMin: -303
m_VBaseRangeMax: 303
m_HAllowExceedBaseRangeMin: 1
@ -95,23 +95,23 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 21
width: 1121
width: 1138
height: 606
m_Scale: {x: 1, y: 1}
m_Translation: {x: 560.5, y: 303}
m_Translation: {x: 569, y: 303}
m_MarginLeft: 0
m_MarginRight: 0
m_MarginTop: 0
m_MarginBottom: 0
m_LastShownAreaInsideMargins:
serializedVersion: 2
x: -560.5
x: -569
y: -303
width: 1121
width: 1138
height: 606
m_MinimalGUI: 1
m_defaultScale: 1
m_LastWindowPixelSize: {x: 1121, y: 627}
m_LastWindowPixelSize: {x: 1138, y: 627}
m_ClearInEditMode: 1
m_NoCameraWarning: 1
m_LowResolutionForAspectRatios: 01000000000000000000
@ -138,10 +138,10 @@ MonoBehaviour:
y: 0
width: 1524
height: 947
m_MinSize: {x: 403, y: 471}
m_MaxSize: {x: 10000, y: 14021}
m_MinSize: {x: 402, y: 321}
m_MaxSize: {x: 8002, y: 8021}
vertical: 1
controlID: 17787
controlID: 126544
--- !u!114 &4
MonoBehaviour:
m_ObjectHideFlags: 52
@ -163,10 +163,10 @@ MonoBehaviour:
y: 0
width: 1524
height: 648
m_MinSize: {x: 403, y: 221}
m_MaxSize: {x: 8003, y: 4021}
m_MinSize: {x: 402, y: 221}
m_MaxSize: {x: 8002, y: 4021}
vertical: 0
controlID: 17788
controlID: 126545
--- !u!114 &5
MonoBehaviour:
m_ObjectHideFlags: 52
@ -184,10 +184,10 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 0
width: 401
width: 384
height: 648
m_MinSize: {x: 201, y: 221}
m_MaxSize: {x: 4001, y: 4021}
m_MinSize: {x: 200, y: 200}
m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 6}
m_Panes:
- {fileID: 6}
@ -216,15 +216,15 @@ MonoBehaviour:
serializedVersion: 2
x: 0
y: 73
width: 400
width: 383
height: 627
m_ViewDataDictionary: {fileID: 0}
m_SceneHierarchy:
m_TreeViewState:
scrollPos: {x: 0, y: 346}
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
m_LastClickedID: 0
m_ExpandedIDs: 10c2ffff62fbffff2e3c0000ce3c0000d83c0000003d0000043f0000643f00007c43000072440000
m_ExpandedIDs: 84f3fdff8af3fdff98f3fdffa4f3fdff3aa3feff96faffffecfafffff0fafffff8faffff44fbffff62fbffff0c3a0000823a0000ae3a0000ba3b0000c43b0000d83b0000ea3b0000f43b0000543c00006e3c0000823c00009e3c0000b03c0000e43c0000f43c0000683d00005a3e0000663e00006c3e0000983e0000e03e00000e3f0000363f00006c3f00007e3f0000a63f0000b23f000060400000a0400000d0400000f640000004410000744100007a4200007e4200001243000080430000
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@ -263,9 +263,9 @@ MonoBehaviour:
m_Children: []
m_Position:
serializedVersion: 2
x: 401
x: 384
y: 0
width: 1123
width: 1140
height: 648
m_MinSize: {x: 202, y: 221}
m_MaxSize: {x: 4002, y: 4021}
@ -298,9 +298,9 @@ MonoBehaviour:
m_Tooltip:
m_Pos:
serializedVersion: 2
x: 401
x: 384
y: 73
width: 1121
width: 1138
height: 627
m_ViewDataDictionary: {fileID: 0}
m_ShowContextualTools: 0
@ -313,9 +313,9 @@ MonoBehaviour:
m_PlayAudio: 0
m_AudioPlay: 0
m_Position:
m_Target: {x: 818.2209, y: 313.30676, z: -614.875}
m_Target: {x: 542.35156, y: 345.67032, z: -1439.875}
speed: 2
m_Value: {x: 818.2209, y: 313.30676, z: -614.875}
m_Value: {x: 542.35156, y: 345.67032, z: -1439.875}
m_RenderMode: 0
m_CameraMode:
drawMode: 0
@ -365,9 +365,9 @@ MonoBehaviour:
speed: 2
m_Value: {x: 0, y: 0, z: 0, w: 1}
m_Size:
m_Target: 401.01358
m_Target: 365.94968
speed: 2
m_Value: 401.01358
m_Value: 365.94968
m_Ortho:
m_Target: 1
speed: 2
@ -930,7 +930,7 @@ MonoBehaviour:
m_Enabled: 1
m_EditorHideFlags: 1
m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0}
m_Name: ProjectBrowser
m_Name: ConsoleWindow
m_EditorClassIdentifier:
m_Children: []
m_Position:
@ -939,15 +939,15 @@ MonoBehaviour:
y: 648
width: 1524
height: 299
m_MinSize: {x: 231, y: 271}
m_MaxSize: {x: 10001, y: 10021}
m_ActualView: {fileID: 12}
m_MinSize: {x: 100, y: 100}
m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 13}
m_Panes:
- {fileID: 12}
- {fileID: 13}
- {fileID: 14}
m_Selected: 0
m_LastSelected: 1
m_Selected: 1
m_LastSelected: 0
--- !u!114 &12
MonoBehaviour:
m_ObjectHideFlags: 52
@ -998,9 +998,9 @@ MonoBehaviour:
m_IsLocked: 0
m_FolderTreeState:
scrollPos: {x: 0, y: 0}
m_SelectedIDs: 3e470000
m_LastClickedID: 18238
m_ExpandedIDs: 00000000204700002247000024470000264700002847000000ca9a3b
m_SelectedIDs: a4470000
m_LastClickedID: 18340
m_ExpandedIDs: 0000000086470000884700008a4700008c4700008e47000000ca9a3b
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@ -1028,7 +1028,7 @@ MonoBehaviour:
scrollPos: {x: 0, y: 0}
m_SelectedIDs:
m_LastClickedID: 0
m_ExpandedIDs: 00000000204700002247000024470000264700002847000000ca9a3b
m_ExpandedIDs: 0000000086470000884700008a4700008c4700008e47000000ca9a3b
m_RenameOverlay:
m_UserAcceptedRename: 0
m_Name:
@ -1053,8 +1053,8 @@ MonoBehaviour:
m_Icon: {fileID: 0}
m_ResourceFile:
m_ListAreaState:
m_SelectedInstanceIDs: c83a0000
m_LastClickedInstanceID: 15048
m_SelectedInstanceIDs: 543c0000
m_LastClickedInstanceID: 15444
m_HadKeyboardFocusLastEvent: 0
m_ExpandedInstanceIDs: c6230000303a0000063a0000a83d00005c66000000870000f8860000004a00004a4600000c43000000000000
m_RenameOverlay:
@ -1160,8 +1160,8 @@ MonoBehaviour:
y: 0
width: 396
height: 947
m_MinSize: {x: 276, y: 71}
m_MaxSize: {x: 4001, y: 4021}
m_MinSize: {x: 275, y: 50}
m_MaxSize: {x: 4000, y: 4000}
m_ActualView: {fileID: 16}
m_Panes:
- {fileID: 16}
@ -1203,5 +1203,5 @@ MonoBehaviour:
m_ControlHash: -371814159
m_PrefName: Preview_InspectorPreview
m_PreviewWindow: {fileID: 0}
m_LastInspectedObjectInstanceID: 15048
m_LastVerticalScrollValue: 100
m_LastInspectedObjectInstanceID: 15630
m_LastVerticalScrollValue: 50

Binary file not shown.

Binary file not shown.

View File

@ -1 +1 @@
{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":true,"audioPlay":false,"sceneViewState":{"showFog":true,"showMaterialUpdate":false,"showSkybox":true,"showFlares":true,"showImageEffects":true,"showParticleSystems":true},"in2DMode":true,"pivot":{"x":818.2208862304688,"y":313.3067626953125,"z":-614.875},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0},"size":401.0135803222656,"orthographic":true}
{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":true,"audioPlay":false,"sceneViewState":{"showFog":true,"showMaterialUpdate":false,"showSkybox":true,"showFlares":true,"showImageEffects":true,"showParticleSystems":true},"in2DMode":true,"pivot":{"x":542.3515625,"y":345.6703186035156,"z":-1439.875},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0},"size":365.9496765136719,"orthographic":true}