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
/SteamBuildUploader/ContentBuilder/content | |
/SteamBuildUploader/ContentBuilder/builder | |
/.vs | |
/Library/ | |
/Temp/ | |
/Obj/ | |
/Build/ | |
/Builds/ | |
/Assets/AssetStoreTools* |
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
private void RunScript(string scriptPath, string arguments) | |
{ | |
ProcessStartInfo startInfo = new ProcessStartInfo(); | |
startInfo.FileName = Path.GetFullPath(scriptPath); | |
startInfo.UseShellExecute = true; | |
startInfo.CreateNoWindow = false; | |
if (!string.IsNullOrEmpty(arguments)) | |
startInfo.Arguments = arguments; |
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
/* | |
* playermovement.cs - attaches rigidbody onto gameobject in editor via RequireComponent, checks inputAxis via Input Axis Names (defaults to Horizontal, Vertical). | |
* Intention is to move a 2D sprite across the screen via Rigidbody2D | |
* All properties are private with defaults values. If you need to change a property use the methods to adjust them | |
* Note: This does not attach a collider or check colliders in anyway. That should be handled separately. | |
*/ | |
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; |
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
Swift 3.0 | |
window.level = Int(CGWindowLevelForKey(.floatingWindow)) | |
window.level = Int(CGWindowLevelForKey(.maximumWindow)) |
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
// | |
// http://www.twitter.com/kinifi | |
// | |
using System.IO; | |
using UnityEngine; | |
using UnityEditor; | |
using UnityEditor.Callbacks; | |
using UnityEditor.iOS.Xcode; |
OlderNewer