mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
Move CfgBody from dayz.pbo to dayz_code
This commit is contained in:
66
SQF/dayz_code/Configs/CfgBody.hpp
Normal file
66
SQF/dayz_code/Configs/CfgBody.hpp
Normal file
@@ -0,0 +1,66 @@
|
||||
class CfgBody
|
||||
{
|
||||
class head_hit
|
||||
{
|
||||
memoryPoint = "pilot";
|
||||
variation = 0.08;
|
||||
};
|
||||
|
||||
class body
|
||||
{
|
||||
memoryPoint = "aimPoint";
|
||||
variation = 0.15;
|
||||
};
|
||||
|
||||
class Spine2 : body {};
|
||||
|
||||
class LeftArm
|
||||
{
|
||||
memoryPoint = "lelbow";
|
||||
variation = 0.1;
|
||||
};
|
||||
|
||||
class RightArm
|
||||
{
|
||||
memoryPoint = "relbow";
|
||||
variation = 0.04;
|
||||
};
|
||||
|
||||
class LeftForeArm
|
||||
{
|
||||
memoryPoint = "lwrist";
|
||||
variation = 0.04;
|
||||
};
|
||||
|
||||
class RightForeArm
|
||||
{
|
||||
memoryPoint = "rwrist";
|
||||
variation = 0.04;
|
||||
};
|
||||
|
||||
class LeftHand
|
||||
{
|
||||
memoryPoint = "LeftHandMiddle1";
|
||||
variation = 0.04;
|
||||
};
|
||||
|
||||
class RightHand
|
||||
{
|
||||
memoryPoint = "RightHandMiddle1";
|
||||
variation = 0.04;
|
||||
};
|
||||
|
||||
class legs
|
||||
{
|
||||
memoryPoint = "pelvis";
|
||||
variation = 0.15;
|
||||
};
|
||||
|
||||
class LeftLeg : legs {};
|
||||
|
||||
class LeftUpLeg : legs {};
|
||||
|
||||
class RightLeg : legs {};
|
||||
|
||||
class RightUpLeg : legs {};
|
||||
};
|
||||
@@ -101,6 +101,7 @@ class DefaultEventhandlers {
|
||||
#include "Configs\rscTitles.hpp"
|
||||
#include "Configs\CfgWorlds.hpp"
|
||||
#include "Configs\CfgMoves.hpp"
|
||||
#include "Configs\CfgBody.hpp"
|
||||
#include "Configs\CfgVehicles\CfgVehicles.hpp"
|
||||
#include "Configs\CfgWeapons\CfgWeapons.hpp"
|
||||
#include "Configs\CfgMagazines\CfgMagazines.hpp"
|
||||
|
||||
Reference in New Issue
Block a user