This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Threading; | |
using UnityEngine; | |
[RequireComponent(typeof(RectTransform))] | |
public class LockUIWorldPosition : MonoBehaviour | |
{ | |
private RectTransform rectTransform; | |
private Vector3 originalWorldPosition; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// CSVDecoder.swift | |
// | |
// Created by takasek - https://github.com/takasek | |
// | |
import Foundation | |
//===----------------------------------------------------------------------===// | |
// CSV Decoder |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// React JSON Editor wrapper | |
// JSON Editor by Jos de Jong - https://github.com/josdejong/jsoneditor | |
// Based on post by Hassan Khan - https://github.com/josdejong/jsoneditor/issues/274#issuecomment-263986071 | |
// Wrapper By Ian Grossberg - https://gist.github.com/yoiang/6f82874f4fd8fc1a37631dc9cad27172 | |
import React, { Component, PropTypes } from 'react'; | |
import JSONEditor from 'jsoneditor'; | |
import cloneDeep from 'lodash.clonedeep'; | |
import isEqual from 'lodash.isequal'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// OrdinalNumberFormatter.swift | |
// Tastify | |
// | |
// Created by Ian Grossberg on 10/1/15. | |
// Copyright © 2015 Noble Desktop. All rights reserved. | |
// | |
import Foundation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// TesseractOCR+PromiseKit.swift | |
// | |
// Created by Ian G on 5/1/15. | |
// | |
import PromiseKit | |
import TesseractOCR | |
extension G8Tesseract |