Unity Aimbot Source?

03/15/2014 18:02 EthnicX#1
Moinsen,
ich wollte mal nachfragen ob ihr eine öffentliche Aimbot source für die Unity Engine kennt bzw. ob es überhaupt eine gibt. Eine sammt Tutorial wäre noch besser :)
03/16/2014 12:20 Zunft#2
Code:
    if(Input.GetKeyDown(Keycode.T)) {
    GameObject go = GameObject.FindGameObjectWithTag("Enemy");
    target = go.transform;
     
    transform.LookAt(target);
    //transform.rotation = Quaternion.Slerp(transform.rotation, Quaternion.LookRotation(target.position - transform.position), rotationSpeed * Time.deltaTime);
    }
Keine Ahnung ob das so funktioniert...
03/16/2014 23:45 MrSm!th#3
#moved