This file contains hidden or 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
/* COLEMAK | |
* ,-----------------------------------------. ,-----------------------------------------. | |
* | CAPS | 1 | 2 | 3 | 4 | 5 | | 6 | 7 | 8 | 9 | 0 | ` | | |
* |------+------+------+------+------+------| |------+------+------+------+------+------| | |
* | Tab | Q | W | F | P | B | | J | L | U | Y | ; |KC_DEL| | |
* |------+------+------+------+------+------| |------+------+------+------+------+------| | |
* | ESC | A | R | S | T | G |-------. ,-------| M | N | E | I | O | ' | | |
* |------+------+------+------+------+------| MPLY | | MUTE |------+------+------+------+------+------| | |
* |LShift| Z | X | C | D | V |-------| |-------| K | H | , | . | / |RShift| |
This file contains hidden or 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 GameSparks.Core; | |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class GSDataHelpers { | |
/** Converts a serializable object into GameSparks compatible GSData. */ | |
public static GSData ObjectToGSData(object obj) { |