Snippets

ömer faruk sayılır Shining Effect

Created by Omer F. Sayilir last modified
using UnityEngine;
using System.Collections;
using UnityEngine.UI;
public class ShineEffect : MaskableGraphic {

	[SerializeField]
	float yoffset = -1;

	public float Yoffset {
		get {
			return yoffset;
		}
		set {
			SetVerticesDirty();
			yoffset = value;
		}
	}

	[SerializeField]
	float width = 1;

	public float Width {
		get {
			return width;
		}
		set {
			SetAllDirty();
			width = value;
		}
	}

	protected override void OnPopulateMesh (VertexHelper vh)
	{
		var r = GetPixelAdjustedRect();
		var v = new Vector4(r.x, r.y, r.x + r.width, r.y + r.height);
		float dif = (v.w-v.y)*2;
		Color32 color32 = color;
		vh.Clear();

		color32.a = (byte)0;
		vh.AddVert(new Vector3(v.x-50, width*v.y+yoffset*dif), color32, new Vector2(0f, 0f));
		vh.AddVert(new Vector3(v.z+50, width*v.y+yoffset*dif),  color32, new Vector2(1f, 0f));

		color32.a = (byte)(color.a*255);
		vh.AddVert(new Vector3(v.x-50, width*(v.y/4)+yoffset*dif), color32, new Vector2(0f, 1f));
		vh.AddVert(new Vector3(v.z+50, width*(v.y/4)+yoffset*dif), color32, new Vector2(1f, 1f));

		color32.a = (byte)(color.a*255);
		vh.AddVert(new Vector3(v.x-50, width*(v.w/4)+yoffset*dif), color32, new Vector2(0f, 1f));
		vh.AddVert(new Vector3(v.z+50, width*(v.w/4)+yoffset*dif), color32, new Vector2(1f, 1f));
		color32.a = (byte)(color.a*255);

		color32.a = (byte)0;
		vh.AddVert(new Vector3(v.x-50, width*v.w+yoffset*dif), color32, new Vector2(0f, 1f));
		vh.AddVert(new Vector3(v.z+50, width*v.w+yoffset*dif), color32, new Vector2(1f, 1f));

		vh.AddTriangle(0, 1, 2);
		vh.AddTriangle(2, 3, 1);

		vh.AddTriangle(2,3,4);
		vh.AddTriangle(4,5,3);

		vh.AddTriangle(4,5,6);
		vh.AddTriangle(6,7,5);
	}

	public void Triangulate(VertexHelper vh) {
		int triangleCount = vh.currentVertCount - 2;
		Debug.Log(triangleCount);
		for (int i = 0; i <= triangleCount/2+1; i+=2) {
			vh.AddTriangle(i, i+1, i+2);
			vh.AddTriangle(i+2, i+3, i+1);
		}
	}

	#if UNITY_EDITOR
	public override void OnRebuildRequested ()
	{
		base.OnRebuildRequested ();
	}
	#endif

}
using UnityEngine;
using System.Collections;
using UnityEngine.UI;

[ExecuteInEditMode,RequireComponent(typeof(Image))]
public class ShineEffector : MonoBehaviour {

	public ShineEffect effector;
	[SerializeField,HideInInspector]
	GameObject effectRoot;
	[Range(-1,1)]
	public float yOffset = -1;

	public float YOffset {
		get {
			return yOffset;
		}
		set {
			ChangeVal(value);
			yOffset = value;
		}
	}

	[Range(0.1f,1)]
	public float width = 0.5f;
	RectTransform effectorRect;
	void OnEnable() {
		if (effector == null) {
			GameObject effectorobj = new GameObject("effector");

			effectRoot = new GameObject("ShineEffect");
			effectRoot.transform.SetParent(this.transform);
			effectRoot.AddComponent<Image>().sprite = gameObject.GetComponent<Image>().sprite;
			effectRoot.GetComponent<Image>().type = gameObject.GetComponent<Image>().type;
			effectRoot.AddComponent<Mask>().showMaskGraphic = false;
			effectRoot.transform.localScale = Vector3.one;
			effectRoot.GetComponent<RectTransform>().anchoredPosition3D = Vector3.zero;
			effectRoot.GetComponent<RectTransform>().anchorMax = Vector2.one;
			effectRoot.GetComponent<RectTransform>().anchorMin = Vector2.zero;
			effectRoot.GetComponent<RectTransform>().offsetMax = Vector2.zero;
			effectRoot.GetComponent<RectTransform>().offsetMin = Vector2.zero;
			effectRoot.transform.SetAsFirstSibling();

			effectorobj.AddComponent<RectTransform>();
			effectorobj.transform.SetParent(effectRoot.transform);
			effectorRect = effectorobj.GetComponent<RectTransform>();
			effectorRect.localScale = Vector3.one;
			effectorRect.anchoredPosition3D = Vector3.zero;

			effectorRect.gameObject.AddComponent<ShineEffect>();
			effectorRect.anchorMax = Vector2.one;
			effectorRect.anchorMin = Vector2.zero;

			effectorRect.Rotate(0,0,-8);
			effector = effectorobj.GetComponent<ShineEffect>();
			effectorRect.offsetMax = Vector2.zero;
			effectorRect.offsetMin = Vector2.zero;
			OnValidate();
		}	
	}

