This commit is the equivalent of a atomic bomb

This commit is contained in:
2026-02-15 08:08:56 -03:00
commit e4ac56b038
6934 changed files with 916278 additions and 0 deletions

View File

@@ -0,0 +1,157 @@
class CfgSkeletons
{
class Default
{
isDiscrete=1;
skeletonInherit="";
skeletonBones[]={};
};
class Braf_VLPV_Skeleton: Default
{
skeletonBones[]=
{
"hatch","",
"seta1","",
"seta2","",
"seta3","",
"compass","",
"drivewheel","",
"rudder","",
"manete","",
"propeller",""
};
};
};
class CfgModels
{
class Default
{
sections[]={};
sectionsInherit="";
skeletonName="";
};
class BRAF_VLPVBig: Default
{
htMin=60;
htMax=180;
afMax=100;
mfMax=8;
mFact=1;
tBody=150;
skeletonName="Braf_VLPV_Skeleton";
sections[]=
{
"camo1",
"camo2",
"camo3",
"camo4",
"glass"
};
class Animations
{
class propeller
{
type="rotation";
source="propeller";
selection="propeller";
axis="propeller_axis";
memory=1;
minValue=0;
maxValue=1;
minPhase=0;
maxPhase=1;
angle0=0;
angle1=6.283185;
};
class rudder: propeller
{
source="drivingWheel";
selection="rudder";
axis="rudder_axis";
minValue=-1;
maxValue=1;
minPhase=-1;
maxPhase=1;
sourceAddress=0;
angle0="rad 60";
angle1="rad -60";
};
class drivewheel
{
type="rotation";
angle0="rad -75";
angle1="rad 75";
axis="drivewheel_axis";
memory=1;
minValue=-1;
maxValue=1;
minPhase=-1;
maxPhase=1;
source="drivingWheel";
sourceAddress=0;
selection="drivewheel";
};
class openhatch
{
type="rotation";
angle0=0;
angle1="rad -180";
memory=1;
minValue=0;
maxValue=1;
minPhase=0;
maxPhase=1;
sourceAddress=1;
source="openhatch";
axis="Hatch_axis";
selection="hatch";
};
//class rpm
//{
// type="rotation";
// angle0="rad -120";
// angle1="rad 120";
// axis="axis_rpm";
// memory=1;
// minValue=3;
// maxValue=3500;
// minPhase=0;
// maxPhase=1;
// source="rpm";
// sourceAddress=0;
// selection="rpm";
//};
//class speed
//{
// type="rotation";
// angle0="rad -120";
// angle1="rad 120";
// axis="axis_rpm";
// memory=1;
// minValue=3;
// maxValue=3500;
// minPhase=0;
// maxPhase=1;
// source="rpm";
// sourceAddress=0;
// selection="rpm";
//};
//class oil
//{
// type="rotation";
// angle0="rad -120";
// angle1="rad 120";
// axis="axis_rpm";
// memory=1;
// minValue=3;
// maxValue=3500;
// minPhase=0;
// maxPhase=1;
// source="rpm";
// sourceAddress=0;
// selection="rpm";
//};
};
};
};