Friday 25 March 2016

Unity Switch from one player to another !

Simple Unity  On trigger enter  Switch from one player to another !












DIRECT DOWNLOAD HERE








THIS IS BACKUP  IN TEXT FORM   Script1

1. Create New java and name it : DISABLEPLAYER1


2. Copy & Past this text and save java :
----------------------------------------­­­­­------------------------------------­-­-­-­-­-


#pragma strict


var Obj : GameObject;

function Start () {



}

function OnTriggerEnter (trigger:Collider) { if(trigger.collider.tag=="Player1") Obj.SetActive (false); 


  DontDestroyOnLoad (gameObject);
}
 


 ----------------------------------------­­­­­------------------------------------­-­-­-­-­-










THIS IS BACKUP  IN TEXT FORM   Script2

1. Create New java and name it : ENABLEPLAYER2


2. Copy & Past this text and save java :
----------------------------------------­­­­­------------------------------------­-­-­-­-­-


#pragma strict

var Obj : GameObject;

function Start () {

Obj.SetActive(false);

}

function OnTriggerEnter (trigger:Collider) { if(trigger.collider.tag=="Player1") Obj.SetActive (true); 


  DontDestroyOnLoad (gameObject);
}
 


 ----------------------------------------­­­­­------------------------------------­-­-­-­-­-

























0 comments:

Post a Comment