a=5.0.0f4ū˙˙˙s˙8-l'€Ŗæ„hŒÎA,Œ€7€˙˙˙˙€Ļ€˛€Õ€ Ū€.€†€Ä€ Ū€.€H€Ģ€˙˙˙˙€1€1€˙˙˙˙ @Ū€€ Q€j€ H€ę€˙˙˙˙ €1€1€˙˙˙˙ @Ū€€Q€j€ņ€(˙˙˙˙€1€1€˙˙˙˙€Ū€€€j€˙˙˙˙€H€›€˙˙˙˙€1€1€˙˙˙˙@Ū€€Q€j€y€ € Ū€.€y€< Ū€.€Ū€CH€T˙˙˙˙€1€1€˙˙˙˙ @Ū€€!Q€j€"H€`˙˙˙˙#€1€1€˙˙˙˙$@Ū€€%Q€j€&H€l˙˙˙˙'€1€1€˙˙˙˙(@Ū€€)Q€j€*L€{+PPtrm_FileIDm_PathIDm_DefaultReferencesm_Iconm_ExecutionOrderm_ClassNamem_Namespacem_AssemblyNamem_IsEditorScriptČ0ÅōÃôL.`?^Ų0D7€˙˙˙˙€Ļ€˛€Ѐπππ#Ļ€+H€3˙˙˙˙€1€1€˙˙˙˙@Ū€€ Q€j€ ™€< Ļ€H H€Z˙˙˙˙ €1€1€˙˙˙˙@Ū€€Q€j€Ѐgπππ#Ļ€+v~ € €– €Ÿ €¨ €ą €ē €Ã €Ė €Õ €Ū  €į! €ņ" €û# €$ €% €&Õ€#˙˙˙˙'€1€1€˙˙˙˙(€Ū€€)H€j€˙˙˙˙*€1€1€˙˙˙˙+@Ū€€,Q€j€-™€*.Ū€8/AssetMetaDataguiddata[0]data[1]data[2]data[3]pathNametimeCreatedoriginalChangesetoriginalNameoriginalParentHash128originalDigestbytes[0]bytes[1]bytes[2]bytes[3]bytes[4]bytes[5]bytes[6]bytes[7]bytes[8]bytes[9]bytes[10]bytes[11]bytes[12]bytes[13]bytes[14]bytes[15]labelsassetStoreReflicenseType z{ī@îČã5^(H'7€˙˙˙˙€Ļ€˛€ Õ€ Ū€#.€,†€Ä€ Ū€#.€,H€Ģ€˙˙˙˙€1€1€˙˙˙˙ @Ū€€ Q€j€ Õ€5˙˙˙˙ €1€1€˙˙˙˙ €Ū€€€j€˙˙˙˙€H€›€˙˙˙˙€1€1€˙˙˙˙@Ū€€Q€j€y€ € Ū€#.€, €I@ž€X @Ū€#.€,H€]˙˙˙˙€1€1€˙˙˙˙@Ū€€Q€j€H€h˙˙˙˙€1€1€˙˙˙˙ @Ū€€!Q€j€"H€z˙˙˙˙#€1€1€˙˙˙˙$@Ū€€%Q€j€&MonoImporterPPtrm_FileIDm_PathIDm_DefaultReferencesexecutionOrdericonm_UserDatam_AssetBundleNamem_AssetBundleVariant˙˙@  ˙˙āy¯Đmss˙˙"ØAšÔ?CRĖŊ$ėŽą6Assets/LeapMotion/Scripts/Utils/DisconnectionNotice.csDisconnectionNoticeę/******************************************************************************\ * Copyright (C) Leap Motion, Inc. 2011-2014. * * Leap Motion proprietary. Licensed under Apache 2.0 * * Available at http://www.apache.org/licenses/LICENSE-2.0.html * \******************************************************************************/ using UnityEngine; using System.Collections; using Leap; public class DisconnectionNotice : MonoBehaviour { public float fadeInTime = 1.0f; public float fadeOutTime = 1.0f; public AnimationCurve fade; public int waitFrames = 10; public Texture2D embeddedReplacementImage; public Color onColor = Color.white; private Controller leap_controller_; private float fadedIn = 0.0f; private int frames_disconnected_ = 0; void Start() { leap_controller_ = new Controller(); SetAlpha(0.0f); } void SetAlpha(float alpha) { GetComponent().color = Color.Lerp(Color.clear, onColor, alpha); } public bool IsConnected() { return leap_controller_.IsConnected; } public bool IsEmbedded() { DeviceList devices = leap_controller_.Devices; if (devices.Count == 0) return false; return devices[0].IsEmbedded; } void Update() { if (embeddedReplacementImage != null && IsEmbedded()) { GetComponent().texture = embeddedReplacementImage; } if (IsConnected()) frames_disconnected_ = 0; else frames_disconnected_++; if (frames_disconnected_ < waitFrames) fadedIn -= Time.deltaTime / fadeOutTime; else fadedIn += Time.deltaTime / fadeInTime; fadedIn = Mathf.Clamp(fadedIn, 0.0f, 1.0f); SetAlpha(fade.Evaluate(fadedIn)); } } DisconnectionNoticeAssembly-CSharp.dll