on your player rotation code you have "transform.Translate(Vector3.right );" when the left key is pressed down, this is being added to the transform.Translate that occurred in your movement code, as that's what's causing it to speed up. Also in your rotation code I would change it to Input.GetKeyDown() rather than Input.GetKey().
As for the camera, I wouldn't bother parenting it to your player, for 2D platformers I make a seperate script for the camera and have something like
transform.position = new Vector 3(GameObject.FindGameObjectWithTag("Player").transform.position.x, yOffset, zOffset);
↧