A stable modding interface between Techblox and mods https://mod.exmods.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

112 lines
2.6KB

  1. namespace TechbloxModdingAPI.Blocks
  2. {
  3. /// <summary>
  4. /// Possible block types
  5. /// </summary>
  6. public enum BlockIDs : ushort
  7. {
  8. /// <summary>
  9. /// Called "nothing" in Techblox. (DBID.NOTHING)
  10. /// </summary>
  11. Invalid = ushort.MaxValue,
  12. Cube = 0,
  13. Wedge,
  14. QuarterPyramid,
  15. Tetrahedron,
  16. RoundedWedge,
  17. RoundedQuarterPyramid,
  18. RoundedTetrahedron,
  19. NegativeQuarterPyramid,
  20. NegativeTetrahedron,
  21. RoundedNegativeQuarterPyramid,
  22. RoundedNegativeTetrahedron,
  23. Plate,
  24. PlateWedge,
  25. PlateQuarterPyramid,
  26. PlateTetrahedron,
  27. Sphere,
  28. Frame,
  29. FrameS1,
  30. FrameS2,
  31. FrameS3,
  32. FrameS4,
  33. FrameS5,
  34. FrameWedge,
  35. FrameWedgeS1,
  36. FrameWedgeS2,
  37. FrameWedgeS3,
  38. FrameWedgeS4,
  39. SideS0S1,
  40. SideS0S2,
  41. SideS0S3,
  42. SideS0S4,
  43. SideS0S5,
  44. SideS1S1,
  45. SideS1S2,
  46. SideS1S3,
  47. SideS1S4,
  48. SideS1S5,
  49. SideS2S1,
  50. SideS2S2,
  51. SideS2S3,
  52. SideS2S4,
  53. SideS2S5,
  54. WindscreenS1,
  55. WindscreenS2,
  56. WindscreenS3,
  57. WindscreenS4,
  58. WindscreenS5,
  59. CarWheelArch,
  60. CarArchSmallFlare,
  61. CarArchFlare,
  62. CarArchExtrudedFlare,
  63. Axle = 100,
  64. Hinge,
  65. BallJoint,
  66. UniversalJoint,
  67. TelescopicJoint,
  68. DampedHingeSpring,
  69. DampedAxleSpring,
  70. DampedSpring,
  71. WheelRigNoSteering,
  72. WheelRigWithSteering,
  73. PlateTriangle = 130,
  74. PlateCircle,
  75. PlateQuarterCircle,
  76. PlateRWedge,
  77. PlateRTetrahedron,
  78. Cone,
  79. ConeSegment,
  80. DoubleSliced,
  81. HalfDoubleSliced,
  82. EighthPyramid,
  83. Hemisphere,
  84. WideCylinder,
  85. WideCylinderBend,
  86. WideCylinderT,
  87. WideCylinderCross,
  88. WideCylinderCorner,
  89. NarrowCylinder,
  90. NarrowCylinderBend,
  91. NarrowCylinderT,
  92. NarrowCylinderCross,
  93. DriverSeat,
  94. PassengerSeat,
  95. Engine,
  96. NarrowCylinderCorner,
  97. PlateWideCylinder,
  98. PlateNarrowCylinder,
  99. PlateNegativeTetrahedron,
  100. PlateNegativeQuarterPyramid,
  101. PlateRoundedNegativeTetrahedron,
  102. PlateRoundedNegativeQuarterPyramid,
  103. HeadlampSquare,
  104. HeadlampCircle,
  105. HeadlampWedge,
  106. WideCylinderDiagonal,
  107. NarrowCylinderDiagonal,
  108. HeadlampTetrahedron,
  109. CarWheelWideProfile = 200,
  110. CarWheel,
  111. }
  112. }