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 UnityEngine; | |
using UnityEditor; | |
using System.Collections; | |
public class Test : MonoBehaviour | |
{ | |
[MenuItem( "MyMenu/Hook up Post Build Event" )] | |
static void blah() |
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
public new Transform transform; | |
public new Collider collider; | |
public new Renderer renderer; | |
public new Rigidbody rigidbody; | |
void Awake() | |
{ | |
transform = gameObject.transform; | |
collider = gameObject.collider; |
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
// setup a semi-complex test object | |
var someObject = new SomeObject(); | |
someObject.anotherObject = new AnotherObject(); | |
someObject.anotherObjectList = new List<AnotherObject> | |
{ | |
new AnotherObject(), new AnotherObject(), new AnotherObject(), new AnotherObject() | |
}; | |
// serialize the class to json | |
var json = Json.jsonEncode( someObject ); |
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
function ValidateGooglePlaySignature( $responseData, $signature, $publicKey, &$status, &$response ) | |
{ | |
$responseData = trim( $responseData ); | |
$signature = trim( $signature ); | |
$response = json_decode( $responseData ); | |
// Create an RSA key compatible with openssl_verify from our Google Play sig | |
$key = "-----BEGIN PUBLIC KEY-----\n". | |
chunk_split($publicKey, 64,"\n"). | |
'-----END PUBLIC KEY-----'; |
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
public class TestClass : ParseObject | |
{ | |
public string someOtherVar; | |
public Dictionary<string, object> dict; | |
} | |
_parse = new Parse( "SNIPPED", "SNIPPED" ); | |
// create object manually |
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
<?php | |
// API access key from Google API's Console | |
define( 'API_ACCESS_KEY', 'YOUR-API-ACCESS-KEY-GOES-HERE' ); | |
$registrationIds = array( $_GET['id'] ); | |
// prep the bundle | |
$msg = array |
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
export "CODESIGN_ALLOCATE=\"/Applications/Xcode.app/Contents/Developer/usr/bin/codesign_allocate\"" | |
# run this for each bundle executable in the Contents/Plugins folder | |
codesign string.Format( "-f -s \"{0}\" {1} \"{2}\"", certificateName, entitlementsCommand, pathToApp ) | |
productbuild string.Format( "--component \"{0}\" /Applications --sign \"{1}\" --product \"{2}\" \"{3}\"", _pathToAppBundle, _certificateSigner, plistPath, packageFilename ) |
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 UnityEngine; | |
using System.Collections; | |
using System.Collections.Generic; | |
using Prime31; | |
#if UNITY_IPHONE | |
public class P31Prefs | |
{ | |
public static bool iCloudDocumentStoreAvailable { get { return _iCloudDocumentStoreAvailable; } } |
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
In order to take part in the Unity Activity sharing system, there are a few steps you will need to take outlined below. First, some background. You can signify which class you would like to receive all the Activity lifecycle methods. When you implement the methods they should have the exact same signature but they should be *public static void*. That is important! They will not be called if they are not public static void. You can implement 1 or all of the methods. That is entirely up to your needs. | |
1. Download the Prime31UnityActivity.jar file from here: https://app.box.com/s/xw6hq1ltjaniycc14j21 You are free to distribute the file but *do not change it's name*! That would defeat the purpose of the sharing mechanism! | |
2. Implement any of the methods that are available in this Gist (https://gist.github.com/prime31/10747997) | |
3. Perform the AndroidManifest changes below | |
If successful, on app launch you will see a log that looks like the following: |
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
Open the FacebookPostProcess.cs file and find the following line: | |
[PostProcessBuild] | |
Change the line to be: | |
[PostProcessBuild( 999 )] |