Third person handlers properties

Having a look at the third person stuff I wonder why you do

props.put(ThirdPersonMouseLook.PROP_MAXROLLOUT, "6");
chaser = new ChaseCamera(cam, player, props);


instead of something like

chaser = new ChaseCamera(cam, player);
chaser.setMaxRollout( 6 );


I would consider the second to be much better - what is the advantage of the first?

Either way is correct.  shrug  It's really up to the developer.  The PROPS centralizes all of the attributes that the developer should concern themselves with in one place as there are a few methods that are for internal use only.  Also, Mark requested it.  :slight_smile: