Files
Magical-Jumping-Bean/Library/metadata/3f/3f8643c1f8dd449e85b548a14edbea2e
T

59 lines
6.8 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_Namespacepp\ŕyŻĐ<óh4ŹÝDéX[„ä˝®âGPackages/com.unity.timeline/Editor/Window/Modes/TimelineReadOnlyMode.csŕyŻTimelineReadOnlyMode˛namespace UnityEditor.Timeline
{
class TimelineReadOnlyMode : TimelineMode
{
public TimelineReadOnlyMode()
{
headerState = new HeaderState()
{
breadCrumb = TimelineModeGUIState.Enabled,
options = TimelineModeGUIState.Enabled,
sequenceSelector = TimelineModeGUIState.Enabled,
};
trackOptionsState = new TrackOptionsState()
{
newButton = TimelineModeGUIState.Disabled,
editAsAssetButton = TimelineModeGUIState.Disabled,
};
mode = TimelineModes.ReadOnly;
}
public override bool ShouldShowPlayRange(WindowState state)
{
return state.editSequence.director != null && state.playRangeEnabled;
}
public override bool ShouldShowTimeCursor(WindowState state)
{
return state.editSequence.director != null;
}
public override TimelineModeGUIState TrackState(WindowState state)
{
return TimelineModeGUIState.Disabled;
}
public override TimelineModeGUIState ToolbarState(WindowState state)
{
return state.editSequence.director == null ? TimelineModeGUIState.Disabled : TimelineModeGUIState.Enabled;
}
public override TimelineModeGUIState PreviewState(WindowState state)
{
return state.editSequence.director == null ? TimelineModeGUIState.Disabled : TimelineModeGUIState.Enabled;
}
public override TimelineModeGUIState EditModeButtonsState(WindowState state)
{
return TimelineModeGUIState.Disabled;