Guest User

Untitled

a guest
Nov 9th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.16 KB | None | 0 0
  1. class CfgSkeletons
  2. {
  3. class Default
  4. {
  5. isDiscrete=1;
  6. skeletonInherit="";
  7. skeletonBones[]={};
  8. };
  9.  
  10. class proRP_ChemicalFactory_Skeleton: Default
  11. {
  12. skeletonInherit="Default";
  13. skeletonBones[]=
  14. {
  15. "Door_01","",
  16. "Door_02","",
  17. "Door_03","",
  18. "Door_04","",
  19. "Door_05","",
  20. "Crane_Top","",
  21. "Crane_Bottom","Crane_Top"
  22. };
  23. };
  24. };
  25. class CfgModels
  26. {
  27. class Default
  28. {
  29. sectionsInherit = "";
  30. sections[] = {};
  31. skeletonName = "";
  32. };
  33.  
  34. class proRP_ChemicalFactory: Default
  35. {
  36. skeletonName = "proRP_ChemicalFactory_Skeleton";
  37. class Animations
  38. {
  39. class ChemicalFactory_Door01_Rotation
  40. {
  41. type = rotation;
  42. source = ChemicalFactory_Door01_Rotation;
  43. selection = Door_01;
  44. axis = Door_01_Axis;
  45. memory = 1;
  46. minValue = 0;
  47. maxValue = 1;
  48. angle0 = 0;
  49. angle1 = (rad 90);
  50. };
  51.  
  52. class ChemicalFactory_Door02_Rotation: ChemicalFactory_Door01_Rotation
  53. {
  54. source = ChemicalFactory_Door02_Rotation;
  55. selection = Door_02;
  56. angle1 = (rad -90);
  57. axis = Door_02_Axis;
  58. };
  59.  
  60. class ChemicalFactory_Door03_Rotation: ChemicalFactory_Door01_Rotation
  61. {
  62. source = ChemicalFactory_Door03_Rotation;
  63. selection = Door_03;
  64. axis = Door_03_Axis;
  65. };
  66.  
  67. class ChemicalFactory_Door04_Rotation: ChemicalFactory_Door01_Rotation
  68. {
  69. source = ChemicalFactory_Door04_Rotation;
  70. selection = Door_04;
  71. axis = Door_04_Axis;
  72. angle1 = (rad -90);
  73. minValue = 0;
  74. maxValue = 1;
  75. };
  76.  
  77. class ChemicalFactory_Door05_Rotation: ChemicalFactory_Door01_Rotation
  78. {
  79. source = ChemicalFactory_Door05_Rotation;
  80. selection = Door_05;
  81. axis = Door_05_Axis;
  82. angle1 = (rad 90);
  83. };
  84.  
  85. class ChemicalFactory_CraneTop_Translation
  86. {
  87. type = translation;
  88. source = ChemicalFactory_CraneTop_Translation;
  89. selection = Crane_Top;
  90. axis = Crane_TopAxis;
  91. memory = 1;
  92. minValue = 0;
  93. maxValue = 0.5;
  94. offset0 = 0;
  95. offset1 = 0.95;
  96. };
  97. class ChemicalFactory_CraneBottom_Translation: ChemicalFactory_CraneTop_Translation
  98. {
  99. source = ChemicalFactory_CraneBottom_Translation;
  100. type = translation;
  101. selection = Crane_Bottom;
  102. axis = Crane_BottomAxis;
  103. minValue = 0.5;
  104. maxValue = 1;
  105. offset1 = -7500;
  106. };
  107. };
  108. };
  109. };
Add Comment
Please, Sign In to add comment