I hereby claim:
- I am crappygraphix on github.
- I am crappygraphix (https://keybase.io/crappygraphix) on keybase.
- I have a public key ASCYX0RzCWuxQPExttNpJ-4b5fdhgKRlaDhncYIHNfJbNQo
To claim this, I am signing this object:
| -- Potential infinite loop | |
| instance Show VersionStatus where | |
| show PrivatePreview = "Private Preview" | |
| show PublicPreview = "Public Preview" | |
| show x = show x | |
| -- Not an infinite loop | |
| instance Show VersionStatus where |
I hereby claim:
To claim this, I am signing this object:
| using UnityEngine; | |
| using System.Collections; | |
| using UnityEngine.EventSystems; | |
| public enum MovementAction{ | |
| None, | |
| Tap, | |
| SwipeLeft, | |
| SwipeRight, | |
| SwipeUp, |
| using UnityEngine; | |
| using UnityEngine.UI; | |
| using UnityEditor; | |
| public class PrefabTransformCopy : ScriptableObject { | |
| /* | |
| * Select an instance of a prefab in scene view. | |
| * Click the gear in the transform panel of the inspector. | |
| * Selecting "Write to Prefab" will write the transformation | |
| * values from this scene object into the parent prefab. |
| using UnityEngine; | |
| using System.Collections; | |
| public class SillyTest : MonoBehaviour { | |
| void Main(){ | |
| Debug.Log("Main: Interesting"); | |
| } | |
| void OnEnable(){ |