Quantcast
Channel: Latest Questions by LegendWill
Viewing all articles
Browse latest Browse all 36

Semicolon Error..

$
0
0
Hi, I am working on a basic weapon script that does animations with your fists when you hit(it's random for whichever fist). I am getting "Assets/Weapon.js(7,25): UCE0001: ';' expected. Insert a semicolon at the end." Here is my code: #pragma strict var TheDammage : int = 50; var Distance : float; var MaxDistance : float = 1.5; var TheAnimator : Animator; var DammageDelay : float 0.6; var Hit01Streak = 0; var Hit02Streak = 0; function Update () { if (Input.GetButtonDown("Fire1")) { AttackDammage(); } } function AttackDammage () { if (Random.value >= 0.5 && Hit01Streak <= 2) { TheAnimator.SetBool("Hit01", true); Hit01Streak += 1; Hit02Streak = 0; } else { if (Hit02Streak <= 2) { TheAnimator.SetBool("Hit02", true); Hit01Streak = 0; Hit02Streak += 1; } else { TheAnimator.SetBool("Hit01", true); Hit01Streak += 1; Hit02Streak = 0; } } yield WaitForSeconds (DammageDelay); var hit : RaycastHit; var ray = Camera.main.ScreenPointToRay(Vector3(Screen.width/2, Screen.height/2, 0)); if (Physics.Raycast (ray, hit)) { Distance = hit.distance; if (Distance < MaxDistance) { hit.transform.SendMessage("ApplyDammage", TheDammage, SendMessageOptions.DontRequireReceiver); } } TheAnimator.SetBool("Hit01", false); TheAnimator.SetBool("Hit02", false); }

Viewing all articles
Browse latest Browse all 36

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>