I hereby claim:
- I am greenishblue on github.
- I am thinkallabout (https://keybase.io/thinkallabout) on keybase.
- I have a public key ASDO7I5LJciP22omMGqYLLryg3IB3C_8hUqGfJbK7vlnowo
To claim this, I am signing this object:
// Adds an email to sheet. | |
function addEmailToSheet(email) { | |
var sheetsApp = SpreadsheetApp.getActiveSpreadsheet(); | |
// 05/2019 for example.. | |
var monthString = (new Date().getMonth() + 1).toString(); | |
if(monthString.length == 1) { | |
monthString = "0" + monthString; | |
} | |
var sheetName = monthString + "/" + new Date().getYear(); |
I hereby claim:
To claim this, I am signing this object:
using UnityEngine; | |
using System.Collections.Generic; | |
using HierarchyDict = System.Collections.Generic.Dictionary<string, UnityEngine.Transform>; | |
using BoneTransformDict = System.Collections.Generic.Dictionary<string, utils.Tuple<UnityEngine.Transform, string>>; | |
namespace utils | |
{ | |
public class MeshCombiner | |
{ |