I’m currently doing something like
var direction = camera.getForwardRay().direction;
hero.position.x += direction.x * 10;
hero.position.y += direction.y * 10;
hero.position.z += direction.z * 10;
and it works the way I like it; move towards where the camera is facing, but how can I move it sideways relative to where the camera is facing?