Please format your code correctly, this is nearly unreadable. Also, be more specific in your question, such as which line is giving you errors.
My guess is this doesn't work probably because of a syntax error.
**You never closed the curly bracket around this if statement:**
if(FoundHit){
var spawnedBulletHole : GameObject = Instantiate (DecalHitWall, InstantiatePoint, InstantiateRotation);
**It should be:**
if(FoundHit){
var spawnedBulletHole : GameObject = Instantiate (DecalHitWall, InstantiatePoint, InstantiateRotation);
}
When writing the code, look at the underlined red lines and the errors the console gives you. Most of the time this will solve 99% of your problems, and won't bloat the UnityAnswers forums with useless posts.
↧