Hello !
how to send an argument to the Game.exe ?
My script :

i run project

Application no install argument !
how send argument to application ?
Hello !
how to send an argument to the Game.exe ?
My script :

i run project

Application no install argument !
how send argument to application ?
http://msdn.microsoft.com/library/system.environment.getcommandlineargs(v=vs.110).aspx
using UnityEngine;
using System.Collections;
using System;
public class L : MonoBehaviour
{
public static string UserLogin = “”;
public static string UserPassword = “”;
void Start ()
{
String[ ] Data = Environment.GetCommandLineArgs();
if (Data.Length == 3)
{
UserLogin = Data[1];
UserPassword = Data[2];
Application.LoadLevel(“Login”);
}
else
{
Application.Quit();
}
}