Advertisement
Guest User

USN cfgSurfaces

a guest
Jan 17th, 2016
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. class CfgSurfaces
  2. {
  3. class Default {};
  4. class USN_TestA_grass_green_Surface : Default
  5. {
  6. files = "usn_testa_grass_green_*"; //original "USN_TestA_grass_green_*"
  7. rough = 0.08; //virtual texture of ground original 0.08
  8. maxSpeedCoef = 0.75;
  9. dust = 0.15; //amount of dust
  10. soundEnviron = "grass";
  11. character = "USN_TestA_grass_green_Character";
  12. soundHit = "soft_ground";
  13. };
  14. class USN_groundrock_Surface : Default
  15. {
  16. files = "usn_groundrock_*";
  17. rough = 0.3;
  18. maxSpeedCoef = 0.75;
  19. dust = 0.25;
  20. soundEnviron = "rock";
  21. character = "USN_groundrock_Character";
  22. soundHit = "hard_ground";
  23. };
  24. class USN_sandpebble_Surface : Default
  25. {
  26. files = "usn_sandpebble_*";
  27. rough = 0.3;
  28. maxSpeedCoef = 0.75;
  29. dust = 0.25;
  30. soundEnviron = "rock";
  31. character = "USN_sandpebble_Character";
  32. soundHit = "soft_ground";
  33. };
  34. class USN_concrete2_Surface : Default
  35. {
  36. files = "usn_concrete2_*";
  37. rough = 0;
  38. maxSpeedCoef = 1;
  39. dust = 0.15;
  40. soundEnviron = "rock";
  41. character = "USN_concrete2_Character";
  42. soundHit = "hard_ground";
  43. };
  44. };
  45.  
  46. class CfgSurfaceCharacters
  47. {
  48. class USN_TestA_grass_green_Character
  49. {
  50. probability[] = {0.25,0.15};
  51. names[] = {"USN_TestA_GrassGreenGroup","USN_TestA_FlowerLowYellow2"};
  52. };
  53. class USN_groundrock_Character
  54. {
  55. probability[] = {0.03,0.03,0.1,0.1,0.1};
  56. names[] = {"USN_TestA_sharpStones_erosion_v2","USN_TestA_sharpStones_erosion","USN_TestA_Crack_Clutter1","USN_TestA_Crack_Clutter2","USN_TestA_Crack_Clutter3"};
  57. };
  58. class USN_sandpebble_Character
  59. {
  60. probability[] = {0.03,0.03,0.03};
  61. names[] = {"USN_TestA_Thistle_Small_GreenYellow","USN_TestA_Thistle_High_Dead","USN_TestA_Thistle_High"};
  62. };
  63. class USN_concrete2_Character
  64. {
  65. probability[] = {};
  66. names[] = {};
  67. };
  68. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement