wld427 1705 Posted November 5, 2009 On the defualt BIS weapons the feedtray cover opens when the soldier is reloading. Using the BIS model form arma 1 what is the best way to achieve this in A2? Share this post Link to post Share on other sites
gms 0 Posted November 6, 2009 On the defualt BIS weapons the feedtray cover opens when the soldier is reloading.Using the BIS model form arma 1 what is the best way to achieve this in A2? non-BIS: Bone is the selection in a p3d model. Also must be an axis in memory lod named "feedtray_cover_axis". Add this to skeleton bones of the cfgSkeletons config "feedtray_cover", "" Add this to Animations of the cfgModels config class feedtray_cover_up { type="rotation"; source="reloadMagazine"; selection="feedtray_cover"; axis="feedtray_cover_axis"; minValue=0; maxValue=0.1; angle0="0"; angle1="rad 90"; }; class feedtray_cover_down: feedtray_cover_up { minValue=0.9; maxValue=1; angle0="0"; angle1="rad -90"; }; Share this post Link to post Share on other sites
wld427 1705 Posted November 15, 2009 thanks gms. are you also aware of the animation that makes the ammo belt disappear when the gun is empty. Right now it works to disapear while the magazine changes but when you are out of ammo and not reloaded yet it is still visible. Share this post Link to post Share on other sites
gms 0 Posted November 15, 2009 Try it Don't forget put down the bones to a skeleton. class ammobelt_hide { type="hide"; source="isEmpty"; selection="ammo_belt"; hideValue=1; }; Share this post Link to post Share on other sites