Guest User

tpt mod DECR

a guest
Jan 26th, 2013
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. #include "simulation/Elements.h"
  2. //#TPT-Directive ElementClass Element_DECR PT_DECR 167
  3. Element_DECR::~Element_DECR()
  4. {
  5. Identifier = "DEFAULT_PT_DECR";
  6. Name = "DECR";
  7. Colour = PIXPACK(0xCCFFFF);
  8. MenuVisible = 1;
  9. MenuSection = SC_SOLIDS;
  10. Enabled = 1;
  11.  
  12. Advection = 0.0f;
  13. AirDrag = 0.00f * CFDS;
  14. AirLoss = 0.00f;
  15. Loss = 0.00f;
  16. Collision = 0.0f;
  17. Gravity = 0.0f;
  18. Diffusion = 0.00f;
  19. HotAir = 0.000f * CFDS;
  20. Falldown = 0;
  21.  
  22. Flammable = 0;
  23. Explosive = 0;
  24. Meltable = 0;
  25. Hardness = 0;
  26.  
  27. Weight = 100;
  28.  
  29. Temperature = R_TEMP+0.0f +273.15f;
  30. HeatConduct = 0;
  31. Description = "Blank particle.Add Decor";
  32.  
  33. State = ST_NONE;
  34. Properties = TYPE_ENERGY;
  35.  
  36. LowPressure = IPL;
  37. LowPressureTransition = NT;
  38. HighPressure = IPH;
  39. HighPressureTransition = NT;
  40. LowTemperature = ITL;
  41. LowTemperatureTransition = NT;
  42. HighTemperature = ITH;
  43. HighTemperatureTransition = NT;
  44.  
  45. Update = NULL;
  46.  
  47. }
  48.  
  49. Element_DECR::~Element_DECR() {}
Advertisement
Add Comment
Please, Sign In to add comment