示例#1
0
文件: Robot.cs 项目: iszen/LABOR
    public void Run()
    {
        robotMovement.RunTo(player.transform);

        disabler            = player.GetComponent <TeleporterDisabler>();
        disabler.isAttacked = true;

        runSound.loop = true;
        runSound.Play();

        animations.SetBool("run", true);

        running = true;
        hitting = false;
    }