I hereby claim:
- I am hilariouscow on github.
- I am hilariouscow (https://keybase.io/hilariouscow) on keybase.
- I have a public key whose fingerprint is D7E0 4954 0961 1466 0D8D 0845 43DC 7BB1 6526 D32A
To claim this, I am signing this object:
//... | |
public class MyScript : MonoBehaviour | |
{ | |
[FloatRange(-1f,1f)] //using this will make the randomModulator appear with double handles. | |
public FloatRange randomModulator; | |
using UnityEngine; | |
using System.Collections; | |
public static class TransformExtensions | |
{ | |
public static void SetLayer(this Transform trans, int layer) | |
{ | |
trans.gameObject.layer = layer; | |
foreach(Transform child in trans) | |
child.SetLayer( layer); |
I hereby claim:
To claim this, I am signing this object:
Shader "BezzyLines/VertexTextureAlpha" { | |
Properties { | |
_MainTex ("Base (RGB)", 2D) = "white" {} | |
} | |
SubShader { | |
Tags | |
{ | |
"Queue"="Transparent" |