↧
Answer by karl_
Typically people won't just write scripts for you, but here is the documentation for what you're trying to do. Place this after an OnTriggerEnter or OnColliderEnter for your...
View ArticleAnswer by Ashkan_gc
add a collider to that cube object that you want to change level when colliding with it. check the is trigger of the collider that you attached and write something like this in a script.function...
View ArticleAnswer by HJJ
Here's a script I got from unity-It works really well on almost and object that has a collider: ---------- using UnityEngine; using System.Collections; //extend MonoBehaviour so that we can attach this...
View Article