/* * This file is part of the "House of the Future" showcase project by M2H (http://www.M2H.nl) * The original author of this code Mike Hergaarden. * Feel free to use this code for your own projects, drop me a line if you made something exciting! */ //In case something somehow falls trough the level... #pragma strict public var resetTo : Vector3; function OnTriggerEnter (other : Collider) { other.transform.root.position=resetTo; }