SwitchSubActiveStatus.cs 235 Bytes
using UnityEngine;
using System;

public class SwitchSubActiveStatus : MonoBehaviour {

	void Start()
	{
		string[] strArg = Environment.GetCommandLineArgs();
		gameObject.SetActive(strArg.Length < 3 || strArg[2].Equals("1"));
	}

}