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.

45 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. AircraftPaneling_Riveted_Painted,
  37. AircraftPaneling_Riveted_Metallic,
  38. Steel_Bodywork_Pearlescent,
  39. Steel_Bodywork_RadWrap,
  40. Steel_Bodywork_Glitter,
  41. BouncyRubber,
  42. BouncyRubber_TieDye,
  43. FuturisticPaneling_Riveted_Painted = 40
  44. }
  45. }