Example #1
0
 public void ShootUp()
 {
     CombatManager.Instance.UnregisterAbility(diceModel);
     GetComponent <Rigidbody>().AddForce(Vector3.up * 500f);
     GetComponent <Rigidbody>().AddTorque(Vector3.right * 200f);
     touchingSide           = null;
     upSide                 = null;
     collisionCheck.enabled = true;
 }
Example #2
0
        // Use this for initialization
        public void Start()
        {
            sides = GetComponentsInChildren <DiceSide>();
            for (int x = 0; x < sides.Length; x++)
            {
                sides[x].Index = x;
            }

            isDead = false;

            startingPosition = transform.position;
            collisionCheck   = GetComponent <CheckForNonCollision>();
            upSide           = null;
            touchingSide     = null;
            Roll();
        }
Example #3
0
        //		IEnumerator CheckSidesForCollision (float seconds)
        //		{
        //				yield return new WaitForSeconds (seconds);
        //				Debug.Log ("Checking for dice sides");
        //				if (rigidbody.velocity.magnitude == 0) {
        //						if (touchingSide == null) {
        //								StopAllCoroutines ();
        //								StartCoroutine (CheckSidesForCollision (7f));
        //						}
        //				} else {
        //						StopAllCoroutines ();
        //						StartCoroutine (CheckSidesForCollision (5f));
        //				}
        //		}

        //		IEnumerator CheckSidesForCollision (float seconds)
        //		{
        //				yield return new WaitForSeconds (seconds);
        //				if (rigidbody.velocity.magnitude == 0) {
        //						if (touchingSide != null && Vector3.Dot (touchingSide.transform.forward, floor.up) <= -.99f)
        //								foreach (DiceSide side in sides) {
        //										if (Vector3.Dot (side.transform.forward, floor.up) >= .99f)
        //												upSide = side;
        //								}
        //						else {
        //								//Debug.Log (Vector3.Dot (touchingSide.transform.forward, floor.transform.up));
        //								ShootUp ();
        //								touchingSide = null;
        //								StopCoroutine (CheckSidesForCollision (7f));
        //								StartCoroutine (CheckSidesForCollision (7f));
        //						}
        //				}
        //		}

        public void Roll()
        {
            if (isDead)
            {
                return;
            }

            DOTween.CompleteAll();

            transform.position     = startingPosition;
            touchingSide           = null;
            upSide                 = null;
            collisionCheck.enabled = true;
            GetComponent <RandomRotation>().enabled = true;
            //				touchingSide = null;
            //				upSide = null;
            //				StopCoroutine (CheckSidesForCollision (7f));
            //				StartCoroutine (CheckSidesForCollision (7f));
        }