	void OnValidate() {
		effector.Yoffset = yOffset;
		effector.Width = width;

		if (yOffset <= -1 || yOffset >= 1) {
			effectRoot.SetActive(false);
		} else if (!effectRoot.activeSelf) {
			effectRoot.SetActive(true);
		} {

		}
	}

	void ChangeVal(float value) {
		effector.Yoffset = value;
		if (value <= -1 || value >= 1) {
			effectRoot.SetActive(false);
		} else if (!effectRoot.activeSelf) {
			effectRoot.SetActive(true);
		} {
			
		}
	}
	void OnDestroy() {
		if ( !Application.isPlaying )
		{
			DestroyImmediate(effectRoot);
		} else {
			Destroy(effectRoot);
		}
	}

}

Comments (1)

  1. Zafer özkel

    O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O. O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O. O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O .O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O. O.O.O.O.O.O.O.O.O rssfeeds.usatoday.com/~/t/0/0/mmajunkie/~https:/agariohub.cc/www.researchgate.net/deref/http://agariohub.cchobby.idnes.cz/peruanske-palive-papricky-rocoto-dlz-/redir.aspx?url=http%3A%2F%2Fagariohub.ccoptimize.viglink.com/page/pmv?url=https://agariohub.cctrello.com/add-card?source=mode=popup&name=click%2Bhere&desc=http%3A%2F%2Fagariohub.ccsound2sense.archiveweb.mus.cam.ac.uk/?URL=agariohub.ccfeeds.businessinsider.com.au/~/t/0/0/businessinsideraustralia/~https:/agariohub.cc/www.astro.wisc.edu/?URL=https%3A%2F%2Fagariohub.ccimages.google.com/url?sa=t&url=https%3A%2F%2Fagariohub.ccm.odnoklassniki.ru/dk?st.cmd=outLinkWarning&st.rfn=https%3A%2F%2Fagariohub.cc%2Fwww.jobzone.ny.gov/views/jobzone/leaving_site.jsf?id=304&url=https%3A%2F%2Fagariohub.cctvtropes.org/pmwiki/no_outbounds.php?o=https%3A%2F%2Fagariohub.cc%2Frssfeeds.freep.com/~/t/0/_/freep/home/~/https:/agariohub.cc/community.acer.com/en/home/leaving/agariohub.ccredirects.tradedoubler.com/utm/td_redirect.php?td_keep_old_utm_value=1&tduid=991a03343b6089cca9cbe799f011b89c&url=https%3A%2F%2Fagariohub.ccfcaw.library.umass.edu/goto/https:/agariohub.cc/guru.sanook.com/?URL=https%3A%2F%2Fagariohub.cc%2Fblog.ss-blog.jp/_pages/mobile/step/index?u=https://agariohub.ccold.post-gazette.com/pets/redir.asp?url=https%3A%2F%2Fagariohub.cc%2Faccounts.cancer.org/login?redirectURL=https://agariohub.ccwww.fhwa.dot.gov/reauthorization/reauexit.cfm?link=https%3A%2F%2Fagariohub.ccsitereport.netcraft.com/?URL=https%3A%2F%2Fagariohub.cc%2Fgo.onelink.me/v1xd?pid=Patch&c=Mobile%20Footer&af_web_dp=https%3A%2F%2Fagariohub.cc%2Fprofiles.newsmax.com/sso/signup.aspx?ReturnURL=https%3A%2F%2Fagariohub.cc%2Fdomain.opendns.com/agariohub.ccapp.feedblitz.com/f/f.fbz?track=https%3A%2F%2Fagariohub.ccjump.5ch.net/?agariohub.ccdol.deliver.ifeng.com/c?z=ifeng&la=0&si=2&cg=1&c=1&ci=2&or=7549&l=28704&bg=28703&b=37275&u=https%3A%2F%2Fagariohub.ccfeeds.gizmodo.com.au/~/t/0/0/gizmodoaustralia/~/https:/agariohub.cc/www.etis.ford.com/externalURL.do?url=https%3A%2F%2Fagariohub.cc%2Fid.telstra.com.au/register/crowdsupport?gotoURL=https%3A%2F%2Fagariohub.cc%2Ffeeds.hanselman.com/~/t/0/0/scotthanselman/~https:/agariohub.cc/bbs.pku.edu.cn/v2/jump-to.php?url=https%3A%2F%2Fagariohub.cc%2Fdaemon.indapass.hu/http/session_request?redirect_to=https%3A%2F%2Fagariohub.cc&partner_id=bloghuuk.advfn.com/ct.php?ct=OTk1OTg=&redir=https%3A%2F%2Fagariohub.cc%2Fimages-fames.b-cdn.net/spai/w_1920+q_lossy+ret_img/https:/agariohub.cc/rssfeeds.wfaa.com/~/t/0/0/wfaa/local/~https:/agariohub.cc/rssfeeds.khou.com/~/t/0/0/khou/sports/~https:/agariohub.cc/extras.seattlepi.com/redirect.php?url=https%3A%2F%2Fagariohub.cc%2Fmember.yam.com/EDM_CLICK.aspx?EDMID=7948&EMAIL=qqbuyme.cosmo925@blogger.com&CID=103443&EDMURL=https%3A%2F%2Fagariohub.cc%2Fgleam.io/zyxKd-INoWr2EMzH?l=http%3A%2F%2Fagariohub.ccwww.justjaredjr.com/flagcomment.php?cl=10842755&el=https%3A%2F%2Fagariohub.ccwww.edaily.co.kr/_template/popup/t_popup_click.asp?Mrseq=830&MrT=https%3A%2F%2Fagariohub.cc%2Fssl.cosme.net/cosme/asp/buy/buy0002.asp?rurl=https%3A%2F%2Fagariohub.cc%2Fwww.google.tn/url?sa=t&url=https%3A%2F%2Fagariohub.ccrssfeeds.wkyc.com/~/t/0/0/wkyc/news/~https:/agariohub.cc/www2.ogs.state.ny.us/help/urlstatusgo.html?url=https://agariohub.ccfeeds.kotaku.com.au/~/t/0/0/kotakuaustralia/~/https:/agariohub.cc/aquaculture.seagrant.uaf.edu/click-thru.html?id=151&url=https%3A%2F%2Fagariohub.cc%2Fscanmail.trustwave.com/?c=8510&d=4qa02KqxZJadHuhFUvy7ZCUfI_2L10yeH0EeBz7FGQ&u=https%3A%2F%2Fagariohub.ccrssfeeds.13newsnow.com/~/t/0/0/wvec/local/~https:/agariohub.cc/scribd.page.link/?amv=9.1.0&apn=com.scribd.app.reader0&ibi=com.scribd.iscribd&imv=9.1.1&isi=542557212&link=https%3A%2F%2Fagariohub.cc%2Fforums.thesims.com/en_uS/home/leaving/agariohub.ccposts.google.com/url?sa=t&url=https%3A%2F%2Fagariohub.cc%2Fxat.com/web_gear/chat/linkvalidator.php?link=https%3A%2F%2Fagariohub.ccadvisor.wmtransfer.com/SiteDetails.aspx?url=agariohub.ccwww.nordbayern.de/logoutservlet?logout_referer=https%3A%2F%2Fagariohub.cc%2Fwww.bad.org.uk/for-the-public/patient-information-leaflets/androgenetic-alopecia/?showmore=1&returnlink=https%3A%2F%2Fagariohub.cc%2Frssfeeds.kens5.com/~/t/0/0/business/~https:/agariohub.cc/%2Fwww.winnipegfreepress.com/s?action=doLogout&rurl=http%3A%2F%2Fagariohub.ccfjb.kaskus.co.id/redirect?url=https%3A%2F%2Fagariohub.cc%2Fpantip.com/l/https:%E0%B8%AF%E0%B9%91%E0%B8%AF%E0%B8%AF%E0%B9%91%E0%B8%AFagariohub.cc%2F/3918rssfeeds.wbir.com/~/t/0/0/wbir/local_news/~https:/agariohub.cc/innuityweb.myregisteredsite.com/admin/membership_agreement.php?partnerID=3185&domain=agariohub.ccfeeds.lifehacker.com.au/~/t/0/0/lifehackeraustralia/~/https:/agariohub.cc/www.london.umb.edu/?URL=https%3A%2F%2Fagariohub.cc%2Fwww.fito.nnov.ru/go.php?url=https%3A%2F%2Fagariohub.ccwww.vreddiehgdl.cucsh.udg.mx/sites/all/modules/pubdlcnt/pubdlcnt.php?file=https%3A%2F%2Fagariohub.cc%2F&nid=126passport-us.bignox.com/sso/logout?service=https%3A%2F%2Fagariohub.cc%2Fwww.talgov.com/Main/exit.aspx?url=https%3A%2F%2Fagariohub.ccf5.glitch.me/proxy/https%3A%2F%2Fagariohub.cc%2Fsc.hkexnews.hk/TuniS/agariohub.cc/www.curseforge.com/linkout?remoteUrl=https%3A%2F%2Fagariohub.cc%2Fclient.paltalk.com/client/webapp/client/External.wmt?url=http%3A%2F%2Fagariohub.cctools.folha.com.br/print?url=https%3A%2F%2Fagariohub.cces.catholic.net/ligas/ligasframe.phtml?liga=https%3A%2F%2Fagariohub.cc%2Fwww.interempresas.net/estadisticas/r.asp?idsector=129&e=221083&c=195&d=https%3A%2F%2Fagariohub.cc%2Fsinp.msu.ru/ru/ext_link?url=https%3A%2F%2Fagariohub.cc%2Frssfeeds.mycentraljersey.com/~/t/0/0/bridgewater/home/~https:/agariohub.cc/sherlock.scribblelive.com/r?u=agariohub.ccgeomorphology.irpi.cnr.it/map-services/android-guide/@@reset-optout?came_from=https%3A%2F%2Fagariohub.cc%2Fceskapozice.lidovky.cz/redir.aspx?url=http%3A%2F%2Fagariohub.cctrack.effiliation.com/servlet/effi.redir?id_compteur=22157233&effi_id=leparfroid244&url=https%3A%2F%2Fagariohub.cc%2Fwww.spiritfanfiction.com/link?l=https%3A%2F%2Fagariohub.ccfeeds.osce.org/~/t/0/0/oscelatestnews/~https:/agariohub.cc/%2Fwww.omnigroup.com/omnifocus/?URL=agariohub.ccreelgood.com/https:/agariohub.cc/www.triathlon.org/?URL=agariohub.cc/stmassey.f2s.com/?URL=https%3A%2F%2Fagariohub.cc%2Fmisc.symbaloo.com/redirect.php?network=tradetracker&campaignID=480&url=https%3A%2F%2Fagariohub.cc%2Frd.alice.it/r3/redir.asp?URL=https%3A%2F%2Fagariohub.cc%2Farctic.nyheter24.se/rdb/nyheter24_eed6ad4b451f2fb8193922f832bc91ed/5?url=https%3A%2F%2Fagariohub.cc%2Fams.ceu.edu/optimal/optimal.php?url=https%3A%2F%2Fagariohub.cc%2Fwww.meetme.com/apps/redirect/?url=agariohub.cc/clients1.google.tk/url?q=https%3A%2F%2Fagariohub.ccwww.aaronsw.com/2002/display.cgi?t=%3Ca+href=https%3A%2F%2Fagariohub.ccwww.kichink.com/home/issafari?uri=https%3A%2F%2Fagariohub.cc%2Flaw.spbu.ru/aboutfaculty/teachers/teacherdetails/a7fb1dbb-e9f3-4fe9-91e9-d77a53b8312c.aspx?returnurl=https%3A%2F%2Fagariohub.ccenseignants.flammarion.com/Banners_Click.cfm?ID=86&URL=agariohub.cc/odmp.org/link?url=https%3A%2F%2Fagariohub.cc%2Fwww.swrve.com/?URL=agariohub.ccsc.hkex.com.hk/TuniS/agariohub.cc/redir.speedbit.com/redir.asp?id=8030&urldirect=https%3A%2F%2Fagariohub.ccmitsui-shopping-park.com/lalaport/iwata/redirect.html?url=https%3A%2F%2Fagariohub.cc%2Fmarketplace.salisburypost.com/AdHunter/salisburypost/Home/EmailFriend?url=https%3A%2F%2Fagariohub.cc%2Fwww.popcouncil.org/scripts/leaving.asp?URL=http%3A%2F%2Fagariohub.ccnou-rau.uem.br/nou-rau/zeus/auth.php?back=https%3A%2F%2Fagariohub.cc%2F&go=x&code=x&unit=xredirect.camfrog.com/redirect/?url=https%3A%2F%2Fagariohub.cc%2Fdavidbyrne.com/?URL=agariohub.ccfeeds.ligonier.org/~/t/0/0/ligonierministriesblog/~/https:/agariohub.cc/feeds.gty.org/~/t/0/0/gtyblog/~/https:/agariohub.cc/foro.infojardin.com/proxy.php?link=https%3A%2F%2Fagariohub.ccwww.ppa.com/?URL=agariohub.ccimaginingourselves.globalfundforwomen.org/pb/External.aspx?url=https%3A%2F%2Fagariohub.cc%2Fshorefire.com/?URL=agariohub.cctimberlinelodge.com/?URL=agariohub.ccwww.earth-policy.org/?URL=agariohub.cc/chtbl.com/track/118167/agariohub.cc/wfc2.wiredforchange.com/dia/track.jsp?v=2&c=hdorrh%2BHcDlQ%2BzUEnZU5qlfKZ1Cl53X6&url=https%3A%2F%2Fagariohub.ccwww.cheapassgamer.com/redirect.php?url=https%3A%2F%2Fagariohub.ccregister.scotland.org/Subscribe/WidgetSignup?url=http%3A%2F%2Fagariohub.ccinterpals.net/url_redirect.php?href=https%3A%2F%2Fagariohub.cc%2Fmyemma.com/?URL=agariohub.ccintellectualventures.com/?URL=agariohub.ccfooyoh.com/wcn.php?url=https%3A%2F%2Fagariohub.cc%2Flinabanner.jobstreet.com/redirect.asp?bid=23996&track=0&uid=&url=https%3A%2F%2Fagariohub.cc%2Fwww.usich.gov/?URL=agariohub.ccwww.sunvalley.com/?URL=agariohub.ccipb.ac.id/lang/s/ID?url=https%3A%2F%2Fagariohub.cc%2Fmoshtix.com.au/v2/ForceDesktopView?callingURL=https%3A%2F%2Fagariohub.cc%2Ftapestry.tapad.com/tapestry/1?ta_partner_id=950&ta_redirect=https%3A%2F%2Fagariohub.cc%2Fwww.chuys.com/?URL=agariohub.ccanalytics.bluekai.com/site/16231?phint=event=click&phint=campaign=BRAND-TAB&phint=platform=search&done=agariohub.ccshop.wki.it/shared/sso/sso.aspx?sso=G7OBN320AS3T48U0ANSN3KMN22&url=https%3A%2F%2Fagariohub.cc%2Fwww.kunstsammlung.de/?URL=agariohub.ccwww.malcolmturnbull.com.au/?URL=agariohub.ccsc.sie.gov.hk/TuniS/agariohub.cc/ref.webhostinghub.com/scripts/click.php?ref_id=nichol54&desturl=https%3A%2F%2Fagariohub.cc%2Fthewomens.org.au/?URL=agariohub.ccwww.hockney.com/?URL=agariohub.ccwww.ch7.com/?URL=agariohub.ccwww.asma.org/impakredirect.aspx?url=agariohub.cc/www.venez.fr/error.fr.html?id=1&uri=https%3A%2F%2Fagariohub.cc%2Fwww.octranspo.com/en/about-us/confederation-line-1-website?URL=agariohub.cclogin.mephi.ru/login?allow_anonymous=true&service=https%3A%2F%2Fagariohub.cc%2Fww4.cef.es/trk/r.emt?h=agariohub.cc/cientec.or.cr/ligas-externas/redir.phtml?link=agariohub.cc/fr.grepolis.com/start/redirect?url=https%3A%2F%2Fagariohub.cc%2Farchives.midweek.com/?URL=https%253A%252F%252Fagariohub.cc/www.ahewar.org/links/dform.asp?url=https%3A%2F%2Fagariohub.cc%2Flogin.aup.edu/cas/login?service=https%3A%2F%2Fagariohub.cc%2F/&gateway=truewww.sitesimilar.net/agariohub.ccyumi.rgr.jp/puku-board/kboard.cgi?mode=res_html&owner=proscar&url=agariohub.cc/intranet.canadabusiness.ca/?URL=agariohub.cc/sc.devb.gov.hk/TuniS/agariohub.cc/anonym.to/?http%3A%2F%2Fagariohub.cc/www.ait.ie/?URL=agariohub.ccnews.url.google.com/url?q=https%3A%2F%2Fagariohub.ccm.ok.ru/dk?st.cmd=outLinkWarning&st.rfn=https%3A%2F%2Fagariohub.cc%2F  P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P  P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P  P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P  P P P P P P P  P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P  P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P  P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.