Page 1 of 1

Enable 3rd person view

Posted: Fri Apr 02, 2010 4:12 pm
by Poow
Hey,

So I'm starting with my mod now.
First (I think simple) question:
Which changes are necessary to enable a 3th person camera for the soldiers?

Re: Enable 3rd person view

Posted: Fri Apr 02, 2010 5:56 pm
by freddy
heres the settings that regulate the camera, 1-on 0-off

Code: Select all

ObjectTemplate.create Camera SoldierCamera
ObjectTemplate.setPivotPosition 0/0/0
ObjectTemplate.setMaxSpeed 0/0/0
ObjectTemplate.setHasTarget 0
ObjectTemplate.CVMInside 1
ObjectTemplate.CVMChase 0
ObjectTemplate.CVMFrontChase 0
ObjectTemplate.CVMFlyBy 0
ObjectTemplate.CVMTrace 0
ObjectTemplate.CVMExternTrace 0
its in Objects\Soldiers\Common in the Objects.con but you can activate it per map basis to if you want

Re: Enable 3rd person view

Posted: Sat Apr 03, 2010 1:55 pm
by Poow
Thanks!