Basic unit type:
λ> replTy "()"
() :: ()
Basic functions:
using UnityEditor; | |
using UnityEngine; | |
using UnityTest; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Reflection; | |
namespace SDD.Editor { | |
/// <summary> |
#!/bin/bash | |
echo "Title of post:" | |
read title | |
echo "Description of post:" | |
read description | |
echo "Tag post:" | |
read tags |
Basic unit type:
λ> replTy "()"
() :: ()
Basic functions:
using System; | |
using System.Collections.Generic; | |
using UnityEngine.Events; | |
// interface you implement in your MB to receive events | |
public interface ICustomHandler : IEventSystemHandler | |
{ | |
void OnCustomCode(CustomEventData eventData); | |
} |
using UnityEngine; | |
using UnityEngine.EventSystems; | |
//by Ralph Barbagallo | |
//www.flarb.com | |
//www.ralphbarbagallo.com | |
//@flarb | |
public class VRInputModule : BaseInputModule { |
//#if UNITY_EDITOR | |
//#define DEBUG | |
//#endif | |
using UnityEngine; | |
using System.Collections; | |
using System; | |
using System.IO; | |
using System.Text.RegularExpressions; | |
using UnityEngineInternal; |
/// <summary> | |
/// Interface definition of Either | |
/// </summary> | |
/// <typeparam name="Tl">type of the Left value</typeparam> | |
/// <typeparam name="Tr">type of the Right value</typeparam> | |
public interface IEither<out Tl, out Tr> | |
{ | |
/// <summary> | |
/// Check the type of the value held and invoke the matching handler function | |
/// </summary> |
########################################## | |
# | |
# c.f. http://stackoverflow.com/questions/3520977/build-fat-static-library-device-simulator-using-xcode-and-sdk-4 | |
# | |
# Version 2.82 | |
# | |
# Latest Change: | |
# - MORE tweaks to get the iOS 10+ and 9- working | |
# - Support iOS 10+ | |
# - Corrected typo for iOS 1-10+ (thanks @stuikomma) |
;; instead of (cut foo bar <> baz <>) | |
;; you can do #[foo bar _ baz _]a | |
(read-hash-extend #\[ | |
(lambda (char port) | |
(let loop ((terms '()) (gensyms '())) | |
(let ((c (peek-char port))) | |
(cond ((eof-object? c) | |
(error 'wtf?)) | |
((char-whitespace? c) |