Files
Magical-Jumping-Bean/Library/metadata/fe/fe03a7b0ba57a4d488b6c327ae16c335
T

98 lines
9.8 KiB
Plaintext
Raw Normal View History

2019-09-29 19:40:54 -04:00
í'42019.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š†!ë5˜9Ý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_Namespacelp\ày¯ÐTï0z «uJMˆk<rêa<SDPackages/com.unity.timeline/Runtime/Playables/BasicScriptPlayable.csày¯BasicScriptPlayableàusing System;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Playables;
namespace UnityEngine.Timeline
{
/// <summary>
/// This class is deprecated. It is recommended to use Playable Asset and Playable Behaviour derived classes instead.
/// </summary>
[Serializable]
[Obsolete("For best performance use PlayableAsset and PlayableBehaviour.")]
public class BasicPlayableBehaviour : ScriptableObject, IPlayableAsset, IPlayableBehaviour
{
public BasicPlayableBehaviour() {}
/// <summary>
/// The playback duration in seconds of the instantiated Playable.
/// </summary>
public virtual double duration { get { return PlayableBinding.DefaultDuration; } }
/// <summary>
///A description of the outputs of the instantiated Playable.
/// </summary>
public virtual IEnumerable<PlayableBinding> outputs { get { return PlayableBinding.None; } }
/// <summary>
/// <para>This function is called when the PlayableGraph that owns this PlayableBehaviour starts.</para>
/// </summary>
/// <param name="playable">The Playable that owns the current PlayableBehaviour.</param>
public virtual void OnGraphStart(Playable playable) {}
/// <summary>
/// <para>This function is called when the PlayableGraph that owns this PlayableBehaviour stops.</para>
/// </summary>
/// <param name="playable">The Playable that owns the current PlayableBehaviour.</param>
public virtual void OnGraphStop(Playable playable) {}
/// <summary>
/// <para>This function is called when the Playable that owns the PlayableBehaviour is created.</para>
/// </summary>
/// <param name="playable">The Playable that owns the current PlayableBehaviour.</param>
public virtual void OnPlayableCreate(Playable playable) {}
/// <summary>
/// <para>This function is called when the Playable that owns the PlayableBehaviour is destroyed.</para>
/// </summary>
/// <param name="playable">The Playable that owns the current PlayableBehaviour.</param>
public virtual void OnPlayableDestroy(Playable playable) {}
/// <summary>
/// <para>This function is called when the Playable play state is changed to Playables.PlayState.Playing.</para>
/// </summary>
/// <param name="playable">The Playable that owns the current PlayableBehaviour.</param>
/// <param name="info">A FrameData structure that contains information about the current frame context.</param>
public virtual void OnBehaviourPlay(Playable playable, FrameData info) {}
/// <summary>
/// <para>This function is called when the Playable play state is changed to Playables.PlayState.Paused.</para>
/// </summary>
/// <param name="playable">The Playable that owns the current PlayableBehaviour.</param>
/// <param name="info">A FrameData structure that contains information about the current frame context.</param>
public virtual void OnBehaviourPause(Playable playable, FrameData info) {}
/// <summary>
/// <para>This function is called during the PrepareFrame phase of the PlayableGraph.</para>
/// </summary>
/// <param name="playable">The Playable that owns the current PlayableBehaviour.</param>
/// <param name="info">A FrameData structure that contains information about the current frame context.</param>
public virtual void PrepareFrame(Playable playable, FrameData info) {}
/// <summary>
/// <para>This function is called during the ProcessFrame phase of the PlayableGraph.</para>
/// </summary>
/// <param name="playable">The Playable that owns the current PlayableBehaviour.</param>
/// <param name="info">A FrameData structure that contains information about the current frame context.</param>
/// <param name="playerData">The user data of the ScriptPlayableOutput that initiated the process pass.</param>
public virtual void ProcessFrame(Playable playable, FrameData info, object playerData) {}
/// <summary>
/// Implement this method to have your asset inject playables into the given graph.
/// </summary>
/// <param name="graph">The graph to inject playables into.</param>
/// <param name="owner">The game object which initiated the build.</param>
/// <returns>The playable injected into the graph, or the root playable if multiple playables are injected.</returns>
public virtual Playable CreatePlayable(PlayableGraph graph, GameObject owner)
{
return ScriptPlayable<BasicPlayableBehaviour>.Create(graph, this);