Files
Magical-Jumping-Bean/Library/metadata/3c/3c09dc5cd0a70cf40856b7d406106ee1
T

89 lines
7.7 KiB
Plaintext
Raw Normal View History

2019-09-29 19:40:54 -04:00
íÄ2019.2.3f1ţ˙˙˙˙˙’3$řĚuńě˛e+ Í=^7€˙˙˙˙¦€˛Đ¦¦¦€#¦€+H€3˙˙˙˙1€1€˙˙˙˙@Ţ Q€j
H€<˙˙˙˙ 1€1€˙˙˙˙ @Ţ
Q€jŐ€I˙˙˙˙1€1€˙˙˙˙ŔŢH€j€˙˙˙˙1€1€˙˙˙˙@ŢQ€j€PAssetMetaDataguiddata[0]data[1]data[2]data[3]pathNameoriginalNamelabelsassetStoreRef ˙˙fš†!ë59Ý4QÁóBí7€˙˙˙˙¦€˛
E Ţ€#.€,5a Ţ€#.€,€r Ţ€# .€,
H€«€˙˙˙˙ 1€1€˙˙˙˙ @Ţ
Q€jń€J˙˙˙˙Ŕ1€1€˙˙˙˙Ţ€j€˙˙˙˙\€˙˙˙˙H€r˙˙˙˙1€1€˙˙˙˙@ŢQ€jH€w˙˙˙˙1€1€˙˙˙˙@ŢQ€jH€€˙˙˙˙1€1€˙˙˙˙@ŢQ€jy
 Ţ€#!.€,"€…˙˙˙˙#@1€1€˙˙˙˙$Ţ%.€j&Ő€“˙˙˙˙'1€1€˙˙˙˙(ŔŢ)€j€˙˙˙˙*H€›€˙˙˙˙+1€1€˙˙˙˙,@Ţ-Q€j.y
 /Ţ€#0.€,1 €§2@ľ€¶ 3@Ţ€#4.€,5H€»˙˙˙˙61€1€˙˙˙˙7@Ţ8Q€j9H€Ć˙˙˙˙:1€1€˙˙˙˙;@Ţ<Q€j=H€Ř˙˙˙˙>1€1€˙˙˙˙?@Ţ@Q€jAMonoImporterPPtr<EditorExtension>m_FileIDm_PathIDPPtr<PrefabInstance>m_ExternalObjectsSourceAssetIdentifiertypeassemblynamem_UsedFileIDsm_DefaultReferencesexecutionOrdericonm_UserDatam_AssetBundleNamem_AssetBundleVariants˙˙ŁGń×ÜŹZ56 :!@iÁJ*€7€˙˙˙˙¦€˛E Ţ.(a Ţ.€r Ţ .
H€«€˙˙˙˙ 1€1€˙˙˙˙ @Ţ
Q€jH€ę€˙˙˙˙1€1€˙˙˙˙@ŢQ€jń€=˙˙˙˙1€1€˙˙˙˙Ţ€j€˙˙˙˙H€›€˙˙˙˙1€1€˙˙˙˙@ŢQ€jy
 Ţ.y€Q Ţ. Ţ€X!H€i˙˙˙˙"1€1€˙˙˙˙#@Ţ$Q€j%H€u˙˙˙˙&1€1€˙˙˙˙'@Ţ(Q€j)PPtr<EditorExtension>m_FileIDm_PathIDPPtr<PrefabInstance>m_DefaultReferencesm_Iconm_ExecutionOrderm_ClassNamem_Namespacetx\ŕyŻŘÜ
ĂÍĹ
zŔO€e{M`ćLPackages/com.unity.timeline/Editor/Animation/BindingTreeViewDataSourceGUI.csŕyŻBindingTreeViewDataSourceGUIU
using UnityEditor;
using UnityEditor.IMGUI.Controls;
using UnityEngine;
namespace UnityEditorInternal
{
class BindingTreeViewGUI : TreeViewGUI
{
static readonly float s_RowRightOffset = 10;
static readonly float s_ColorIndicatorTopMargin = 3;
static readonly Color s_KeyColorForNonCurves = new Color(0.7f, 0.7f, 0.7f, 0.5f);
static readonly Color s_ChildrenCurveLabelColor = new Color(1.0f, 1.0f, 1.0f, 0.7f);
public BindingTreeViewGUI(TreeViewController treeView)
: base(treeView, true)
{
k_IconWidth = 13.0f;
}
public override void OnRowGUI(Rect rowRect, TreeViewItem node, int row, bool selected, bool focused)
{
Color originalColor = GUI.color;
GUI.color = node.parent == null ||
node.parent.id == BindingTreeViewDataSource.RootID ||
node.parent.id == BindingTreeViewDataSource.GroupID ?
Color.white :
s_ChildrenCurveLabelColor;
base.OnRowGUI(rowRect, node, row, selected, focused);
GUI.color = originalColor;
DoCurveColorIndicator(rowRect, node as CurveTreeViewNode);
}
protected override bool IsRenaming(int id)
{
return false;
}
public override bool BeginRename(TreeViewItem item, float delay)
{
return false;
}
void DoCurveColorIndicator(Rect rect, CurveTreeViewNode node)
{
if (node == null)
return;
if (Event.current.type != EventType.Repaint)
return;
Color originalColor = GUI.color;
if (node.bindings.Length == 1 && !node.bindings[0].isPPtrCurve)
GUI.color = CurveUtility.GetPropertyColor(node.bindings[0].propertyName);
else
GUI.color = s_KeyColorForNonCurves;
Texture icon = CurveUtility.GetIconCurve();
rect = new Rect(rect.xMax - s_RowRightOffset - (icon.width * 0.5f) - 5, rect.yMin + s_ColorIndicatorTopMargin, icon.width, icon.height);
GUI.DrawTexture(rect, icon, ScaleMode.ScaleToFit, true, 1);
GUI.color = originalColor;
}
protected override Texture GetIconForItem(TreeViewItem item)
{
var node = item as CurveTreeViewNode;
if (node == null)
return null;
if (node.bindings == null || node.bindings.Length == 0)
return null;