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.

46 lines
1.2KB

  1. namespace TechbloxModdingAPI.Blocks
  2. {
  3. public enum BlockMaterial : byte
  4. {
  5. Default = byte.MaxValue,
  6. SteelBodywork = 0,
  7. RigidSteel,
  8. CarbonFiber,
  9. Plastic,
  10. Wood = 6,
  11. RigidSteelPainted,
  12. RigidSteelRustedPaint,
  13. RigidSteelHeavyRust,
  14. SteelBodyworkMetallicPaint,
  15. SteelBodyworkRustedPaint,
  16. SteelBodyworkHeavyRust,
  17. WoodVarnishedDark,
  18. Chrome,
  19. FenceChainLink,
  20. ConcreteUnpainted,
  21. Grid9x9,
  22. CeramicTileFloor,
  23. PlasticBumpy,
  24. PlasticDustySmeared,
  25. AluminiumGarageDoor,
  26. SteelRigidScratched,
  27. AluminiumBrushedTinted,
  28. AluminiumSheetStained,
  29. ConcretePaintedGrooves,
  30. PlasticSpecklySatin,
  31. SteelBodyworkPaintedChipped,
  32. WoodPainted,
  33. WoodRoughGrungy,
  34. Boundary,
  35. Emissive,
  36. AircraftPanelingRivetedPainted,
  37. AircraftPanelingRivetedMetallic,
  38. SteelBodyworkPearlescent,
  39. SteelBodyworkRadWrap,
  40. SteelBodyworkGlitter,
  41. BouncyRubber,
  42. BouncyRubberTieDye,
  43. BrickPainted,
  44. FuturisticPanelingRivetedPainted,
  45. }
  46. }